* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #09131f;
    color: white;
    font-family: Arial, sans-serif;
}

header {

    background:#102235;

    padding:20px;

    border-bottom:3px solid #2aa9ff;

}


.header-title {

    text-align:center;

}


header h1 {

    color:#5fc3ff;

    font-size:34px;

    font-weight:bold;

}

.dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    min-height: calc(100vh - 90px);
    grid-auto-rows: auto;
}


.panel {
  .panel {
    background-color: #152b43;
    border: 2px solid #2aa9ff;
    border-radius: 10px;

    overflow: visible;

    display:flex;
    flex-direction:column;
}
}


.panel h2 {

    background-color: #0d1f31;

    color: #87d6ff;

    padding: 10px;

    text-align: center;

    font-size:28px;

    font-weight:bold;

}#updated {

    color:#9bbcd4;

    font-size:14px;

    margin-top:5px;

    text-align:center;

}.time-panel {

    text-align:center;

    font-weight:bold;

}.time-panel {

    text-align:center;

}


.location {

    font-size:22px;

    font-weight:bold;

    color:#87d6ff;

    margin-bottom:12px;

    text-align:center;

}


.time-row {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:80px;

    margin-top:10px;

}


.time-row div {
    width: 220px;

    text-align:center;

}


.time-row span {

    display:block;

    color:#9bbcd4;

    font-weight:bold;

    font-size:12px;

    margin-bottom:5px;

}



/* LOCAL TIME */

.local-time strong {

    display:block;

    font-size:26px;

    color:white;

}



/* UTC */

.utc-time strong {

    display:block;

    font-size:20px;

    color:#5fc3ff;

}



/* NHC */

.advisory-time strong {

    display:block;

    font-size:16px;

    color:#ffdd55;

}



#updated {

    margin-top:10px;

    font-size:13px;

    color:#9bbcd4;

}/* STORM STATUS BANNER */


#storm-status {

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:15px;

    margin-bottom:10px;

}


#storm-indicator {

    font-size:36px;

    margin-right:12px;

}


#storm-name {

    font-size:20px;

    font-weight:bold;

    color:white;

}


#storm-details {

    font-size:15px;

    color:#9bbcd4;

    margin-top:5px;

}.header-bottom {

    display:flex;

    justify-content:center;

}


.time-panel {

    text-align:center;

}
.hero-panel{
    grid-column:1 / -1;
    min-height: 300px;
    height: auto;
}

.hero-content{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px;
    min-height:300px;
}


.hero-left{

    display:flex;
    align-items:center;

    gap:20px;
}

.storm-icon{

    font-size:70px;
}

.hero-left h3{

    font-size:32px;
    color:#5fc3ff;
}

.hero-left p{

    color:#9bbcd4;
    margin-top:8px;
    font-size:18px;
}

.hero-right{

    display:grid;

    grid-template-columns:repeat(2,170px);

    gap:18px;
}

.metric{

    background:#0d1f31;

    border:1px solid #2aa9ff;

    border-radius:8px;

    padding:15px;

    text-align:center;
}

.metric span{

    display:block;

    color:#9bbcd4;

    font-size:13px;
}

.metric strong{

    display:block;

    margin-top:6px;

    font-size:24px;

    color:white;
}
.content-box {
    padding:20px;
    color:#9bbcd4;
}


.placeholder-map {

    height:180px;

    background:#0d1f31;

    border:1px solid #2aa9ff;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#5fc3ff;

    margin-top:15px;

    font-weight:bold;

}


.radar-panel .placeholder-map {
    grid-column:1 / -1;
    height:300px;

}
.discussion-box {

    height: 260px;

    overflow-y: auto;

    padding: 12px;

    color: #d9ecff;

    font-family: Consolas, monospace;

    font-size: 13px;

    line-height: 1.5;

    white-space: pre-wrap;

    background:#0d1f31;

    border-radius:8px;

}#discussion-container{

    height:245px;

    border:1px solid #2da8ff;

    border-radius:8px;

    background:#11253b;

    overflow:hidden;

}

#discussion{

    margin:0;

    padding:14px;

    height:100%;

    overflow-y:auto;

    white-space:pre-wrap;

    font-family:Consolas,"Courier New",monospace;

    font-size:14px;

    line-height:1.5;

    color:#ffffff;

}/* =================================
   IMAGE ENLARGE OVERLAY
================================= */

