/* =====================================================================
   Country Hero — full-bleed header for US cluster country pages
   ===================================================================== */

.cp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #111214;
}

/* ── Background image ────────────────────────────────────────────── */
.cp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Gradient overlay — heaviest at bottom ───────────────────────── */
.cp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(17 18 20 / 0%) 0%, rgb(17 18 20 / 32%) 50%, rgb(17 18 20 / 0%) 100%);
}

/* ── Inner content — anchored to bottom ──────────────────────────── */
.cp-hero__inner {
    position: relative;
    z-index: 2;
    margin-top: 12%;
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px 72px;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.cp-hero__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
}

.cp-hero__breadcrumb {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(237, 227, 213, 0.55);
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
}

.cp-hero__breadcrumb:hover {
    color: #EDE3D5;
}

.cp-hero__breadcrumb--current {
    color: #FF6A00;
    pointer-events: none;
}

.cp-hero__breadcrumb-sep {
    font-size: 10.5px;
    color: rgba(237, 227, 213, 0.30);
    margin: 0 10px;
    user-select: none;
}

/* ── Title ───────────────────────────────────────────────────────── */
.cp-hero__title {
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 800;
    color: #EDE3D5;
    letter-spacing: -1.5px;
    line-height: 1.03;
    margin: 0 0 20px;
    max-width: 860px;
    text-transform: uppercase;
}

/* ── Subtitle ────────────────────────────────────────────────────── */
.cp-hero__subtitle {
    font-size: 17px;
    color: rgba(237, 227, 213, 0.72);
    line-height: 1.68;
    max-width: 580px;
    margin: 0 0 32px;
    font-weight: 400;
}

/* ── Pills ───────────────────────────────────────────────────────── */
.cp-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 44px;
}

.cp-hero__pill {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EDE3D5;
    border: 1px solid rgba(237, 227, 213, 0.30);
    border-radius: 2px;
    white-space: nowrap;
}

/* ── CTA buttons ─────────────────────────────────────────────────── */
.cp-hero__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 36px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.cp-hero__btn--primary {
    background: #FF6A00;
    color: #111214;
    border: 2px solid #FF6A00;
}

.cp-hero__btn--primary:hover {
    background: #e55e00;
    border-color: #e55e00;
    color: #111214;
}

.cp-hero__btn--ghost {
    background: transparent;
    color: #EDE3D5;
    border: 2px solid rgba(237, 227, 213, 0.45);
}

.cp-hero__btn--ghost:hover {
    border-color: #EDE3D5;
    color: #EDE3D5;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cp-hero__inner {
        padding: 0 36px 56px;
    }
}

@media (max-width: 768px) {
    .cp-hero__inner {
        padding: 0 20px 44px;
    }

    .cp-hero__title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .cp-hero__subtitle {
        font-size: 15px;
    }

    .cp-hero__btn {
        height: 48px;
        padding: 0 24px;
        font-size: 10.5px;
    }

    .cp-hero__pills {
        margin-bottom: 28px;
    }
}

/* =====================================================================
   Standalone Breadcrumbs — below the hero photo block
   ===================================================================== */

.cp-breadcrumbs {
    background: #111214;
    border-bottom: 1px solid rgba(237, 227, 213, 0.08);
}

.cp-breadcrumbs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.cp-breadcrumbs__item {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(237, 227, 213, 0.5);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.cp-breadcrumbs__item:hover {
    color: #EDE3D5;
}

.cp-breadcrumbs__item--current {
    color: #FF6A00;
    pointer-events: none;
}

.cp-breadcrumbs__sep {
    font-size: 10.5px;
    color: rgba(237, 227, 213, 0.25);
    margin: 0 10px;
    user-select: none;
}

@media (max-width: 900px) {
    .cp-breadcrumbs__inner {
        padding: 12px 28px;
    }
}

@media (max-width: 640px) {
    .cp-breadcrumbs__inner {
        padding: 10px 20px;
    }
}
