
.main-nav a.is-active {
    background: var(--primary-soft);
    color: var(--primary);
}

.hero-forecast {
    padding: 18px 0 24px;
}

.hero-forecast-box {
    background: linear-gradient(135deg, rgba(18, 70, 128, 0.98), rgba(45, 114, 191, 0.88));
    color: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 26px 30px;
    position: relative;
    overflow: hidden;
}

.hero-forecast-box::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-forecast-box h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.hero-forecast-text {
    margin: 12px 0 0;
    max-width: 820px;
    line-height: 1.6;
    opacity: 0.96;
}

.forecast-cards-wrap {
    padding: 18px 0 28px;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0 0 6px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.forecast-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.forecast-text-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.forecast-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.forecast-day-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.forecast-card-head h3 {
    margin: 0;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
}

.forecast-card-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.12));
    flex: 0 0 auto;
}

.forecast-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.forecast-highlight-box,
.forecast-wind-box {
    background: linear-gradient(180deg, #f5f9ff, #edf4fc);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
}

.forecast-wind-box {
    margin-bottom: 16px;
}

.forecast-highlight-label {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.forecast-highlight-box strong,
.forecast-wind-box strong {
    font-size: 1.02rem;
    line-height: 1.45;
}

.forecast-card-body p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--text);
}

.forecast-card-body p:last-child {
    margin-bottom: 0;
}

.forecast-lead {
    font-weight: 700;
}

@media (max-width: 920px) {
    .forecast-cards-grid,
    .forecast-highlight-grid {
        grid-template-columns: 1fr;
    }

    .forecast-card-head {
        flex-direction: column;
    }
}


.forecast-source-note {
    margin: 12px 0 0;
    font-size: 0.92rem;
    opacity: 0.9;
    color: #ffffff;
}

.forecast-source-note-bottom {
    margin-top: 18px;
    color: var(--muted);
    opacity: 1;
}


.forecast-update-note {
    margin: 8px 0 0;
    font-size: 0.92rem;
    opacity: 0.95;
    color: #ffffff;
}

.forecast-card-meta {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.9rem;
}
