.forecast-page {
    gap: 24px;
}

.forecast-feed {
    display: grid;
    gap: 22px;
}

.forecast-hero-card {
    display: grid;
    gap: 14px;
}

.forecast-hero-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--classic-accent-dark);
}

.forecast-hero-copy {
    display: grid;
    gap: 10px;
}

.forecast-hero-copy h1 {
    margin: 0;
}

.forecast-hero-copy p {
    margin: 0;
    color: var(--classic-muted);
}

.forecast-copy-block p {
    text-indent: 0;
    line-height: 1.7;
}

.forecast-copy-block h2,
.forecast-insight-head h2,
.forecast-section-head h2,
.forecast-facts-section > h2,
.forecast-factors-section > h2,
.forecast-directory-card > h2 {
    color: var(--classic-accent-dark);
}

.forecast-facts-section {
    margin-top: 0;
    margin-bottom: 10px;
}

.forecast-facts-section > h2 {
    margin: 0 0 12px;
}

.forecast-facts-list {
    display: grid;
    gap: 12px;
}

.forecast-facts-feed .report-card {
    overflow: hidden;
}

.forecast-facts-feed .report-image {
    position: relative;
    overflow: hidden;
}

.forecast-facts-feed .report-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 36, 0.04), rgba(7, 20, 36, 0.7));
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.forecast-facts-feed .report-image-stats-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: auto;
}

.forecast-facts-feed .report-image-stat,
.forecast-facts-feed .report-image-stats-overlay .report-card-action-btn--stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(7, 20, 36, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.forecast-facts-feed .report-image-stat {
    font-size: 0.82rem;
    line-height: 1;
    pointer-events: none;
}

.forecast-facts-feed .report-image-stats-overlay .report-card-action-btn--stat {
    pointer-events: auto;
    font: inherit;
}

.forecast-facts-feed .report-image-stats-overlay .report-card-action-btn--stat:hover {
    background: rgba(7, 20, 36, 0.86);
}

.forecast-facts-feed .report-image-stats-overlay .report-card-action-btn--stat.is-active {
    color: #ffb4b4;
}

.forecast-facts-feed .report-card:hover .report-image::after,
.forecast-facts-feed .report-card:focus-within .report-image::after {
    opacity: 1;
}

.forecast-facts-feed .report-card:hover .report-image-stats-overlay,
.forecast-facts-feed .report-card:focus-within .report-image-stats-overlay {
    opacity: 1;
    transform: translateY(0);
}

.forecast-facts-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 22px;
}

.forecast-facts-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid rgba(239, 108, 0, 0.35);
    border-radius: 12px;
    background: #fff8ec;
    color: var(--classic-accent-dark);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.forecast-facts-more[hidden] {
    display: none;
}

.forecast-facts-more:hover {
    filter: brightness(0.97);
}

@media (hover: none) {
    .forecast-facts-feed .report-image::after,
    .forecast-facts-feed .report-image-stats-overlay {
        opacity: 1;
        transform: none;
    }
}

.forecast-index-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.forecast-report-card {
    min-height: 100%;
}

.forecast-report-card .report-image {
    height: 128px;
}

.forecast-report-card .report-content {
    display: grid;
    gap: 8px;
}

.forecast-directory-card {
    display: grid;
    gap: 14px;
}

.forecast-directory-panel {
    display: grid;
    gap: 10px;
}

.forecast-directory-links {
    display: grid;
    gap: 8px;
}

.forecast-insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.forecast-insight-card {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
}

.forecast-insight-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.forecast-insight-head h2 {
    margin: 0;
}

.forecast-insight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(239, 108, 0, 0.28);
    background: #fff8ec;
    color: var(--classic-accent-dark);
    font-weight: 800;
}

.forecast-insight-card p {
    margin: 0;
    color: var(--classic-text);
    line-height: 1.65;
}

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

.forecast-summary-points div {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--classic-border);
    border-radius: 14px;
    background: #fffaf1;
}