.zoomable-image{
    cursor:pointer;
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.zoomable-image:hover{
    transform:scale(1.01);
    filter:brightness(1.08);
}


.image-modal{
    position:fixed;
    inset:0;

    display:none;
    align-items:center;
    justify-content:center;

    padding:40px;

    background:rgba(3, 12, 22, 0.88);

    backdrop-filter:blur(4px);

    z-index:9999;
}


.image-modal.open{
    display:flex;
    animation:modalFadeIn 0.2s ease;
}


.image-modal-content{
    width:min(1100px, 88vw);
    max-height:88vh;

    padding:18px;

    border:1px solid #2da8ff;
    border-radius:10px;

    background:#0f2236;

    box-shadow:
        0 0 35px rgba(0, 0, 0, 0.65);

    overflow:auto;
}


.image-modal-title{
    margin-bottom:12px;

    text-align:center;

    font-size:20px;
    font-weight:bold;

    color:#62c7ff;
}


.image-modal-image{
    display:block;

    width:100%;
    max-height:76vh;

    object-fit:contain;

    border-radius:6px;
}


.image-modal-close{
    position:absolute;

    top:20px;
    right:28px;

    width:46px;
    height:46px;

    border:1px solid #2da8ff;
    border-radius:50%;

    background:#10263b;
    color:#ffffff;

    font-size:32px;
    line-height:38px;

    cursor:pointer;
}


.image-modal-close:hover{
    background:#2da8ff;
    color:#071421;
}


@keyframes modalFadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}


body.modal-open{
    overflow:hidden;
}
/* =================================
   WEATHER IMAGE PANELS
================================= */

.weather-image-container{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    border-radius:7px;
}


.weather-image{
    display:block;

    width:100%;
    flex:1;

    min-height:0;

    object-fit:cover;

    border-radius:6px 6px 0 0;

    background:#071421;
}


.image-caption{
    padding:7px 10px;

    background:#0b1a2a;

    color:#92a9bd;

    font-size:11px;
    text-align:center;

    letter-spacing:0.3px;

    border-top:1px solid #203d57;
}
#dashboard-version{
    margin-top:8px;
    text-align:center;
    font-size:15px;
    color:#6f8ba3;
    letter-spacing:0.5px;
}
/* =================================
   CURRENT TROPICAL SYSTEM - COMPACT
================================= */

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    padding:20px 30px;
}


/* LEFT SIDE */

.hero-left{
    display:flex;
    align-items:center;

    gap:16px;

    flex:1;
}


.storm-icon{
    font-size:52px;

    flex-shrink:0;
}


#active-storm-name{
    margin:0;

    font-size:26px;

    line-height:1.15;
}


#active-storm-type{
    margin:6px 0 0 0;

    font-size:15px;
}


/* RIGHT SIDE - ALL FOUR BOXES IN ONE ROW */

.hero-right{
    display:flex;

    align-items:stretch;

    justify-content:flex-end;

    gap:12px;

    flex-wrap:nowrap;
}


.metric{
    width:130px;
    min-height:62px;

    padding:10px 12px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;
}


.metric span{
    margin-bottom:6px;
}


.metric strong{
    white-space:nowrap;
}


/* SMALLER SCREENS */

@media (max-width: 1000px){

    .hero-content{
        flex-direction:column;

        align-items:stretch;
    }

    .hero-right{
        justify-content:center;

        flex-wrap:wrap;
    }

}/* =================================
   COMPACT CURRENT TROPICAL SYSTEM
================================= */

.hero-panel{
    height:auto !important;
    min-height:0 !important;
    padding-bottom:18px !important;
}

.hero-panel .hero-content{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    gap:24px !important;

    padding:18px 24px !important;

    min-height:0 !important;
}

.hero-panel .hero-left{
    display:flex !important;
    align-items:center !important;

    gap:16px !important;

    flex:1 1 auto !important;
}

.hero-panel .storm-icon{
    font-size:48px !important;
}

.hero-panel .hero-right{
    display:grid !important;

    grid-template-columns:repeat(4, 1fr) !important;

    gap:12px !important;

    flex:0 0 auto !important;
}

