.cta-4 {
    padding: 64px 0;
}

/* ── Card ───────────────────────────────────────────────────── */
.cta-4-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 48px;
    background: var(--wp--preset--color--black, #1a1a25);
    border-radius: 4px;
}

html[data-theme="dark"] .cta-4-inner {
    background: var(--wp--preset--color--dark, #2E2E39);
}

/* ── Left: text ─────────────────────────────────────────────── */
.cta-4-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-4-headline {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--wp--preset--color--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-4-title {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--wp--preset--color--white);
}

.cta-4-desc {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: var(--wp--preset--color--neutral-100);
}

/* ── Right column ───────────────────────────────────────────── */
.cta-4-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-shrink: 0;
}

/* ── Coordinator card (mobile only) ────────────────────────── */
.cta-4-coord {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.cta-4-coord__photo {
    flex-shrink: 0;
}

.cta-4-coord__img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-4-coord__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-4-coord__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
}

.cta-4-coord__name {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--wp--preset--color--white);
}

.cta-4-coord__role {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--wp--preset--color--neutral-200);
}

.cta-4-coord__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* ── Actions row: button + phone icon ───────────────────────── */
.cta-4-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

/* ── CTA button (white border style) ───────────────────────── */
.cta-4-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 11px 32px;
    border: 1px solid var(--wp--preset--color--white);
    background: transparent;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--wp--preset--color--white);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-4-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wp--preset--color--white);
}

/* ── Icon button (circle) ───────────────────────────────────── */
.cta-4-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wp--preset--color--white);
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cta-4-icon-btn:hover {
    background: #f0f0f0;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .cta-4 {
        padding: 32px 0;
    }

    .cta-4-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px;
    }

    .cta-4-right {
        align-items: stretch;
        gap: 24px;
    }

    .cta-4-coord {
        display: flex;
        width: 100%;
    }

    .cta-4-coord__body {
        width: 100%;
    }

    .cta-4-coord__meta {
        white-space: normal;
    }

    .cta-4-btn {
        flex: 1;
        justify-content: center;
    }
}
