
/* Expert Resources & Guides Section */
.expert-resources {
    padding: 80px 20px;
    background: var(--background-light);
}

.expert-resources .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.expert-resources .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expert-resources .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.resource-category h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    transition: all var(--transition-speed);
    border-left: 3px solid transparent;
}

.resource-links a:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.related-guides {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
}

.related-guides a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-guides a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-resources .section-header h2 {
        font-size: 2rem;
    }
    
    .resource-category h3 {
        font-size: 1.2rem;
    }
}