.forecast-summary-points span {
    font-size: 0.8rem;
    color: var(--classic-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.forecast-summary-points strong {
    color: var(--classic-text);
    line-height: 1.4;
}

.forecast-inline-video {
    display: block;
    text-decoration: none;
}

.forecast-inline-video .video-preview {
    min-height: 198px;
}

.forecast-inline-video-title {
    margin: 0;
}

.forecast-inline-video-title a {
    color: var(--classic-text);
    text-decoration: none;
    font-weight: 700;
}

.forecast-inline-video-links {
    display: grid;
    gap: 8px;
}

.forecast-inline-video-link {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid var(--classic-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--classic-text);
    background: #fffaf1;
}

.forecast-inline-video-link span {
    line-height: 1.45;
}

.forecast-inline-video-link small {
    color: var(--classic-muted);
}

.forecast-weather-section,
.forecast-fish-section {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.forecast-weather-table,
.forecast-fish-grid-table {
    display: grid;
    gap: 0;
    border: 1px solid var(--classic-border);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.forecast-table-scroll {
    overflow-x: auto;
    border-radius: 16px;
    padding-bottom: 2px;
}

.forecast-table-scroll::-webkit-scrollbar {
    height: 8px;
}

.forecast-weather-table {
    min-width: 620px;
    grid-template-columns: 156px repeat(3, minmax(126px, 1fr));
}

.forecast-weather-head,
.forecast-weather-head-label,
.forecast-weather-row-title,
.forecast-weather-cell,
.forecast-fish-grid-head,
.forecast-fish-grid-head-fish,
.forecast-fish-species,
.forecast-fish-day-cell {
    padding: 12px 10px;
    border-right: 1px solid var(--classic-border);
    border-bottom: 1px solid var(--classic-border);
}

.forecast-weather-table > *:nth-child(4n),
.forecast-fish-grid-table > *:nth-child(4n) {
    border-right: 0;
}

.forecast-weather-table > *:nth-last-child(-n + 4),
.forecast-fish-grid-table > *:nth-last-child(-n + 4) {
    border-bottom: 0;
}

.forecast-weather-head,
.forecast-weather-head-label,
.forecast-fish-grid-head,
.forecast-fish-grid-head-fish {
    background: #ffc51f;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 0.92rem;
}

.forecast-weather-head-label,
.forecast-fish-grid-head-fish {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.forecast-weather-head span,
.forecast-fish-grid-head span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.2;
}

.forecast-weather-head strong,
.forecast-fish-grid-head strong {
    display: block;
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.1;
}

.forecast-weather-row-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-weight: 700;
    color: var(--classic-text);
    background: #f7f5f0;
    line-height: 1.35;
    font-size: 0.9rem;
}

.forecast-weather-cell {
    display: grid;
    place-items: center;
    gap: 4px;
    text-align: center;
    background: #ffffff;
    color: var(--classic-text);
    font-weight: 700;
    font-size: 0.94rem;
}

.forecast-weather-condition i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 50%;
    background: #f8fafc;
    font-size: 1.15rem;
    color: #6b7280;
}

.forecast-weather-condition span {
    color: var(--classic-text);
    line-height: 1.3;
    font-size: 0.78rem;
}

.forecast-weather-accent {
    color: var(--classic-accent-dark);
}

.forecast-weather-divider {
    color: #9aa3b2;
}

.forecast-weather-pressure {
    font-size: 1rem;
    color: var(--classic-text);
}

.forecast-weather-wind span {
    color: var(--classic-text);
    font-size: 0.8rem;
}

.forecast-weather-wind strong {
    color: var(--classic-text);
    font-size: 0.92rem;
}

.forecast-weather-moon-cell {
    min-height: 70px;
}

.forecast-moon-wrap {
    display: grid;
    place-items: center;
}

.forecast-moon-shell {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.35) 38%, transparent 39%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.forecast-moon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(31, 41, 55, 0.25);
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 45%),
        linear-gradient(90deg, #475569 calc(100% - var(--moon-bright)), #f4d36c calc(100% - var(--moon-bright)));
}

.forecast-moon.is-waning {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 45%),
        linear-gradient(90deg, #f4d36c var(--moon-bright), #475569 var(--moon-bright));
}

.forecast-moon-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(239, 108, 0, 0.26);
    border-radius: 50%;
    background: #fff8ec;
    color: var(--classic-accent-dark);
    font-size: 0.6rem;
}

.forecast-weather-note {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--classic-muted);
}

.forecast-fish-grid-table {
    min-width: 610px;
    grid-template-columns: 142px repeat(3, minmax(128px, 1fr));
}

.forecast-fish-species {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    background: #ffffff;
    text-align: center;
}

.forecast-fish-species h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.1;
    color: #0d63c6;
}

.forecast-fish-species img {
    width: min(100%, 76px);
    height: 50px;
    object-fit: contain;
}

.forecast-fish-day-cell {
    display: grid;
    place-items: center;
    background: #ffffff;
}

.forecast-gauge {
    position: relative;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
}

