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

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

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

.cta-3-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-3-title {
    margin: 0;
    font-family: 'EYInterstate', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--wp--preset--color--white);
}

.cta-3-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: coordinator ─────────────────────────────────────── */
.cta-3-person {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-3-person__photo {
    flex-shrink: 0;
}

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

.cta-3-person__body {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

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

/* ── Icon buttons ───────────────────────────────────────────── */
.cta-3-person__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-3-person__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wp--preset--color--white);
    border: none;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cta-3-person__btn:hover {
    background: #f0f0f0;
}

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

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

    .cta-3-person {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-3-person__body {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
    }

    .cta-3-person__meta {
        white-space: normal;
    }
}

/* ── Dark mode ──────────────────────────────────────────────── */

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