/* =========================================================
   NYC Skyline Cruise Route Guide
   ========================================================= */

.route-page{
    background:#ffffff;
}

/* ==========================
   HERO
========================== */

.route-hero{
    position:relative;
    min-height:680px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center center;
    overflow:hidden;
}

.route-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(5,22,38,.68),
        rgba(5,22,38,.68)
    );
}

.route-hero-content{
    position:relative;
    z-index:5;
    width:100%;
    max-width:1100px;
    margin:auto;
    padding:120px 25px;
    text-align:center;
}

.route-eyebrow{
    display:inline-block;
    margin-bottom:20px;
    color:#f3bf55;
    font-size:13px;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.route-hero h1{
    color:#fff;
    font-size:clamp(46px,6vw,78px);
    line-height:1;
    font-weight:900;
    margin-bottom:24px;
    letter-spacing:-.04em;
}

.route-hero p{
    max-width:820px;
    margin:auto;
    color:rgba(255,255,255,.92);
    font-size:20px;
    line-height:1.75;
}

/* ==========================
   META
========================== */

.route-meta{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:35px;
}

.route-meta span{

    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.22);

    color:#fff;

    font-weight:700;

}

/* ==========================
   BUTTONS
========================== */

.route-actions{

    margin-top:34px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================
   GENERAL SECTIONS
========================== */

.route-section{

    padding:90px 0;

}

.route-section-alt{

    background:#f7fafc;

}

/* ==========================
   TYPOGRAPHY
========================== */

.route-kicker{

    display:block;

    color:#ff7f32;

    font-size:13px;

    font-weight:800;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:14px;

}

.route-content{

    max-width:760px;

}

.route-content h2{

    font-size:54px;

    line-height:1.05;

    font-weight:900;

    color:#082032;

    margin-bottom:28px;

    letter-spacing:-.03em;

}

.route-content h3{

    margin-top:45px;

    margin-bottom:18px;

    font-size:34px;

    color:#082032;

    font-weight:800;

}

.route-content p{

    font-size:18px;

    line-height:1.9;

    color:#4f5d69;

    margin-bottom:24px;

}

/* ==========================
   ARTICLE LINKS
========================== */

.route-content p a,
.route-article p a,
.route-feature-content p a{
    color:#0d4f8b;
    font-weight:800;
    text-decoration:none;
    border-bottom:2px solid #ff7f32;
    padding-bottom:2px;
    transition:color .2s ease, border-color .2s ease;
}

.route-content p a:hover,
.route-article p a:hover,
.route-feature-content p a:hover{
    color:#ff7f32;
    border-bottom-color:#0d4f8b;
}

/* ==========================
   IMAGE
========================== */

.route-image{

    position:sticky;

    top:120px;

}

.route-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

/* ==========================
   ROUTE CARD
========================== */

.route-card{

    margin-top:28px;

    background:#082032;

    color:#fff;

    border-radius:20px;

    padding:28px;

}

.route-card h3{

    color:#fff;

    margin-bottom:20px;

    font-size:22px;

}

.route-card ul{

    list-style:none;

    margin:0;

    padding:0;

}

.route-card li{

    padding:8px 0;

    border-bottom:1px solid rgba(255,255,255,.12);

    font-weight:600;

}

.route-card li:last-child{

    border-bottom:none;

}

/* ==========================
   TABLE OF CONTENTS
========================== */

.route-toc{

    margin-top:45px;

    background:#fff;

    border:1px solid #e8edf3;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.route-toc h3{

    margin-bottom:22px;

}

.route-toc ul{

    margin:0;

    padding-left:18px;

}

.route-toc li{

    margin-bottom:12px;

}

.route-toc a{

    color:#0d4f8b;

    font-weight:700;

    text-decoration:none;

}

.route-toc a:hover{

    color:#ff7f32;

}

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

@media(max-width:991px){

.route-section{

padding:70px 0;

}

.route-content{

max-width:100%;

margin-bottom:45px;

}

.route-image{

position:relative;

top:auto;

}

.route-content h2{

font-size:42px;

}

}

@media(max-width:767px){

.route-hero{

min-height:560px;

}

.route-hero-content{

padding:90px 20px;

}

.route-hero h1{

font-size:44px;

}

.route-hero p{

font-size:17px;

}

.route-content h2{

font-size:36px;

}

.route-content p{

font-size:17px;

line-height:1.8;

}

}


/* =====================================
   FEATURE SECTION
===================================== */

.route-feature-section{
    padding:90px 0;
}

.route-feature{

    display:grid;
    grid-template-columns:48% 52%;
    align-items:center;

    gap:60px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.route-feature-image{

    height:100%;

}

.route-feature-image img{

    width:100%;
    height:100%;

    min-height:420px;
    max-height:520px;

    object-fit:cover;

    display:block;

}

.route-feature-content{

    padding:55px;

}

.route-feature-label{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 14px;

    border-radius:999px;

    background:#eef7ff;

    color:#0d4f8b;

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.route-feature-content h2{

    font-size:44px;

    line-height:1.1;

    margin-bottom:22px;

}

.route-feature-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

@media(max-width:991px){

.route-feature{

grid-template-columns:1fr;

}

.route-feature-image img{

min-height:300px;
max-height:400px;

}

.route-feature-content{

padding:35px;

}

.route-feature-content h2{

font-size:34px;

}

}

/* =====================================
   HERO FEATURE
===================================== */

.route-hero-feature{
    padding:100px 0;
    background:#fff;
}

.route-hero-feature-image{
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.route-hero-feature-image img{
    display:block;
    width:100%;
    height:700px;
    object-fit:cover;
}

.route-hero-feature-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:70px;

    background:linear-gradient(
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,.75) 100%
    );

    color:#fff;

}

.route-hero-feature-overlay .route-feature-label{

    display:inline-block;
    align-self:flex-start;

    margin-bottom:18px;

    padding:8px 16px;

    background:#ff7f32;

    color:#fff;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.route-hero-feature-overlay h2{

    color:#fff;

    font-size:60px;

    line-height:1.05;

    font-weight:800;

    max-width:750px;

    margin-bottom:24px;

}

.route-hero-feature-overlay p{

    color:rgba(255,255,255,.95);

    font-size:20px;

    line-height:1.8;

    max-width:720px;

    margin-bottom:35px;

}

@media(max-width:991px){

.route-hero-feature-image img{

height:520px;

}

.route-hero-feature-overlay{

padding:45px;

}

.route-hero-feature-overlay h2{

font-size:42px;

}

.route-hero-feature-overlay p{

font-size:17px;

}

}

@media(max-width:767px){

.route-hero-feature{

padding:70px 0;

}

.route-hero-feature-image img{

height:420px;

}

.route-hero-feature-overlay{

padding:25px;

}

.route-hero-feature-overlay h2{

font-size:30px;

}

}

/* =====================================
   FINAL CALL TO ACTION
===================================== */

.route-final-cta{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            #071f31 0%,
            #0d4268 100%
        );
    text-align:center;
}

.route-final-cta::before{
    content:"";
    position:absolute;
    top:-160px;
    left:-100px;
    width:420px;
    height:420px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.route-final-cta::after{
    content:"";
    position:absolute;
    right:-150px;
    bottom:-220px;
    width:520px;
    height:520px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.route-final-cta .container{
    position:relative;
    z-index:2;
    max-width:900px;
}

.route-final-cta h2{
    max-width:760px;
    margin:0 auto 20px;
    color:#fff;
    font-size:clamp(38px, 5vw, 60px);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.03em;
}

.route-final-cta p{
    max-width:650px;
    margin:0 auto 34px;
    color:rgba(255,255,255,.88);
    font-size:19px;
    line-height:1.8;
}

.route-final-cta .nys-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:16px 30px;
    font-size:16px;
    font-weight:800;
}

.route-final-cta .nys-btn--primary{
    background:#ff7f32;
    border-color:#ff7f32;
    color:#fff;
}

.route-final-cta .nys-btn--primary:hover{
    background:#e96d21;
    border-color:#e96d21;
    color:#fff;
    transform:translateY(-2px);
}

@media(max-width:767px){

    .route-final-cta{
        padding:75px 20px;
    }

    .route-final-cta h2{
        font-size:36px;
    }

    .route-final-cta p{
        font-size:17px;
        line-height:1.7;
    }

    .route-final-cta .nys-btn{
        width:100%;
        max-width:340px;
    }

}

/* =====================================
   FEATURE IMAGE CAPTION
===================================== */

.route-feature-image{
    display:flex;
    flex-direction:column;
    height:100%;
}

.route-feature-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.route-feature-caption{
    padding:12px 16px 0;
    color:#6b7782;
    font-size:13px;
    line-height:1.6;
    font-style:italic;
    background:#fff;
}