:root {
    --color-navy-950: #081c2b;
    --color-navy-900: #0d2638;
    --color-navy-800: #15364d;
    --color-navy-700: #214a63;

    --color-teal-700: #086f72;
    --color-teal-600: #0c8588;
    --color-teal-500: #159b9d;
    --color-teal-100: #dff5f4;

    --color-sky-100: #eaf4f8;

    --color-white: #ffffff;
    --color-cream: #f8faf9;

    --color-slate-900: #17232d;
    --color-slate-700: #425463;
    --color-slate-600: #5c6e7b;
    --color-slate-300: #c7d1d8;
    --color-slate-200: #dce3e8;
    --color-slate-100: #edf1f4;

    --color-success: #227447;
    --color-error: #a32929;
    --color-warning: #9b6700;

    --font-sans: "IBM Plex Sans", Arial, sans-serif;
    --font-serif: "IBM Plex Serif", Georgia, serif;

    --shadow-small:
        0 2px 6px rgba(8, 28, 43, 0.08);

    --shadow-medium:
        0 12px 30px rgba(8, 28, 43, 0.10);

    --radius-small: 0.4rem;
    --radius-medium: 0.75rem;
    --radius-large: 1.1rem;

    --container-width: 1180px;
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;

    color: var(--color-slate-900);
    background: var(--color-cream);

    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
}

main {
    flex: 1;
}

img,
svg {
    max-width: 100%;
}

a {
    color: var(--color-teal-700);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--color-navy-800);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

/* Accessibility */

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;

    padding: 0.7rem 1rem;
    border-radius: var(--radius-small);

    color: var(--color-white);
    background: var(--color-navy-950);

    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

/* Layout */

.container {
    width: min(
        calc(100% - 2rem),
        var(--container-width)
    );

    margin-inline: auto;
}

/* Header */

.site-header {
    position: relative;
    z-index: 20;

    color: var(--color-white);
    background:
        linear-gradient(
            135deg,
            var(--color-navy-950),
            var(--color-navy-800)
        );

    box-shadow: var(--shadow-small);
}

.header-accent {
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--color-teal-500),
            #64c5c7,
            var(--color-teal-600)
        );
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;

    color: var(--color-white);
    text-decoration: none;
}

.brand:hover {
    color: var(--color-white);
}

.brand-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);

    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.brand-tagline {
    margin-top: 0.2rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.primary-navigation a {
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-small);

    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 500;
}

.primary-navigation a:hover,
.primary-navigation a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.11);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;

    color: rgba(255, 255, 255, 0.45);
}

.language-option {
    padding: 0.3rem;

    border: 0;

    color: rgba(255, 255, 255, 0.72);
    background: transparent;

    cursor: pointer;

    font-size: 0.85rem;
}

.language-option:hover,
.language-option.active {
    color: var(--color-white);
}

.language-option.active {
    font-weight: 600;
}

.mobile-menu-button {
    display: none;

    padding: 0.5rem 0.65rem;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-small);

    color: var(--color-white);
    background: transparent;

    cursor: pointer;
}

/* Shared content elements */

.page-section {
    padding: 4.5rem 0;
}

.page-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.eyebrow {
    margin: 0 0 0.75rem;

    color: var(--color-teal-700);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-title {
    margin: 0;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.12;
}

.page-introduction {
    max-width: 700px;
    margin: 1rem 0 0;

    color: var(--color-slate-700);

    font-size: 1.08rem;
}

.card {
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-large);

    background: var(--color-white);
    box-shadow: var(--shadow-small);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0.7rem 1.15rem;

    border: 1px solid transparent;
    border-radius: var(--radius-small);

    text-decoration: none;

    cursor: pointer;

    font-weight: 600;
}

.button-primary {
    color: var(--color-white);
    background: var(--color-teal-700);
}

.button-primary:hover {
    color: var(--color-white);
    background: var(--color-navy-800);

    transform: translateY(-1px);
}

.button-secondary {
    border-color: var(--color-slate-300);

    color: var(--color-navy-900);
    background: var(--color-white);
}

