/* Compass page component — isolated. */

/* ============================================================
   COMPASS PAGE — Premium Magazine Layout
   ============================================================ */

:root {
    --z-card-radius: 20px;
    --z-card-gap: 0px;
    --z-card-photo-aspect: 1 / 1;
    --z-card-photo-radius: 0;
    --z-card-photo-bottom-radius: var(--z-card-radius);
}

/* ── Page Intro Header ── */
.compass-hero-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2027 100%);
    padding: 48px 0 36px;
    position: relative;
    overflow: hidden;
}
.compass-hero-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16,185,129,.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.12) 0%, transparent 50%);
    pointer-events: none;
}
.compass-hero-bar .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.compass-hero-title {
    display: flex;
    align-items: center;
    gap: 16px;
}
.compass-icon-wrap {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(16,185,129,.35);
    flex-shrink: 0;
}
.compass-icon-wrap svg {
    width: 28px; height: 28px; color: #fff;
}
.compass-hero-title h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1;
}
.compass-hero-title h1 span {
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.compass-hero-sub {
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 400;
}
.compass-hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.compass-stat {
    text-align: center;
}
.compass-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}
.compass-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 2px;
}
