@import 'variables.css';

/* Section styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section--gray {
    background-color: #F8F8F8;
}

/* Section header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
}

.section-header__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.section-header__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-default);
}

.section-header__link:hover {
    color: #1d4d36;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }
}