.hero-panel .metric{
    width:125px !important;
    min-height:62px !important;

    padding:10px 12px !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
}

.hero-panel .metric span{
    margin-bottom:5px !important;
}

.hero-panel .metric strong{
    white-space:nowrap !important;
}


/* Responsive fallback */

@media (max-width: 1100px){

    .hero-panel .hero-content{
        flex-direction:column !important;
        align-items:stretch !important;
    }

    .hero-panel .hero-right{
        grid-template-columns:repeat(2, 1fr) !important;
    }

}/* =================================
   COMPACT THREE-COLUMN HEADER
================================= */

.main-header{
    display:grid !important;

    grid-template-columns:
        minmax(320px, 1fr)
        minmax(420px, 1.2fr)
        minmax(500px, 1fr);

    align-items:center !important;

    gap:30px !important;

    padding:16px 28px !important;

    min-height:0 !important;
    height:auto !important;
}


/* LEFT SIDE */

.header-left{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}


#storm-status{
    display:flex !important;

    align-items:center !important;
    justify-content:flex-start !important;

    margin:0 !important;
}


#storm-indicator{
    font-size:34px !important;

    margin-right:12px !important;

    flex-shrink:0;
}


#storm-name{
    font-size:17px !important;

    font-weight:700;

    line-height:1.2;
}


#storm-details{
    font-size:13px !important;

    margin-top:4px !important;
}


/* CENTER */

.header-center{
    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;
}


#dashboard-version{
    margin:0 0 4px 0 !important;

    font-size:13px !important;
}


.header-title{
    margin:0 !important;
}


.header-title h1{
    margin:0 !important;

    font-size:28px !important;

    line-height:1.15 !important;
}


.header-center .location{
    margin-top:6px;

    font-size:17px;

    font-weight:700;
}


/* RIGHT SIDE */

.header-right{
    display:flex;

    justify-content:flex-end;

    align-items:center;
}


.time-panel{
    width:100%;
}


.time-row{
    display:grid !important;

    grid-template-columns:
        1fr
        1fr
        1fr
        70px !important;

    align-items:center !important;

    gap:14px !important;

    width:100%;
}


.local-time,
.utc-time,
.advisory-time{
    text-align:center;

    padding:0 10px;
}


.local-time span,
.utc-time span,
.advisory-time span{
    display:block;

    margin-bottom:4px;

    font-size:13px;
}


.local-time strong,
.utc-time strong,
.advisory-time strong{
    display:block;

    font-size:24px !important;

    line-height:1.2;
}


#updated{
    margin-top:5px !important;

    text-align:center;

    font-size:11px !important;

    color:#9bbcd4;
}


/* =================================
   RESPONSIVE FALLBACK
================================= */

@media (max-width: 1300px){

    .main-header{

        grid-template-columns:1fr;

        text-align:center;

    }

    .header-left,
    .header-right{

        justify-content:center;

    }

    #storm-status{

        justify-content:center !important;

    }

}/* =================================
   EWOC NAVIGATION MENU
================================= */

.main-header{
    position:relative;
}


/* MENU CONTAINER */

.nav-menu{
    position:relative !important;

    top:auto !important;
    right:auto !important;

    margin:0 !important;

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:1000;
}
.menu-column{
    display:flex;

    align-items:center;
    justify-content:center;

    height:100%;
}


/* HAMBURGER BUTTON */

.menu-button{
    width:42px;
    height:42px;

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

    background:#0d2235;

    border:1px solid #29b6f6;
    border-radius:6px;

    color:#5ac8fa;

    font-size:24px;

    cursor:pointer;

    transition:0.2s;
}


.menu-button:hover{
    background:#16334a;

    border-color:#6dd5ff;
}


/* DROPDOWN */

.menu-dropdown{
    position:absolute;

    top:50px;
    right:0;

    width:245px;

    display:none;

    background:#0d2235;

    border:1px solid #29b6f6;
    border-radius:6px;

    overflow:hidden;

    box-shadow:0 8px 24px rgba(0,0,0,0.45);
}


/* WHEN MENU IS OPEN */

.menu-dropdown.open{
    display:block;
}


/* MENU LINKS */

