/* ── SWLL ────────────────────────────────────────────── */

.airport-reminder {
    padding: 8px 0 4px;
    text-align: center;
    border-top: 1px solid var(--border-3);
}

.airport-reminder .icao-big {
    font-size: 0.85rem;
}

.swll-full-row {
    grid-column: 1 / -1;
}

.swll-panel {
    max-width: 100%;
}

.swll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.swll-card {
    cursor: pointer;
    border: 1px solid var(--border-3);
    background: var(--bg-surface);
    transition: border-color 0.15s;
}

.swll-card:hover {
    border-color: var(--fg-4);
}

.swll-card.swll-current {
    border: 2px solid #1e7d34;
    box-shadow: 0 0 0 1px #1e7d3430;
}

.swll-card img {
    display: block;
    width: 100%;
    height: auto;
}

.swll-label {
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--fg-2);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.swll-lt {
    font-weight: 400;
    font-size: 0.6rem;
    color: var(--fg-3);
}

.swll-now {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--fg-inv);
    background: var(--bg-emphasis);
    padding: 1px 6px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.swll-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.swll-lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
}

.swll-lightbox-content img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.swll-lightbox-label {
    color: #ffffff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 0;
}

@media (max-width: 480px) {
    .swll-grid {
        grid-template-columns: 1fr;
    }
}