.button-secondary:hover {
    border-color: var(--color-teal-600);

    color: var(--color-teal-700);
}

/* Footer */

.site-footer {
    margin-top: 5rem;

    color: rgba(255, 255, 255, 0.76);
    background: var(--color-navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;

    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.footer-brand {
    color: var(--color-white);

    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-brand:hover {
    color: var(--color-white);
}

.footer-description {
    max-width: 430px;
    margin: 0.75rem 0 0;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-navigation a:hover {
    color: var(--color-white);
}

.footer-meta p {
    margin: 0 0 0.45rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    padding: 1.1rem 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.84rem;
}

/* Responsive */

@media (max-width: 850px) {
    .header-inner {
        min-height: 78px;
    }

    .brand-tagline {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-actions {
        margin-left: auto;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 0.75rem;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0 0 var(--radius-medium) var(--radius-medium);

        background: var(--color-navy-900);
        box-shadow: var(--shadow-medium);
    }

    .primary-navigation.open {
        display: flex;
    }

    .language-switcher {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(
            calc(100% - 1.25rem),
            var(--container-width)
        );
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 1.12rem;
    }

    .page-section {
        padding: 3rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid > :first-child {
        grid-column: auto;
    }
}


.explorer-card {
    max-width: 760px;
}

.explorer-card-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.explorer-card h2 {
    margin: 0 0 0.75rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: 1.7rem;
}

.explorer-card p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 0 1.5rem;

    color: var(--color-slate-700);
} 


.search-placeholder {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.search-placeholder h2 {
    margin: 0 0 0.7rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: 1.55rem;
}

.search-placeholder p:not(.eyebrow) {
    margin: 0;

    color: var(--color-slate-700);
} 





/* Weather search */

.weather-search-page {
    position: relative;
}

.weather-search-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;

    height: 300px;

    background:
        linear-gradient(
            180deg,
            var(--color-sky-100),
            rgba(234, 244, 248, 0)
        );
}

.weather-search-card {
    max-width: 880px;
    overflow: hidden;
}

.search-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;

    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--color-slate-200);

    background:
        linear-gradient(
            135deg,
            var(--color-white),
            var(--color-sky-100)
        );
}

.search-card-header h2 {
    margin: 0 0 0.65rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: 1.75rem;
}

.search-card-header p:not(.eyebrow) {
    max-width: 600px;
    margin: 0;

    color: var(--color-slate-700);
}

.search-card-icon {
    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-slate-200);
    border-radius: 50%;

    color: var(--color-teal-700);
    background: var(--color-white);

    font-size: 1.8rem;
    box-shadow: var(--shadow-small);
}

.weather-search-form {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: inline-block;
    margin-bottom: 0.45rem;

    color: var(--color-navy-900);

    font-weight: 600;
}

.form-field label span {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.9rem;

    border: 1px solid var(--color-slate-300);
    border-radius: var(--radius-small);

    color: var(--color-slate-900);
    background: var(--color-white);

    outline: none;
}

.form-control:hover {
    border-color: var(--color-slate-600);
}

.form-control:focus {
    border-color: var(--color-teal-600);

    box-shadow:
        0 0 0 3px rgba(12, 133, 136, 0.16);
}

.form-control::placeholder {
    color: var(--color-slate-600);
}

.date-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.form-help {
    margin: 0.45rem 0 0;

    color: var(--color-slate-600);

    font-size: 0.88rem;
}

.field-errors ul,
.form-alert ul {
    margin: 0.45rem 0 0;
    padding-left: 1.15rem;
}

.field-errors {
    margin-top: 0.45rem;

    color: var(--color-error);

    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;

    border-radius: var(--radius-small);
}

.form-alert-error {
    border: 1px solid rgba(163, 41, 41, 0.28);

    color: var(--color-error);
    background: rgba(163, 41, 41, 0.06);
}

.search-form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;

    margin: 0.25rem 0 1.75rem;
    padding: 0.9rem 1rem;

    border-left: 4px solid var(--color-teal-600);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;

    color: var(--color-slate-700);
    background: var(--color-teal-100);
}

.search-form-note p {
    margin: 0;
}

.search-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.search-button {
    min-width: 230px;
}

.valid-search-preview {
    max-width: 880px;
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);

    border-left: 5px solid var(--color-success);
}

