/*
|--------------------------------------------------------------------------
| VEAG Ops UI
|--------------------------------------------------------------------------
|
| Shared UI components used throughout the Operations Centre.
| Feature-specific styling belongs in its own stylesheet.
|
*/

/* ==========================================================================
   Hero
   ========================================================================== */

.veag-premium-hero {
    margin-bottom: 28px;
}

.veag-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #cbd5e1;
}

.veag-hero h2 {
    margin: 0 0 6px;
    color: #f8fafc;
}

.veag-hero p {
    margin: 0;
    color: rgba(226,232,240,.72);
    font-size: 16px;
    line-height: 1.5;
}

.veag-dashboard-hero-stat {
    min-width: 220px;
}

.veag-dashboard-hero-stat-label {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.veag-dashboard-hero-stat-value {
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.05em;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.veag-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 14px;
}

.veag-section-head--with-action {
    align-items: center;
}

.veag-section-head p {
    margin: 0;
    color: var(--veag-text-soft);
    font-size: 14px;
}

/* ==========================================================================
   Metric Grid
   ========================================================================== */

.veag-airac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.veag-stat-box {
    position: relative;
    padding: 18px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        var(--veag-card-soft) 100%
    );

    border: 1px solid var(--veag-border);
    border-radius: var(--veag-radius);
    box-shadow: var(--veag-shadow);
}

.veag-stat-label {
    display: block;
    margin-bottom: 10px;

    color: var(--veag-text-soft);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.veag-stat-value {
    color: var(--veag-text);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

/* ==========================================================================
   Surface Cards
   ========================================================================== */

.veag-surface-card {
    padding: 24px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfdff 100%
    );

    border: 1px solid var(--veag-line-200);
    border-radius: 22px;
    box-shadow: var(--veag-shadow-md);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 720px) {

    .veag-airports-page .veag-hero h2 {
        font-size: 38px;
    }

}