/* =========================
   GENERAL SECTIONS
   ========================= */

section {
    padding: 88px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.section-head-text {
    max-width: 680px;
}

.section-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 4vw, 48px);

    font-weight: 500;
    line-height: 1.08;

    letter-spacing: -0.02em;

    color: var(--hijau-tua);

    margin-top: 8px;
}

.section-head p {
    max-width: 600px;

    margin-top: 12px;

    color: rgba(35, 41, 31, 0.62);

    font-size: 14px;
    line-height: 1.7;
}

.section-head .filter {
    display: flex;
    align-items: center;

    gap: 8px;
}

.section-head .filter button {
    padding: 8px 12px;

    border: 1px solid var(--garis);
    background: var(--putih);

    color: var(--hijau-tua);

    font-size: 11px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.section-head .filter button:hover,
.section-head .filter button.active {
    background: var(--hijau-tua);
    border-color: var(--hijau-tua);
    color: var(--krem);
}