:root {
    --bg: #0b1220;
    --bg-soft: #111827;
    --card: #0f172a;
    --card-soft: #172033;
    --text: #e5eefc;
    --text-soft: #b9c5d6;
    --muted: #8ea0b8;
    --line: rgba(255, 255, 255, 0.08);
    --primary: #38bdf8;
    --primary-dark: #0ea5e9;
    --primary-contrast: #082f49;
    --success: #22c55e;
    --error: #ef4444;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --radius: 18px;
    --radius-sm: 12px;
    --max-width: 1200px;
    --transition: 0.2s ease;
    --font-stack: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-stack);
    background: linear-gradient(180deg, #07101d 0%, #0b1220 50%, #0f172a 100%);
    color: var(--text);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover {
    color: #7dd3fc;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(7, 16, 29, 0.82);
    border-bottom: 1px solid var(--line);
}

.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.brand {
    min-width: 0;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.brand-subtitle {
    font-size: 0.88rem;
    color: var(--text-soft);
}

.navbar {
    display: flex;
    align-items: center;
    margin-left: 0;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.navbar a {
    color: var(--text);
    font-weight: 600;
    opacity: 0.92;
}

.navbar a:hover {
    opacity: 1;
}

.navbar a.primary {
    background: var(--primary);
    color: var(--primary-contrast);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.banner-wrap {
    position: relative;
    height: 42vh;
    min-height: 260px;
    max-height: 460px;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(4, 10, 20, 0.2), rgba(4, 10, 20, 0.62)),
        linear-gradient(to top, rgba(11, 18, 32, 0.85), rgba(11, 18, 32, 0.15));
}

.hero {
    position: relative;
    margin-top: -90px;
    z-index: 2;
    padding: 0 1rem;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-card {
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-card h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: #fff;
    max-width: 850px;
}

.hero-card p {
    margin: 0;
    max-width: 780px;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.button,
.hero-search-button,
.newsletter-inline-form button,
.newsletter-form button,
.motion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0.78rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button:hover,
.hero-search-button:hover,
.newsletter-inline-form button:hover,
.newsletter-form button:hover,
.motion-btn:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--primary);
    color: var(--primary-contrast);
}

.button-primary:hover {
    background: #67d1fb;
    color: #082f49;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero-search {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.hero-search input {
    flex: 1 1 300px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 1rem;
    outline: none;
}

.hero-search input::placeholder,
.newsletter-inline-form input::placeholder,
.newsletter-form input::placeholder {
    color: #aab6c7;
}

.hero-search input:focus,
.newsletter-inline-form input:focus,
.newsletter-form input:focus {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.hero-search-button {
    background: var(--primary);
    color: var(--primary-contrast);
    padding-inline: 1.2rem;
}

.quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.quick-pills a {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-pills a:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* WIND METER */
.wind-meter-card {
    width: min(420px, 94vw);
    margin: 1.5rem auto 0;
    padding: 1rem 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.wind-meter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.wind-meter-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.motion-btn {
    background: var(--primary);
    color: var(--primary-contrast);
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
}

.wind-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speedometer {
    width: 100%;
}

.speedometer-dial {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #1f2937 0%, #111827 55%, #0b1220 100%);
    box-shadow:
        inset 0 10px 30px rgba(255, 255, 255, 0.05),
        inset 0 -20px 35px rgba(0, 0, 0, 0.45),
        0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.speedometer-ring {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.03),
        0 0 18px rgba(56, 189, 248, 0.08);
}

.speedometer-inner {
    position: absolute;
    inset: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01) 40%, rgba(0, 0, 0, 0.1) 75%);
}

.wind-glow {
    position: absolute;
    left: 50%;
    bottom: 18%;
    width: 120px;
    height: 120px;
    transform: translateX(-50%) scale(1);
    transform-origin: 50% 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.32) 0%, rgba(14, 165, 233, 0.12) 42%, rgba(14, 165, 233, 0) 72%);
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.speed-tick {
    position: absolute;
    left: 50%;
    top: 22px;
    width: 4px;
    height: 24px;
    margin-left: -2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    transform-origin: 50% 138px;
    z-index: 2;
}

.tick-0 { transform: rotate(-130deg); }
.tick-1 { transform: rotate(-97.5deg); }
.tick-2 { transform: rotate(-65deg); }
.tick-3 { transform: rotate(-32.5deg); }
.tick-4 { transform: rotate(0deg); }
.tick-5 { transform: rotate(32.5deg); }
.tick-6 { transform: rotate(65deg); }
.tick-7 { transform: rotate(97.5deg); }
.tick-8 { transform: rotate(130deg); }

.speed-label {
    position: absolute;
    left: 50%;
    top: 50%;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.label-0 { transform: translate(-50%, -50%) rotate(-130deg) translateY(-118px) rotate(130deg); }
.label-1 { transform: translate(-50%, -50%) rotate(-97.5deg) translateY(-118px) rotate(97.5deg); }
.label-2 { transform: translate(-50%, -50%) rotate(-65deg) translateY(-118px) rotate(65deg); }
.label-3 { transform: translate(-50%, -50%) rotate(-32.5deg) translateY(-118px) rotate(32.5deg); }
.label-4 { transform: translate(-50%, -50%) rotate(0deg) translateY(-118px) rotate(0deg); }
.label-5 { transform: translate(-50%, -50%) rotate(32.5deg) translateY(-118px) rotate(-32.5deg); }
.label-6 { transform: translate(-50%, -50%) rotate(65deg) translateY(-118px) rotate(-65deg); }
.label-7 { transform: translate(-50%, -50%) rotate(97.5deg) translateY(-118px) rotate(-97.5deg); }
.label-8 { transform: translate(-50%, -50%) rotate(130deg) translateY(-118px) rotate(-130deg); }

.needle-wrap {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 8px;
    height: 120px;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: 50% 100%;
    z-index: 4;
    will-change: transform;
    pointer-events: none;
}

.speed-needle {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 4px;
    height: 110px;
    background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 30%, #0f6fff 100%);
    border-radius: 999px;
    transform: translateX(-50%);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.45);
}

.needle-cap {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 18px;
    height: 18px;
    background: #102033;
    border: 2px solid rgba(125, 211, 252, 0.45);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.dial-center-text {
    position: absolute;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.dial-title {
    font-size: 1rem;
    letter-spacing: 0.22em;
    font-weight: 800;
    color: #ffffff;
}

.dial-units {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.66);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.wind-meter-status {
    margin-top: 0.9rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* NO CSS ANIMATION ON THE NEEDLE:
   rotation is driven by JavaScript on #needleWrap */

/* CONTENT SECTIONS */
.page-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section-head {
    margin-bottom: 1.25rem;
}

.section-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #fff;
}

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

.grid-3,
.grid-4 {
    display: grid;
    gap: 1rem;
}

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

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

.card {
    background: linear-gradient(180deg, rgba(23, 32, 51, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-body {
    padding: 1.2rem;
}

.card h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.12rem;
}

.card p {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
}

.card a {
    font-weight: 700;
}

.spot-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.18);
    color: #bfe9fb;
    font-size: 0.82rem;
    font-weight: 600;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.month-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
}

.month-grid a:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.stat-card {
    background: linear-gradient(180deg, rgba(23, 32, 51, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 1.15rem;
    box-shadow: var(--shadow);
}

.stat-label {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.stat-value {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.stat-value-small {
    font-size: 1.15rem;
}

.newsletter-block {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(23, 32, 51, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.newsletter-block h2,
.newsletter-modal h2 {
    margin-top: 0;
    margin-bottom: 0.45rem;
    color: #fff;
}

.newsletter-block p,
.newsletter-modal p {
    margin-top: 0;
    color: var(--text-soft);
}

.newsletter-inline-form,
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.newsletter-inline-form input,
.newsletter-form input {
    flex: 1 1 260px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0 1rem;
    outline: none;
}

.newsletter-inline-form button,
.newsletter-form button {
    background: var(--primary);
    color: var(--primary-contrast);
}

.newsletter-inline-message,
.newsletter-message {
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.newsletter-inline-message.success,
.newsletter-message.success {
    color: #86efac;
}

.newsletter-inline-message.error,
.newsletter-message.error {
    color: #fca5a5;
}

.newsletter-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(3, 8, 17, 0.72);
    backdrop-filter: blur(6px);
    z-index: 999;
}

.newsletter-overlay.visible {
    display: flex;
}

.newsletter-modal {
    position: relative;
    width: min(520px, 100%);
    background: linear-gradient(180deg, #111827, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.newsletter-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.footer {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    background: rgba(7, 16, 29, 0.75);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.25rem;
}

.footer h4 {
    margin-top: 0;
    margin-bottom: 0.55rem;
    color: #fff;
}

.footer p,
.footer a {
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

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

    .grid-3,
    .stats-row,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .site-header-inner,
    .navbar,
    .hero-actions,
    .hero-search,
    .newsletter-inline-form,
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .hero {
        margin-top: -50px;
    }

    .hero-card {
        padding: 1.25rem;
    }

    .wind-meter-card {
        width: min(360px, 95vw);
    }

    .speedometer-dial {
        width: 280px;
        height: 280px;
    }

    .speed-tick {
        transform-origin: 50% 118px;
    }

    .label-0 { transform: translate(-50%, -50%) rotate(-130deg) translateY(-102px) rotate(130deg); }
    .label-1 { transform: translate(-50%, -50%) rotate(-97.5deg) translateY(-102px) rotate(97.5deg); }
    .label-2 { transform: translate(-50%, -50%) rotate(-65deg) translateY(-102px) rotate(65deg); }
    .label-3 { transform: translate(-50%, -50%) rotate(-32.5deg) translateY(-102px) rotate(32.5deg); }
    .label-4 { transform: translate(-50%, -50%) rotate(0deg) translateY(-102px) rotate(0deg); }
    .label-5 { transform: translate(-50%, -50%) rotate(32.5deg) translateY(-102px) rotate(-32.5deg); }
    .label-6 { transform: translate(-50%, -50%) rotate(65deg) translateY(-102px) rotate(-65deg); }
    .label-7 { transform: translate(-50%, -50%) rotate(97.5deg) translateY(-102px) rotate(-97.5deg); }
    .label-8 { transform: translate(-50%, -50%) rotate(130deg) translateY(-102px) rotate(-130deg); }

    .needle-wrap {
        height: 104px;
    }

    .speed-needle {
        height: 96px;
    }

    .dial-center-text {
        bottom: 48px;
    }

    .grid-3,
    .grid-4,
    .month-grid,
    .stats-row,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .spot-card img {
        height: 190px;
    }
}

.dial-value {
    margin-top: 0.35rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #7dd3fc;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.28);
}

/* SPOTS DIRECTORY PAGE */
.spots-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.spots-hero {
    background: linear-gradient(180deg, rgba(23, 32, 51, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.spots-hero h1 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
}

.spots-hero p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 820px;
}

.spots-search-note {
    margin-top: 1rem;
    color: var(--text);
    font-size: 0.95rem;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.spots-card {
    background: linear-gradient(180deg, rgba(23, 32, 51, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.spots-card-image,
.spots-card-placeholder {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: #1b2638;
}

.spots-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 600;
}

.spots-card-body {
    padding: 1rem;
}

.spots-card-body h2 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    color: #fff;
}

.spots-card-meta {
    color: var(--text-soft);
    margin-bottom: 0.75rem;
}

.spots-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.spots-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--primary-contrast);
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.spots-card-link:hover {
    background: #67d1fb;
    color: #082f49;
    transform: translateY(-1px);
}

/* SINGLE SPOT PAGE */
.spot-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.spot-hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    background: #1b2638;
}

.spot-secondary-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #1b2638;
}

.spot-body-copy {
    color: var(--text-soft);
    line-height: 1.7;
    margin-top: 0.25rem;
}

.spot-detail-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.spot-detail-item {
    color: var(--text-soft);
    line-height: 1.5;
}

.spot-detail-item strong {
    color: #fff;
}

.spot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.spot-actions .spots-card-link {
    min-height: 42px;
}

.spot-image-section {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .spot-page-grid {
        grid-template-columns: 1fr;
    }

    .spot-hero-image {
        height: 320px;
    }

    .spot-secondary-image {
        height: 220px;
    }
}

.globe-preview {
    width: 100%;
    height: 260px;
    background: radial-gradient(circle at 50% 40%, #14213a, #050b14);
    position: relative;
    overflow: hidden;
}


/* HEADER LAYOUT */
.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.news-ticker {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.news-ticker-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    width: 100%;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.news-ticker-label {
    flex: 0 0 auto;
    color: #7dd3fc;
    font-weight: 700;
}

.news-ticker-text {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-soft);
    font-weight: 600;
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.news-ticker-text.is-entering {
    opacity: 0;
    transform: translateX(18px);
}

.news-ticker-text.is-leaving {
    opacity: 0;
    transform: translateX(-18px);
}

.navbar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: nowrap;
}

@media (max-width: 900px) {
    .site-header-inner {
        flex-wrap: wrap;
    }

    .news-ticker {
        order: 2;
        width: 100%;
        flex-basis: 100%;
    }

    .navbar {
        order: 1;
    }
}

.news-item a:hover {
    text-decoration: underline;
}

.news-ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: singleTickerScroll 10s linear infinite;
}

@keyframes singleTickerScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.tts-title-link {
  color: inherit;
  text-decoration: none;
}

.tts-title-link:hover {
  color: #0092bc;
  text-decoration: underline;
}

