
.tempest-observation-panel {
    padding: 18px;
}

.tempest-observation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}

.tempest-station-name {
    font-size: 19px;
    font-weight: 700;
}

.tempest-updated {
    color: #8fa2b6;
    font-size: 12px;
    margin-top: 4px;
}

.tempest-big-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.tempest-big-card {
    background: #0c151e;
    border: 1px solid #263748;
    border-radius: 9px;
    padding: 15px;
}

.tempest-big-label {
    color: #91a5b7;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tempest-temp {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    margin-top: 8px;
}

.tempest-feels {
    margin-top: 7px;
    color: #bcc9d4;
    font-size: 13px;
}

.tempest-wind-main {
    font-size: 26px;
    font-weight: 700;
    margin-top: 8px;
}

.tempest-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tempest-metric {
    background: #0d1721;
    border: 1px solid #263748;
    border-radius: 8px;
    padding: 11px;
    min-width: 0;
}

.tempest-metric-label {
    color: #8fa2b6;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .45px;
}

.tempest-metric-value {
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.tempest-metric-sub {
    color: #8699aa;
    font-size: 11px;
    margin-top: 3px;
}

.tempest-section-label {
    margin: 16px 0 8px;
    color: #cbd6df;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.tempest-good {
    color: #46d07d;
}

.tempest-stale {
    color: #e8a728;
}

@media (max-width: 900px) {
    .tempest-big-row {
        grid-template-columns: 1fr;
    }

    .tempest-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

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