.forecast-gauge::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.forecast-gauge-graphic {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.forecast-gauge-graphic > .forecast-svg-gauge {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.forecast-gauge-graphic > .forecast-svg-gauge .forecast-svg-gauge-dial {
    stroke: #e5e7eb;
    stroke-width: 7.5;
    stroke-linecap: round;
    fill: none;
}

.forecast-gauge-graphic > .forecast-svg-gauge .forecast-svg-gauge-value {
    stroke: var(--gauge-color);
    stroke-width: 7.5;
    stroke-linecap: round;
    fill: none;
}

.forecast-gauge-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 2px;
    width: 58px;
    text-align: center;
    pointer-events: none;
}

.forecast-gauge-scoreline {
    display: inline-flex;
    align-items: flex-start;
    gap: 1px;
}

.forecast-gauge-content strong {
    display: block;
    font-size: 1.48rem;
    line-height: 0.9;
    font-weight: 800;
    color: var(--gauge-color);
}

.forecast-gauge-scoreline small {
    margin-top: 0.26rem;
    font-size: 0.52rem;
    line-height: 1;
    font-weight: 800;
    color: var(--classic-muted);
}

.forecast-gauge-label {
    display: block;
    max-width: 58px;
    font-size: 0.62rem;
    line-height: 1;
    font-weight: 800;
    text-transform: lowercase;
    color: var(--gauge-color);
}

.forecast-factors-section {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
}

.forecast-factors-section > h2 {
    margin: 0;
}

.forecast-factor-player {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--classic-border);
    background: #0f172a;
}

.forecast-factor-player::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.forecast-factor-player.report-single-video-player::before {
    content: none;
}

.forecast-factor-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.forecast-related-link {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.forecast-related-link a {
    color: var(--classic-accent-dark);
    font-weight: 700;
}

.forecast-factor-copy {
    display: grid;
    gap: 10px;
}

.forecast-factor-copy p {
    margin: 0;
    line-height: 1.7;
}

.forecast-interest-videos-section {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.forecast-video-list {
    gap: 12px;
}

.forecast-video-list .video-item {
    align-items: stretch;
}

.forecast-video-list .video-body h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.forecast-video-list .video-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.forecast-video-list .video-play {
    color: #ffffff;
}

.forecast-video-list .video-body {
    gap: 8px;
}

.forecast-video-list .video-body p {
    color: var(--classic-muted);
}

.forecast-search-card {
    gap: 14px;
}

.forecast-search-form {
    display: grid;
    gap: 14px;
}

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

.forecast-field {
    display: grid;
    gap: 6px;
}

.forecast-field span {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--classic-muted);
}

.forecast-field input,
.forecast-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--classic-border);
    border-radius: 12px;
    padding: 10px 12px;
    background: #ffffff;
    color: var(--classic-text);
}

.forecast-search-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forecast-submit,
.forecast-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid var(--classic-border);
    text-decoration: none;
    font-weight: 700;
    color: var(--classic-text);
    background: #ffffff;
}

.forecast-submit {
    border-color: rgba(239, 108, 0, 0.35);
    background: #fff8ec;
    color: var(--classic-accent-dark);
}

.forecast-links-section {
    gap: 14px;
}

.forecast-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 20px;
}

.forecast-section-head h2 {
    margin: 0;
}

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

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

.forecast-link-card {
    display: grid;
    gap: 4px;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--classic-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--classic-text);
    background: #ffffff;
}

.forecast-link-card strong {
    color: var(--classic-accent-dark);
    line-height: 1.35;
}

.forecast-link-card span,
.forecast-link-card small {
    color: var(--classic-muted);
    line-height: 1.35;
}

.forecast-link-grid-cities .forecast-link-card {
    min-height: 100px;
}

.forecast-empty-state {
    border: 1px dashed var(--classic-border);
    border-radius: 14px;
    padding: 20px;
    color: var(--classic-muted);
    text-align: center;
}

@media (max-width: 1280px) {
    .forecast-link-grid,
    .forecast-summary-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .forecast-search-grid,
    .forecast-link-grid {
        grid-template-columns: 1fr;
    }

    .forecast-summary-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .forecast-section-head,
    .forecast-insight-head,
    .forecast-search-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .forecast-weather-head span,
    .forecast-fish-grid-head span {
        font-size: 0.8rem;
    }

    .forecast-weather-head strong,
    .forecast-fish-grid-head strong {
        font-size: 0.95rem;
    }

    .forecast-weather-table {
        min-width: 560px;
    }

    .forecast-fish-grid-table {
        min-width: 620px;
    }

    .forecast-gauge {
        width: 94px;
        height: 94px;
    }

    .forecast-gauge-content {
        width: 58px;
    }

    .forecast-gauge-content strong {
        font-size: 1.64rem;
    }
}