.menu-dropdown a{
    display:block;

    padding:14px 16px;

    color:#d8efff;

    text-decoration:none;

    font-size:15px;

    border-bottom:1px solid rgba(90,200,250,0.15);

    transition:0.15s;
}


.menu-dropdown a:last-child{
    border-bottom:none;
}


.menu-dropdown a:hover{
    background:#16334a;

    color:#5ac8fa;
}
.header-right{
    display:flex !important;

    align-items:center !important;

    justify-content:flex-end !important;

    gap:10px;
}


.header-right .time-panel{
    flex:1;
    min-width:0;
}
.main-header{
    padding-right:18px !important;
}

/* =================================
   FINAL CLOCK + MENU ROW FIX
================================= */

.header-right{
    padding-right:0 !important;
    width:100%;
}

.time-panel{
    width:100%;
}

.time-row{
    display:grid !important;

    grid-template-columns:
        1fr
        1fr
        1fr
        60px !important;

    align-items:center !important;

    gap:12px !important;

    width:100% !important;
}


/* Override old 220px rule */

.time-row > div{
    width:auto !important;
    min-width:0 !important;
}


/* MENU COLUMN */

.menu-column{
    width:60px !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;
}


.nav-menu{
    width:auto !important;

    position:relative !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin:0 !important;
}


/* MENU BUTTON */

.menu-button{
    width:42px !important;
    height:42px !important;

    flex-shrink:0;
}


/* DROPDOWN */

.menu-dropdown{
    width:245px !important;

    position:absolute !important;

    top:50px !important;
    right:0 !important;
}
/* =================================
   EWOC SECONDARY PAGES
================================= */

.subpage-header{
    background:#102235;

    border-bottom:3px solid #2aa9ff;

    padding:20px 28px;
}


.subpage-brand{
    display:grid;

    grid-template-columns:1fr auto 1fr;

    align-items:center;

    gap:20px;
}


.subpage-brand h1{
    margin:0;

    color:#5fc3ff;

    font-size:30px;

    text-align:center;
}


.subpage-location{
    margin-top:6px;

    color:#9bbcd4;

    font-size:14px;

    font-weight:bold;

    letter-spacing:1.5px;

    text-align:center;
}


.back-dashboard{
    justify-self:start;

    color:#87d6ff;

    text-decoration:none;

    font-weight:bold;
}


.home-button{
    justify-self:end;

    padding:8px 12px;

    color:#87d6ff;

    border:1px solid #2aa9ff;

    border-radius:6px;

    text-decoration:none;

    font-weight:bold;
}


.back-dashboard:hover,
.home-button:hover{
    color:white;
}


.links-page{
    max-width:1400px;

    margin:0 auto;

    padding:30px 24px 50px;
}


.links-intro{
    margin-bottom:25px;

    text-align:center;
}


.links-intro h2{
    margin-bottom:8px;

    color:#87d6ff;

    font-size:30px;
}


.links-intro p{
    color:#9bbcd4;

    font-size:16px;
}


.links-grid{
    display:grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:20px;
}


.link-category{
    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;

    overflow:hidden;
}


.link-category h2{
    margin:0;

    padding:13px 16px;

    background:#0d1f31;

    color:#87d6ff;

    font-size:22px;

    text-align:center;
}


.resource-link{
    display:block;

    padding:16px 18px;

    color:white;

    text-decoration:none;

    border-top:
        1px solid rgba(90,200,250,0.16);

    transition:
        background 0.15s ease,
        padding-left 0.15s ease;
}


.resource-link strong{
    display:block;

    margin-bottom:5px;

    color:#5fc3ff;

    font-size:17px;
}


.resource-link span{
    display:block;

    color:#b1c9da;

    font-size:14px;

    line-height:1.4;
}


.resource-link:hover{
    background:#1b3853;

    padding-left:23px;
}


.subpage-footer{
    padding:22px 20px;

    border-top:1px solid #203d57;

    background:#0d1f31;

    text-align:center;
}

.footer-title{
    color:#87d6ff;

    font-size:18px;

    font-weight:bold;

    letter-spacing:0.5px;
}

.footer-tagline{
    margin-top:5px;

    color:#9bbcd4;

    font-size:14px;
}