.valid-search-preview h2 {
    margin: 0 0 0.6rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
}

.valid-search-preview > p:not(.eyebrow) {
    color: var(--color-slate-700);
}

.search-summary-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;

    margin: 1.5rem 0 0;
}

.search-summary-list div {
    padding: 1rem;

    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-small);

    background: var(--color-cream);
}

.search-summary-list dt {
    color: var(--color-slate-600);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-summary-list dd {
    margin: 0.25rem 0 0;

    color: var(--color-navy-900);

    font-weight: 600;
}

@media (max-width: 680px) {
    .search-card-header {
        gap: 1rem;
    }

    .search-card-icon {
        width: 48px;
        height: 48px;

        font-size: 1.45rem;
    }

    .date-field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .search-form-actions {
        flex-direction: column;
    }

    .search-form-actions .button {
        width: 100%;
    }

    .search-summary-list {
        grid-template-columns: 1fr;
    }
} 




/* Weather results */

.weather-results {
    max-width: 1100px;
    margin-top: 3rem;
}

.results-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 1.25rem;
}

.results-heading-row h2 {
    margin: 0;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
}

.results-location-details {
    margin: 0.5rem 0 0;

    color: var(--color-slate-600);
}

.results-count {
    flex: 0 0 auto;

    min-width: 130px;
    padding: 0.9rem 1rem;

    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-medium);

    background: var(--color-white);
    box-shadow: var(--shadow-small);

    text-align: center;
}

.results-count strong {
    display: block;

    color: var(--color-teal-700);

    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1;
}

.results-count span {
    display: block;
    margin-top: 0.35rem;

    color: var(--color-slate-600);

    font-size: 0.8rem;
}

.results-table-card {
    overflow: hidden;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

.weather-results-table {
    width: 100%;
    min-width: 790px;

    border-collapse: collapse;

    background: var(--color-white);
}

.weather-results-table th,
.weather-results-table td {
    padding: 1rem 1.15rem;

    border-bottom: 1px solid var(--color-slate-200);

    text-align: right;
    vertical-align: middle;
}

.weather-results-table th:first-child,
.weather-results-table td:first-child {
    text-align: left;
}

.weather-results-table thead th {
    color: var(--color-white);
    background: var(--color-navy-900);

    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.weather-results-table thead th span {
    display: block;

    margin-top: 0.15rem;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.72rem;
    font-weight: 400;
}

.weather-results-table tbody th {
    color: var(--color-navy-900);

    font-weight: 600;
    white-space: nowrap;
}

.weather-results-table tbody td {
    color: var(--color-slate-700);

    font-variant-numeric: tabular-nums;
}

.weather-results-table tbody tr:nth-child(even) {
    background: var(--color-cream);
}

.weather-results-table tbody tr:hover {
    background: var(--color-teal-100);
}

.weather-results-table tbody tr:last-child th,
.weather-results-table tbody tr:last-child td {
    border-bottom: 0;
}

.missing-value {
    color: var(--color-slate-600);
}

.results-source-note {
    padding: 1rem 1.2rem;

    border-top: 1px solid var(--color-slate-200);

    color: var(--color-slate-600);
    background: var(--color-slate-100);

    font-size: 0.83rem;
}

.results-source-note p {
    margin: 0;
}

.results-message {
    max-width: 880px;
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.results-message h2 {
    margin: 0 0 0.65rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
}

.results-message p:last-child {
    margin-bottom: 0;
}

.results-message-error {
    border-left: 5px solid var(--color-error);
}

@media (max-width: 680px) {
    .results-heading-row {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .results-count {
        width: 100%;

        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.45rem;
    }

    .results-count strong,
    .results-count span {
        display: inline;
        margin: 0;
    }
} 




/* Dedicated weather report */

.weather-results-page {
    position: relative;
}

.weather-results-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;

    height: 260px;

    background:
        linear-gradient(
            180deg,
            var(--color-sky-100),
            rgba(234, 244, 248, 0)
        );
}

.report-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 2.5rem;
}

.report-actions {
    flex: 0 0 auto;
}

.results-error-title {
    margin: 0 0 0.75rem;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
}

@media (max-width: 680px) {
    .report-header {
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
    }

    .report-actions .button {
        width: 100%;
    }
} 






/* Weather summary */

.weather-summary {
    margin-bottom: 3rem;
}

.summary-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 1.25rem;
}

.summary-section-heading h2 {
    margin: 0;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.summary-section-heading > p {
    max-width: 420px;
    margin: 0;

    color: var(--color-slate-600);
    text-align: right;
}

.summary-card-grid {
    display: grid;
    grid-template-columns: repeat(
        4,
        minmax(0, 1fr)
    );
    gap: 1rem;
}



.summary-value {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 1rem;
    line-height: 1;
}

.summary-value span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}


.summary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 10.5rem;
    padding: 1.5rem;
}

