.home-section {

    margin-top: var(--space-3xl);
}

.home-section__header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: var(--space-lg);

    margin-bottom: var(--space-xl);
}

.home-section__title {

    margin: 0;

    font-size:
        clamp(
            1.75rem,
            3vw,
            2.5rem
        );

    line-height: 1.15;
}

.home-section__link {

    font-size: .95rem;

    font-weight: 600;

    text-decoration: none;

    color: var(--color-accent);
}

.home-section__link:hover {

    text-decoration: underline;
}

@media (max-width: 768px) {

    .home-section__header {

        flex-direction: column;

        align-items: flex-start;

        gap: var(--space-sm);
    }
}