/* ── Page header ── */
.now-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 8px;
}

.now-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.now-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.now-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

.now-updated {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    opacity: 0.7;
}

/* ── Pulse dot ── */
.now-pulse {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
}

.now-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ── Grid ── */
.now-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 8px;
}

/* ── Cards ── */
.now-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.25s;
}

.now-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 4px 18px var(--card-hover-shadow);
}

.now-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--blue-tint);
    border: 1px solid rgba(0, 123, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.now-card-label {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.now-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.now-card-detail {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Full-width card ── */
.now-card-full {
    grid-column: 1 / -1;
}

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