/* ============================================ */
/* TextBox */
/* ============================================ */

.text-box {
    padding: 20px 0;
}

.text-box__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-box__kicker {
    margin-bottom: 16px;
}

.text-box__kicker p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.text-box__headline {
    font-size: 36px;
    line-height: 1.25;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dotted var(--gray);
}

.text-box__description {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.text-box__description p {
    margin-bottom: 20px;
}

.text-box__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .text-box {
        padding: 60px 0;
    }

    .text-box__headline {
        font-size: 30px;
    }

    .text-box__wrapper {
        padding: 0 24px;
    }
}