/**
 * Research Page Hero Block — research-hero.css
 */

/* ─── Token overrides (inherit from site where possible) ──────── */
.rh-block {
    --rh-navy:   #071747;
    --rh-teal:   #0eaf9b;
    --rh-text:   #13213f;
    --rh-muted:  #5c677a;
    --rh-border: #dce7ec;
    --rh-shadow: 0 14px 32px rgba(7, 23, 71, 0.08);

    padding: 28px 0 54px;
}

/* ─── Card shell ──────────────────────────────────────────────── */
.rh-card {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #eff9ff 0%, #ffffff 58%);
    box-shadow: var(--rh-shadow);
    border: 1px solid var(--rh-border);
}

/* ─── Left: content column ────────────────────────────────────── */
.rh-content {
    padding: clamp(34px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rh-eyebrow {
    color: var(--rh-teal);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
}

.rh-heading {
    margin: 0;
    color: var(--rh-navy);
    font-size: clamp(46px, 6vw, 78px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.rh-body {
    max-width: 530px;
    margin-top: 24px;
    color: var(--rh-text);
    font-size: 18px;
    line-height: 1.55;
}

/* wysiwyg <p> reset */
.rh-body p {
    margin: 0;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.rh-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.rh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.rh-btn--primary {
    background: var(--rh-teal);
    color: #fff;
    box-shadow: 0 10px 18px rgba(14, 175, 155, 0.22);
}

.rh-btn--primary:hover {
    opacity: 0.88;
}

.rh-btn--outline {
    border-color: rgba(7, 23, 71, 0.25);
    color: var(--rh-navy);
    background: #fff;
}

.rh-btn--outline:hover {
    border-color: var(--rh-navy);
}

/* ─── Right: image column ─────────────────────────────────────── */
.rh-image {
    min-height: 410px;
    background-color: #d8edf2; /* fallback while image loads */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1050px) {
    .rh-card {
        grid-template-columns: 1fr;
    }

    .rh-image {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .rh-block {
        padding: 14px 0 40px;
    }

    .rh-content {
        padding: 28px;
    }

    .rh-actions {
        flex-direction: column;
    }

    .rh-btn {
        width: 100%;
        justify-content: center;
    }
}
