/* World Clock — Banner Zone (wide horizontal strip, single city).
 * Layout mirrors the Main zone (label / time / meta stacked) but the
 * font sizes are tuned for a much shorter zone height. */

.wc-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e5e7eb;
}

.wc-banner-card {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    width: 80%;
    height: 80%;
    box-sizing: border-box;
    gap: 0;
    padding: 0;
}

.wc-banner-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5cqmin;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.wc-analog .wc-banner-cell {
    background: transparent;
    border: none;
}

/* Digital ──────────────────────────────────────────────────── */
.wc-banner-time {
    white-space: nowrap;
    margin: 0 auto;
    max-width: 90%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.17) 0 -2.3cqmin 2.5cqmin 0 inset, rgba(0, 0, 0, 0.15) 0 -3.6cqmin 3cqmin 0 inset, rgba(0, 0, 0, 0.1) 0 -7.9cqmin 4cqmin 0 inset, rgba(0, 0, 0, 0.06) 0 0.2cqmin 0.1cqmin, rgba(0, 0, 0, 0.09) 0 0.4cqmin 0.2cqmin, rgba(0, 0, 0, 0.09) 0 0.8cqmin 0.4cqmin, rgba(0, 0, 0, 0.09) 0 1.6cqmin 0.8cqmin, rgba(0, 0, 0, 0.09) 0 3.2cqmin 1.6cqmin;
    background: rgba(15, 23, 42, 0.6);
    border: 0.6cqmin solid #334155;
    border-radius: 3cqmin;
    padding: 2cqmin 4cqmin;
    font-size: min(40cqmin, 13cqw) !important;
    font-weight: 200 !important;
    font-family: 'DS-Digital', 'Roboto Mono', 'Courier New', monospace;
    color: #f8fafc;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    font-variant-numeric: tabular-nums;
}
.wc-banner-label {
    font-size: 14cqmin !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif;
    color: #f1f5f9;
    line-height: 1.1 !important;
    letter-spacing: 0.05em !important;
    text-align: center;
    margin-top: 1cqmin;
}
.wc-banner-meta {
    font-size: 5cqmin !important;
    font-weight: 500 !important;
    font-family: 'Roboto', sans-serif;
    color: #94a3b8;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    gap: 1.5cqmin;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
}
.wc-banner-dot {
    color: inherit;
    font-weight: 700 !important;
}

/* Analog mode: shrink the label since the SVG dial takes most of the height. */
.wc-analog .wc-banner-label {
    font-size: 8cqmin !important;
}
.wc-analog .wc-banner-meta {
    font-size: 6cqmin !important;
}

/* Analog ───────────────────────────────────────────────────── */
.wc-banner-analog {
    width: 55cqmin;
    height: 55cqmin;
    flex-shrink: 0;
}
.wc-banner-analog .wc-face { stroke-width: 2.8; }
.wc-banner-analog .wc-mark { stroke-width: 1; }
.wc-banner-analog .wc-mark-major { stroke-width: 2; }
.wc-banner-analog .wc-hour-hand { stroke: #1e293b; stroke-width: 3.5; stroke-linecap: round; }
.wc-banner-analog .wc-min-hand { stroke: #1e293b; stroke-width: 2.5; stroke-linecap: round; }
.wc-banner-analog .wc-sec-hand { stroke: #ef4444; stroke-width: 1.2; stroke-linecap: round; }
.wc-banner-analog .wc-center { fill: #ef4444; }
.wc-banner-analog .wc-numeral {
    font-family: 'Montserrat', sans-serif;
    font-size: 6.5px;
    font-weight: 600;
}
.wc-banner-analog.wc-num-roman .wc-numeral {
    font-family: 'Gideon Roman', 'Times New Roman', serif;
    font-size: 9px;
}
