/* ── Card ─────────────────────────────────────────────────────────────── */
.jiaco-cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(26, 58, 107, 0.08);
}

/* ── Left column ─────────────────────────────────────────────────────── */
.jiaco-cta-left {
    flex: 1 1 420px;
    min-width: 280px;
}

.jiaco-cta-title {
    margin: 0 0 20px 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0d1b3e;
    letter-spacing: -0.02em;
}

.jiaco-cta-body {
    font-size: 0.975rem;
    line-height: 1.75;
    color: #4a5568;
}

.jiaco-cta-body p {
    margin: 0 0 14px 0;
}

.jiaco-cta-body p:last-child {
    margin-bottom: 0;
}

/* ── Right column ────────────────────────────────────────────────────── */
.jiaco-cta-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 240px;
    width: 260px;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.jiaco-cta-btn {
    display: block;
    width: 100%;
    padding: 15px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    line-height: 1.4;
}

/* Primary — filled dark blue */
.jiaco-cta-btn-primary {
    background-color: #1a3a6b;
    color: #ffffff;
    border-color: #1a3a6b;
    box-shadow: 0 4px 16px rgba(26, 58, 107, 0.22);
}

.jiaco-cta-btn-primary:hover {
    background-color: #142e56;
    border-color: #142e56;
    box-shadow: 0 8px 24px rgba(26, 58, 107, 0.32);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Secondary — outlined dark blue */
.jiaco-cta-btn-secondary {
    background-color: transparent;
    color: #1a3a6b;
    border-color: #1a3a6b;
}

.jiaco-cta-btn-secondary:hover {
    background-color: rgba(26, 58, 107, 0.06);
    box-shadow: 0 4px 14px rgba(26, 58, 107, 0.12);
    transform: translateY(-2px);
    color: #1a3a6b;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .jiaco-cta-card {
        flex-direction: column;
        gap: 32px;
    }

    .jiaco-cta-left {
        flex: 1 1 100%;
    }

    .jiaco-cta-right {
        width: 100%;
        min-width: unset;
    }

    .jiaco-cta-title {
        font-size: 1.6rem;
    }
}