.summary-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 2.75rem;
    height: 2.75rem;
    margin: 0;

    border-radius: 0.75rem;
}

.summary-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke: currentColor;
}

.summary-label {
    max-width: calc(100% - 3.5rem);
    margin: 0 0 1.25rem;
}

.summary-value {
    margin: 0;
}

.summary-detail {
    margin-top: auto;
    padding-top: 0.5rem;
}

.summary-icon-temperature {
    color: #b45309;
    background-color: #fef3c7;
}

.summary-icon-rain {
    color: var(--color-teal-700);
    background-color: #ccfbf1;
}

.summary-icon-snow {
    color: #2563eb;
    background-color: #dbeafe;
}

.summary-icon-wind {
    color: #7e22ce;
    background-color: #f3e8ff;
}

.summary-icon-statistic {
    color: var(--color-slate-700);
    background-color: var(--color-slate-200);
}



.summary-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;

    width: 4px;

    background: var(--color-teal-600);
}

.summary-label {
    margin: 0;

    color: var(--color-slate-600);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.summary-value {
    margin: 1rem 0 0;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1;
}

.summary-value span {
    color: var(--color-slate-600);

    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
}

.summary-detail {
    margin: 0.65rem 0 0;

    color: var(--color-slate-600);

    font-size: 0.84rem;
}

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

@media (max-width: 680px) {
    .summary-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .summary-section-heading > p {
        text-align: left;
    }
}

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




/* Temperature chart */

.weather-chart-section {
    margin-bottom: 3rem;
}

.chart-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 1.25rem;
}

.chart-section-heading h2 {
    margin: 0;

    color: var(--color-navy-950);

    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.chart-section-heading > p {
    max-width: 420px;
    margin: 0;

    color: var(--color-slate-600);
    text-align: right;
}

.weather-chart-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.chart-canvas-wrapper {
    position: relative;

    width: 100%;
    height: 390px;
}

.chart-fallback-note {
    margin: 1rem 0 0;

    color: var(--color-slate-600);

    font-size: 0.84rem;
    text-align: center;
}

@media (max-width: 680px) {
    .chart-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .chart-section-heading > p {
        text-align: left;
    }

    .chart-canvas-wrapper {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .chart-canvas-wrapper {
        height: 280px;
    }
}




.chart-canvas-wrapper--compact {
    height: 320px;
}

@media (max-width: 680px) {
    .chart-canvas-wrapper--compact {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .chart-canvas-wrapper--compact {
        height: 250px;
    }
} 



.weather-chart-empty {
    padding: 2rem;
    border: 1px dashed var(--color-border);
    border-radius: 0.75rem;
    text-align: center;
    background: var(--color-surface);
}

.weather-chart-empty strong {
    display: block;
    margin-bottom: 0.35rem;
}

.weather-chart-empty p {
    margin: 0;
    color: var(--color-text-muted);
}