.footer-credit{
    margin-top:8px;

    color:#6f8ba3;

    font-size:14px;
}


@media (max-width:850px){

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


    .subpage-brand{
        grid-template-columns:1fr;
    }


    .back-dashboard,
    .home-button{
        justify-self:center;
    }

}
/* =========================================
   HURRICANE PREPAREDNESS PAGE
========================================= */

.preparedness-page{
    max-width:1400px;
    margin:0 auto;
    padding:30px 24px 50px;
}


/* =========================================
   PREPAREDNESS INTRO
========================================= */

.preparedness-intro{
    text-align:center;
    margin-bottom:24px;
}

.preparedness-intro h2{
    color:#87d6ff;
    font-size:30px;
    margin-bottom:8px;
}

.preparedness-intro p{
    color:#9bbcd4;
    font-size:16px;
}


/* =========================================
   PROGRESS TRACKER
========================================= */

.preparedness-progress{
    margin-bottom:25px;

    padding:18px 20px;

    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;
}

.progress-header{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-bottom:12px;
}

.progress-label{
    display:block;

    color:#9bbcd4;

    font-size:12px;

    font-weight:bold;

    letter-spacing:1px;
}

#progress-count{
    display:block;

    margin-top:4px;

    color:white;

    font-size:20px;
}

.progress-percent{
    color:#87d6ff;

    font-size:30px;

    font-weight:bold;
}

.progress-track{
    width:100%;
    height:12px;

    background:#0d1f31;

    border:1px solid #203d57;

    border-radius:999px;

    overflow:hidden;
}

.progress-bar{
    width:0%;
    height:100%;

    background:#2aa9ff;

    transition:width 0.25s ease;
}


/* =========================================
   CHECKLIST GRID
========================================= */

.preparedness-grid{
    display:grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:20px;
}

.checklist-card{
    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;

    overflow:hidden;
}

.checklist-card h2{
    margin:0;

    padding:13px 16px;

    background:#0d1f31;

    color:#87d6ff;

    font-size:21px;

    text-align:center;
}

.checklist-card label{
    display:flex;

    align-items:flex-start;

    gap:10px;

    padding:12px 16px;

    color:#d8efff;

    font-size:14px;

    line-height:1.4;

    border-top:
        1px solid rgba(90,200,250,0.12);

    cursor:pointer;
}

.checklist-card label:hover{
    background:#1b3853;
}

.prep-check{
    margin-top:3px;

    transform:scale(1.2);

    accent-color:#2aa9ff;
}


/* =========================================
   PREPAREDNESS RESOURCES
========================================= */

.preparedness-resources{
    margin-top:25px;

    padding:22px;

    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;

    text-align:center;
}

.preparedness-resources h2{
    margin-bottom:8px;

    color:#87d6ff;
}

.preparedness-resources p{
    margin-bottom:16px;

    color:#9bbcd4;
}

.preparedness-links{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;
}

.preparedness-links a{
    padding:9px 14px;

    background:#0d1f31;

    border:1px solid #2aa9ff;

    border-radius:6px;

    color:#87d6ff;

    text-decoration:none;

    font-weight:bold;
}

.preparedness-links a:hover{
    background:#1b3853;

    color:white;
}


/* =========================================
   PREPAREDNESS RESPONSIVE
========================================= */

@media (max-width:850px){

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

    .progress-header{
        align-items:flex-start;

        flex-direction:column;
    }

}
/* =========================================
   PREPAREDNESS INFORMATION LISTS
========================================= */

.preparedness-bullets{
    margin:0;
    padding:10px 20px 14px 42px;

    color:#d8efff;
}

.preparedness-bullets li{
    padding:9px 6px;

    line-height:1.5;

    border-bottom:
        1px solid rgba(90,200,250,0.12);
}

.preparedness-bullets li:last-child{
    border-bottom:none;
}

.info-card{
    align-self:start;
}
/* =========================================
   BUILD A HURRICANE KIT CALLOUT
========================================= */

.hurricane-kit-callout{
    display:flex;

    align-items:center;

    gap:18px;

    margin-top:15px;

    padding:18px;

    background:#0d1f31;

    border:1px solid #2aa9ff;

    border-radius:8px;
}

.kit-icon{
    font-size:42px;

    flex-shrink:0;
}

