
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0 4rem 0;
}

.resource-card {
    background-color: var(--near-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.resource-card:not(.disabled):hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    border-color: var(--accent-blue);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #333; /* Placeholder */
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.card-description {
    color: var(--text-subtle);
    font-size: 1rem;
    line-height: 1.6;
}


.resource-card.disabled {
    opacity: 0.6;
    cursor: default;
}

.page-hero {
    text-align: center;

    padding: 3rem 1rem; 
    color: var(--text-light);
    
 
    margin-bottom: 3rem;
}