

.text-section {
    background: var(--brand-green);
    color: var(--brand-green-dark);
    padding: 64px 48px;
    text-align: center;
}

.text-section.is-dark {
    background: var(--brand-green-dark);
    color: var(--brand-white);
}

.text-section__inner {
    max-width: 860px;
    margin: 0 auto;
}

.text-section__title {
    margin: 0 0 18px;
    font-size: var(--brand-font-xl);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: inherit;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.text-section.is-dark .text-section__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brand-green);
}

.text-section p {
    margin: 0 0 14px;
    font-size: var(--brand-font-md);
    line-height: 1.7;
}
.text-section p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .text-section { padding: 48px 24px; }
}