.kit-info h3{
    margin:0 0 6px 0;

    color:#87d6ff;

    font-size:20px;
}

.kit-info p{
    margin:0 0 12px 0;

    color:#d8efff;

    font-size:14px;

    line-height:1.5;
}

.kit-button{
    display:inline-block;

    padding:9px 14px;

    background:#152b43;

    border:1px solid #2aa9ff;

    border-radius:6px;

    color:#87d6ff;

    text-decoration:none;

    font-weight:bold;
}

.kit-button:hover{
    background:#1b3853;

    color:white;
}
/* =========================================
   EWOC GOLF PAGE
========================================= */

.golf-page{
    max-width:1400px;
    margin:0 auto;
    padding:30px 24px 50px;
}


/* =========================================
   GOLF SUMMARY
========================================= */

.golf-summary{
    margin-bottom:30px;

    padding:25px;

    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;

    text-align:center;
}

.golf-summary-title span{
    display:block;

    color:#87d6ff;

    font-size:24px;

    font-weight:bold;

    letter-spacing:1px;
}

.golf-summary-title strong{
    display:block;

    margin-top:8px;

    color:#87d6ff;

    font-size:46px;
}

.golf-rating{
    margin-top:8px;

    font-size:25px;

    font-weight:bold;
}

.best-window{
    margin-top:10px;

    color:#9bbcd4;

    font-size:16px;
}


/* =========================================
   HOURLY GOLF FORECAST
========================================= */

.golf-section-title{
    margin-bottom:15px;

    color:#87d6ff;

    text-align:center;
}

.golf-hours{
    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(145px, 1fr)
        );

    gap:12px;
}

.golf-hour-card{
    padding:14px;

    background:#152b43;

    border:1px solid #2aa9ff;

    border-radius:8px;

    text-align:center;

    color:#d8efff;
}

.golf-hour-time{
    margin-bottom:8px;

    color:#87d6ff;

    font-weight:bold;
}

.golf-hour-score{
    margin-bottom:5px;

    font-size:30px;

    font-weight:bold;
}

.golf-hour-forecast{
    margin-top:8px;

    color:#9bbcd4;

    font-size:12px;
}


/* =========================================
   GOLFABILITY GUIDE
========================================= */

.golf-guide{
    margin-top:30px;

    padding:22px;

    background:#152b43;

    border:2px solid #2aa9ff;

    border-radius:10px;
}

.golf-guide h2{
    margin-bottom:16px;

    color:#87d6ff;

    text-align:center;
}

.golf-guide-grid{
    display:grid;

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

    gap:12px;
}

.golf-guide-grid div{
    padding:12px;

    background:#0d1f31;

    border-radius:6px;

    text-align:center;
}

.golf-guide-grid strong{
    display:block;

    margin:4px 0;
}

.golf-guide p{
    margin-top:16px;

    color:#9bbcd4;

    text-align:center;
}


/* =========================================
   GOLF PAGE RESPONSIVE
========================================= */

@media (max-width:850px){

    .golf-guide-grid{
        grid-template-columns:
            1fr;
    }

}
/* =========================================
   GOLF PAGE HEADER
========================================= */

.golf-main-title{
    margin:0;

    color:#5fc3ff;

    font-size:42px !important;

    font-weight:bold;

    text-align:center;
}

.golf-subtitle{
    margin-top:6px;

    color:#9bbcd4;

    font-size:18px;

    font-weight:bold;

    letter-spacing:1.5px;

    text-align:center;
}
/* =========================================
   SUNRISE / SUNSET
========================================= */

.golf-daylight{
    display:flex;

    justify-content:center;
    align-items:center;

    gap:28px;

    margin-top:20px;

    padding-top:18px;

    border-top:1px solid #29455e;
}

.daylight-item{
    display:flex;

    align-items:center;

    gap:10px;
}

.daylight-icon{
    font-size:32px;
}

.daylight-label{
    display:block;

    color:#9bbcd4;

    font-size:12px;

    font-weight:bold;

    letter-spacing:1px;
}

.daylight-item strong{
    display:block;

    margin-top:3px;

    color:#ffffff;

    font-size:20px;
}

.daylight-divider{
    width:1px;
    height:45px;

    background:#29455e;
}