.resources-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.resources-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #8B4513;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.resources-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #D2691E;
}

.resources-content {
    padding: 4rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    padding: 2.5rem;
    background: white;
    border: 3px solid #8B4513;
    text-decoration: none;
    color: #8B4513;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.resource-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px #8B4513;
}

.resource-card i {
    font-size: 3.5rem;
    display: block;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #8B4513;
}

.resource-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #D2691E;
}

@media (max-width: 768px) {
    .resource-card {
        flex-direction: column;
        text-align: center;
    }
}
