@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@500;700&family=Playfair+Display:ital,wght@0,400;0,600;1,600&display=swap');
:root{
    --teal:#1b6b6b;
    --moss:#145252;
    --orange:#f26522;
    --lime:#c8d64b;
    --off:#f7f5f0;
    --black:#0d0d0d;
    --grey:#e8e6e1;
    --serif:'Playfair Display',serif;
    --sans:'Inter',sans-serif;
    --display:'Montserrat',sans-serif
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    color:var(--black);
    font-family:var(--sans);
    overflow-x:hidden
}
h1,h2,h3{
    font-family:var(--serif)
}
h2{
    font-size:clamp(2.5rem,5vw,4rem);
    color:var(--teal);
    line-height:1.08
}
p{
    line-height:1.75;
    color:rgba(20,82,82,.72)
}
a{
    text-decoration:none
}
.section{
    padding:8rem 0
}
.bg-off{
    background:var(--off)
}
.eyebrow{
    display:block;
    margin-bottom:1.4rem;
    font:700 .75rem var(--display);
    letter-spacing:.28em;
    text-transform:uppercase
}
.eyebrow:before{
    content:'';
    display:inline-block;
    width:42px;
    height:1px;
    background:currentColor;
    margin-right:16px;
    vertical-align:middle
}
.eyebrow.orange{
    color:var(--orange)
}
.eyebrow.teal{
    color:var(--teal)
}
.eyebrow.light{
    color:var(--lime)
}
.button{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:1rem 1.8rem;
    border-radius:4px;
    border:0;
    font:700 .72rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase;
    transition:.25s
}
.button:hover{
    filter:brightness(1.1);
    transform:translateY(-2px)
}
.button-orange{
    background:var(--orange);
    color:#fff
}
.button-outline{
    border:1px solid rgba(255,255,255,.5);
    color:#fff
}
.button-outline:hover{
    background:#fff;
    color:var(--black)
}
.button-teal{
    background:var(--teal);
    color:#fff
}
.site-header{
    position:fixed;
    inset:0 0 auto;
    z-index:100;
    height:112px;
    transition:.3s
}
.site-header.scrolled{
    height:80px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(16px);
    box-shadow:0 5px 24px rgba(0,0,0,.1)
}
.brand-wordmark{
    display:inline-flex;
    flex-direction:column;
    color:#fff;
    font:700 1.6rem var(--display);
    letter-spacing:.12em;
    line-height:1
}
.brand-wordmark small{
    font-size:.42rem;
    letter-spacing:.36em;
    margin-top:5px
}
.brand-image{
    height:50px;
    width:auto;
    max-width:190px;
    object-fit:contain
}
.scrolled .brand-wordmark{
    color:var(--teal)
}
.desktop-nav{
    display:flex;
    gap:2rem
}
.desktop-nav a{
    color:#fff;
    font:700 .68rem var(--display);
    letter-spacing:.15em;
    text-transform:uppercase
}
.scrolled .desktop-nav a{
    color:var(--teal)
}
.desktop-nav a:hover{
    color:var(--orange)
}
.menu-toggle{
    display:none;
    background:transparent;
    border:0;
    color:#fff;
    font-size:2.2rem
}
.scrolled .menu-toggle{
    color:var(--teal)
}
.mobile-menu{
    position:fixed;
    inset:0;
    z-index:110;
    background:var(--teal);
    padding:2rem;
    display:flex;
    flex-direction:column;
    transform:translateX(100%);
    transition:.35s
}
.mobile-menu.open{
    transform:none
}
.mobile-menu nav{
    display:flex;
    flex-direction:column;
    gap:1.25rem
}
.mobile-menu nav a{
    color:#fff;
    font:italic 1.8rem var(--serif)
}
.mobile-menu .menu-toggle{
    display:block;
    color:#fff
}
.hero{
    position:relative;
    height:100vh;
    min-height:700px;
    background:var(--black);
    overflow:hidden
}
.hero video,.hero-overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover
}
.hero video{
    opacity:.5;
    filter:brightness(.7)
}
.hero-overlay{
    background:linear-gradient(0deg,rgba(27,107,107,.92),rgba(13,13,13,.4))
}
.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width:1280px
}
.hero-content>p{
    max-width:590px;
    color:rgba(255,255,255,.8);
    font-size:1.15rem;
    margin-bottom:2.4rem
}
.hero h1{
    white-space:pre-line;
    color:#fff;
    font-size:clamp(3.2rem,7vw,6.4rem);
    line-height:1.03;
    max-width:930px;
    margin-bottom:2rem
}
.scroll-indicator{
    position:absolute;
    z-index:3;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    color:rgba(255,255,255,.5);
    text-align:center;
    font:500 .6rem var(--display);
    letter-spacing:.2em;
    animation:bob 2s infinite
}
.color-line{
    position:absolute;
    bottom:0;
    z-index:4;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--teal),var(--lime),var(--orange))
}
@keyframes bob{
    50%{
        transform:translate(-50%,10px)
    }
}
.about-image{
    aspect-ratio:4/5;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.22)
}
.about-image img{
    width:100%;
    height:100%;
    object-fit:cover
}
.legacy-card{
    position:absolute;
    right:-25px;
    bottom:-35px;
    max-width:320px;
    padding:2rem;
    background:var(--teal);
    color:#fff;
    border-radius:8px;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
    font:500 .68rem var(--display);
    letter-spacing:.16em;
    text-transform:uppercase
}
.legacy-card strong{
    display:block;
    font:italic 3.4rem var(--serif);
    margin-bottom:12px
}
.reveal-left{
    position:relative
}
.body-copy{
    font-size:1.08rem;
    color:rgba(20,82,82,.78);
    line-height:1.8;
    white-space:pre-line
}
.about-stats{
    border-top:1px solid rgba(20,82,82,.12);
    margin-top:2rem;
    padding-top:2rem
}
.about-stats strong{
    display:block;
    color:var(--teal);
    font:2rem var(--serif)
}
.about-stats span{
    font:500 .66rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(20,82,82,.55)
}
.about-stats > .col-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.partnership{
    background:var(--moss);
    color:#fff
}
.partnership h2{
    color:#fff;
    max-width:850px;
    margin:auto
}
.section-heading{
    margin-bottom:5rem
}
.glass-card{
    height:100%;
    padding:2.5rem;
    background:rgba(0,0,0,.2);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(8px);
    border-radius:12px;
    transition:.4s
}
.glass-card:hover{
    transform:translateY(-8px)
}
.glass-card h3{
    font-style:italic;
    font-size:1.6rem
}
.glass-card p{
    color:rgba(255,255,255,.7)
}
.lime-icon{
    color:var(--lime);
    margin-bottom:2rem
}
.partnership small{
    color:rgba(255,255,255,.4);
    font:500 .62rem var(--display);
    letter-spacing:.15em
}
.development-intro{
    margin-bottom:5rem
}
.garden-logo{
    font-size:clamp(3rem,6vw,5.5rem);
    font-style:italic;
    margin-top:2rem
}
.garden-logo small{
    display:block;
    font:700 .7rem var(--display);
    letter-spacing:.3em;
    text-transform:uppercase
}
.development-intro blockquote{
    border-left:4px solid var(--lime);
    padding-left:2rem;
    color:var(--teal);
    font:italic 1.5rem var(--serif)
}
.amenities{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:2rem;
    margin-bottom:7rem
}
.amenity{
    text-align:center
}
.amenity span{
    width:64px;
    height:64px;
    margin:auto auto 1rem;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--off);
    color:var(--teal);
    transition:.35s
}
.amenity:hover span{
    background:var(--teal);
    color:#fff;
    transform:scale(1.1)
}
.amenity b{
    display:block;
    color:rgba(20,82,82,.7);
    font:700 .62rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase
}
.plans-box{
    background:var(--off);
    border-radius:24px;
    padding:4rem
}
.plans-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:3rem
}
.plans-head h3{
    color:var(--moss);
    font-style:italic
}
.plan-tabs{
    display:flex;
    background:#fff;
    padding:6px;
    border-radius:30px
}
.plan-tabs button{
    padding:.75rem 1.8rem;
    border:0;
    border-radius:30px;
    background:transparent;
    color:rgba(20,82,82,.65);
    font:700 .66rem var(--display);
    text-transform:uppercase;
    letter-spacing:.12em
}
.plan-tabs button.active{
    background:var(--teal);
    color:#fff
}
.plan-panel{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center
}
.plan-panel.active{
    display:grid;
    animation:fade .35s
}
.plan-panel h3{
    font-size:2.5rem;
    color:var(--teal);
    margin-top:1.4rem
}
.plan-panel img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 20px 45px rgba(0,0,0,.16)
}
.plan-panel li{
    margin:.7rem 0;
    color:rgba(20,82,82,.7)
}
.size-pill{
    background:rgba(200,214,75,.24);
    color:var(--teal);
    border-radius:20px;
    padding:.4rem 1rem;
    font-weight:700
}
@keyframes fade{
    from{
        opacity:0;
        transform:translateX(15px)
    }
}
.sustainability{
    margin-top:7rem
}
.bio,.finance{
    height:100%;
    padding:3rem;
    border-radius:16px;
    color:#fff
}
.bio{
    background:var(--teal)
}
.bio p{
    color:rgba(255,255,255,.8);
    max-width:650px
}
.bio strong{
    font:2rem var(--serif);
    color:var(--lime)
}
.finance{
    background:var(--orange);
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center
}
.finance p{
    color:rgba(255,255,255,.9);
    margin:0
}
.finance strong{
    display:block;
    font:700 2.5rem var(--serif)
}
.section-intro{
    margin-bottom:4rem
}
.map-box{
    position:relative;
    height:500px;
    border:4px solid #fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15)
}
.map-box iframe{
    border:0;
    width:100%;
    height:100%
}
.map-box>span{
    position:absolute;
    top:1.5rem;
    left:1.5rem;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(10px);
    padding:1rem;
    border-radius:8px;
    color:var(--teal);
    font:700 .65rem var(--display);
    text-transform:uppercase
}
.poi-list{
    display:grid;
    gap:1rem
}
.poi-list article{
    background:#fff;
    border:1px solid var(--grey);
    border-radius:14px;
    padding:1.5rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--teal)
}
.poi-list article h4{
    margin:0;
    color:var(--moss);
    font:700 .72rem var(--display);
    text-transform:uppercase
}
.poi-list article strong{
    font:italic 1.15rem var(--serif)
}
.reference{
    padding:1.5rem;
    background:var(--teal);
    border-radius:14px;
    color:#fff;
    display:flex;
    flex-direction:column
}
.credentials{
    padding:6rem 0;
    background-color:var(--black);
    background-image:radial-gradient(rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:40px 40px;
    color:#fff
}
.partners{
    display:flex;
    flex-direction:column;
    gap:2rem;
    border-right:1px solid rgba(255,255,255,.1)
}
.partners small,.stat small{
    color:rgba(255,255,255,.4);
    font:700 .6rem var(--display);
    letter-spacing:.15em;
    text-transform:uppercase
}
.partners strong{
    font:italic 1.8rem var(--serif);
    color:rgba(255,255,255,.4)
}
.stat strong{
    display:block;
    color:var(--lime);
    font:clamp(2.7rem,5vw,4.5rem) var(--serif)
}
.quote{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:6rem;
    padding-top:4rem;
    color:rgba(255,255,255,.8);
    font:italic clamp(1.5rem,3vw,2.4rem) var(--serif)
}
.quote cite{
    display:block;
    color:var(--lime);
    font:700 .68rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-top:1.6rem
}
.contact-details{
    display:grid;
    margin:3rem 0;
    gap:.5rem
}
.contact-details b{
    margin-top:1.4rem;
    text-transform:uppercase;
    font:700 .65rem var(--display);
    letter-spacing:.15em
}
.contact-details a{
    color:var(--teal);
    font:italic 1.25rem var(--serif)
}
.privacy-note{
    background:#fff;
    padding:1.5rem;
    border:1px solid var(--grey);
    border-radius:14px;
    font-style:italic
}
.contact-card{
    background:#fff;
    padding:3rem;
    border-radius:24px;
    box-shadow:0 25px 55px rgba(27,107,107,.08)
}
.contact-card label{
    display:block;
    width:100%;
    color:rgba(20,82,82,.6);
    font:700 .58rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase
}
.contact-card input:not([type=checkbox]),.contact-card textarea{
    display:block;
    width:100%;
    border:1px solid transparent;
    background:var(--off);
    padding:1rem;
    border-radius:8px;
    margin-top:.5rem;
    outline:0
}
.contact-card input:focus,.contact-card textarea:focus{
    border-color:var(--teal);
    background:#fff
}
.checkbox-line{
    display:flex;
    align-items:center;
    gap:.6rem
}
.checkbox-line label{
    width:auto;
    text-transform:none;
    font:400 .85rem var(--sans);
    letter-spacing:0
}
.honeypot{
    position:absolute;
    left:-10000px
}
.alert{
    padding:1rem;
    border-radius:8px;
    margin-bottom:1rem
}
.alert-success{
    background:#eaf5da;
    color:#355a18
}
.alert-danger{
    background:#ffe7e2;
    color:#8b2614
}
.site-footer{
    background:var(--black);
    color:#fff;
    padding:6rem 0 2rem
}
.footer-main h4{
    color:var(--lime);
    font:700 .72rem var(--display);
    letter-spacing:.2em;
    text-transform:uppercase;
    margin-bottom:2rem
}
.site-footer ul{
    list-style:none;
    padding:0;
    color:rgba(255,255,255,.58)
}
.site-footer li{
    margin:.8rem 0
}
.site-footer a,.site-footer address,.muted{
    color:rgba(255,255,255,.5)
}
.socials{
    display:flex;
    gap:.7rem
}
.socials a{
    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center
}
.back-top{
    border:0;
    background:none;
    color:var(--lime);
    font:700 .6rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:2rem;
    margin-top:5rem;
    display:flex;
    justify-content:space-between;
    color:rgba(255,255,255,.28);
    font:500 .55rem var(--display);
    letter-spacing:.12em;
    text-transform:uppercase
}
.whatsapp-float{
    display:none;
    position:fixed;
    z-index:90;
    right:1.5rem;
    bottom:1.5rem;
    width:56px;
    height:56px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    background:var(--lime);
    color:var(--teal);
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.3)
}
.reveal,.reveal-left,.reveal-right{
    opacity:0;
    transform:translateY(24px);
    transition:.7s
}
.reveal-left{
    transform:translateX(-24px)
}
.reveal-right{
    transform:translateX(24px)
}
.visible{
    opacity:1;
    transform:none
}
@media(max-width:991px){
    .desktop-nav{
        display:none
    }
    .menu-toggle{
        display:block
    }
    .section{
        padding:6rem 0
    }
    .amenities{
        grid-template-columns:repeat(3,1fr)
    }
    .plan-panel{
        gap:2rem
    }
    .legacy-card{
        display:none
    }
}
@media(max-width:767px){
    .site-header{
        height:84px
    }
    .header-cta{
        display:none
    }
    .hero{
        min-height:680px
    }
    .hero h1{
        font-size:3.15rem
    }
    .section{
        padding:5rem 0
    }
    .amenities{
        grid-template-columns:repeat(2,1fr);
        gap:2rem 1rem
    }
    .plans-box{
        padding:1.5rem
    }
    .plans-head{
        align-items:flex-start;
        flex-direction:column
    }
    .plan-tabs{
        width:100%;
        overflow:auto
    }
    .plan-panel{
        grid-template-columns:1fr
    }
    .plan-panel img{
        order:-1
    }
    .partners{
        border:0
    }
    .contact-card{
        padding:1.5rem
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center
    }
    .whatsapp-float{
        display:flex
    }
    .map-box{
        height:400px
    }
}

/* Correção de posicionamento do menu e da área principal do hero */
.site-header{
    background:linear-gradient(180deg,rgba(13,13,13,.88) 0%,rgba(13,13,13,.42) 58%,rgba(13,13,13,0) 100%);
}

.site-header.scrolled{
    background:rgba(255,255,255,.94);
}

.hero-content{
    justify-content:center;
    padding-top:112px;
    padding-bottom:64px;
}

.hero-content > .eyebrow{
    margin-bottom:1.15rem;
}

.hero h1{
    max-width:980px;
    margin:0 0 1.75rem;
    font-size:clamp(3.5rem,5.8vw,5.8rem);
    line-height:1.02;
    letter-spacing:-.035em;
    white-space:normal;
}

.hero-content > p{
    max-width:610px;
    margin-bottom:2rem;
}

@media (max-width:1199px){
    .desktop-nav{
        gap:1.25rem
    }
    .desktop-nav a{
        font-size:.64rem;
        letter-spacing:.11em
    }
    .hero h1{
        max-width:850px;
        font-size:clamp(3.4rem,6.5vw,5rem)
    }
}

@media (max-width:991px){
    .hero-content{
        padding-top:96px;
        padding-bottom:52px
    }
    .hero h1{
        max-width:760px;
        line-height:1.04
    }
}

@media (max-width:767px){
    .site-header{
        background:linear-gradient(180deg,rgba(13,13,13,.92),rgba(13,13,13,.15))
    }
    .hero{
        height:auto;
        min-height:100svh
    }
    .hero-content{
        min-height:100svh;
        padding-top:112px;
        padding-bottom:88px
    }
    .hero h1{
        max-width:100%;
        font-size:clamp(2.75rem,12vw,3.6rem);
        line-height:1.04;
        letter-spacing:-.025em;
        margin-bottom:1.35rem
    }
    .hero-content > p{
        font-size:1rem;
        line-height:1.6;
        margin-bottom:1.65rem
    }
    .scroll-indicator{
        display:none
    }
}

@media (max-width:420px){
    .hero h1{
        font-size:2.65rem
    }
    .hero-content{
        padding-top:104px;
        padding-bottom:64px
    }
}

@media (max-height:760px) and (min-width:768px){
    .hero-content{
        padding-top:100px;
        padding-bottom:42px
    }
    .hero h1{
        font-size:clamp(3rem,5.4vw,4.6rem);
        margin-bottom:1.25rem
    }
    .hero-content > p{
        font-size:1rem;
        line-height:1.55;
        margin-bottom:1.5rem
    }
}

/* Blog */
.blog-main{
    background:#f7f5f0;
    color:#173333;
    min-height:70vh
}
.blog-hero{
    padding:180px 0 90px;
    background:linear-gradient(135deg,#0d2727,#1b6b6b);
    color:#fff
}
.blog-hero h1{
    max-width:800px;
    margin:15px 0 30px;
    font-size:clamp(2.5rem,6vw,5rem);
    line-height:1
}
.blog-hero-small{
    padding-bottom:60px
}
.blog-hero-small h1{
    font-size:clamp(2.2rem,5vw,4rem)
}
.blog-hero-small p{
    max-width:700px;
    color:#d8e4e4
}
.blog-search{
    display:flex;
    max-width:650px;
    background:#fff;
    padding:6px;
    border-radius:6px
}
.blog-search input{
    flex:1;
    border:0;
    padding:12px 15px;
    min-width:0;
    outline:0
}
.blog-search button{
    border:0;
    border-radius:4px;
    background:#f26522;
    color:#fff;
    padding:0 25px;
    font-weight:700
}
.blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:60px;
    padding-top:70px;
    padding-bottom:100px
}
.blog-content>section+section{
    margin-top:70px
}
.blog-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #d7d4cc;
    margin-bottom:28px
}
.blog-section-head h2,.blog-sidebar h2,.blog-after h2{
    font-size:1.3rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin:0 0 15px
}
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px
}
.blog-card{
    background:#fff;
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 8px 28px rgba(13,39,39,.08);
    height:100%;
    transition:transform .25s,box-shadow .25s
}
.blog-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(13,39,39,.14)
}
.blog-card-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden
}
.blog-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s
}
.blog-card:hover .blog-card-image img{
    transform:scale(1.035)
}
.blog-card-body{
    padding:24px
}
.blog-card h2{
    font-size:1.35rem;
    line-height:1.25;
    margin:12px 0
}
.blog-card h2 a{
    color:#173333;
    text-decoration:none
}
.blog-card p{
    color:#667373;
    font-size:.95rem
}
.blog-category{
    color:#f26522;
    text-decoration:none;
    text-transform:uppercase;
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.1em
}
.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px 18px;
    color:#788383;
    font-size:.78rem
}
.blog-card-featured{
    display:grid;
    grid-template-columns:1.2fr 1fr
}
.blog-card-featured .blog-card-image{
    aspect-ratio:auto;
    min-height:360px
}
.blog-card-featured h2{
    font-size:clamp(1.7rem,3vw,2.6rem)
}
.blog-sidebar section{
    background:#fff;
    padding:25px;
    margin-bottom:24px
}
.blog-side-link,.blog-tax-link{
    display:flex;
    flex-direction:column;
    color:#173333;
    text-decoration:none;
    padding:13px 0;
    border-bottom:1px solid #eee
}
.blog-side-link span,.blog-tax-link span{
    color:#7c8585;
    font-size:.78rem
}
.blog-tax-link{
    flex-direction:row;
    justify-content:space-between
}
.blog-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px
}
.blog-tags a{
    background:#e7eeee;
    color:#1b6b6b;
    text-decoration:none;
    padding:7px 10px;
    font-size:.82rem;
    border-radius:3px
}
.blog-pagination{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:45px
}
.blog-pagination a{
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    background:#fff;
    color:#173333;
    text-decoration:none
}
.blog-pagination a.active{
    background:#1b6b6b;
    color:#fff
}
.blog-list-page{
    padding-top:70px;
    padding-bottom:100px
}
.blog-breadcrumb{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    font-size:.78rem;
    margin-bottom:30px
}
.blog-breadcrumb a{
    color:inherit
}
.blog-breadcrumb>*:not(:last-child)::after{
    content:' /';
    margin-left:8px
}
.blog-article-header{
    padding:165px 0 50px;
    background:#eef0ea
}
.blog-article-narrow{
    max-width:860px
}
.blog-article-header h1{
    font-size:clamp(2.3rem,5vw,4.7rem);
    line-height:1.04;
    margin:18px 0 20px
}
.blog-lead{
    font-size:1.2rem;
    color:#566464
}
.blog-feature-image{
    display:block;
    width:100%;
    height:auto;
    max-height:680px;
    object-fit:cover;
    margin:50px auto
}
.blog-share{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
    padding:20px 0;
    border-bottom:1px solid #ddd
}
.blog-share a,.blog-share button{
    border:1px solid #cdd3d0;
    background:#fff;
    color:#173333;
    text-decoration:none;
    padding:7px 10px;
    font-size:.8rem;
    cursor:pointer
}
.blog-prose{
    font-size:1.1rem;
    line-height:1.85;
    padding:45px 0
}
.blog-prose h2{
    font-size:2rem;
    margin:2em 0 .6em
}
.blog-prose h3{
    font-size:1.5rem;
    margin:1.7em 0 .5em
}
.blog-prose img{
    max-width:100%;
    height:auto
}
.blog-prose blockquote{
    border-left:4px solid #f26522;
    padding:15px 25px;
    background:#fff;
    font-size:1.25rem
}
.blog-article-tags{
    padding-bottom:35px
}
.blog-prev-next{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    border-top:1px solid #ddd;
    padding:35px 0
}
.blog-prev-next a{
    color:#173333;
    text-decoration:none;
    font-weight:700
}
.blog-prev-next a:last-child{
    text-align:right
}
.blog-prev-next small{
    display:block;
    color:#f26522;
    text-transform:uppercase
}
.blog-after{
    padding-top:70px;
    padding-bottom:100px
}
.blog-after-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:60px 0
}
.blog-after-columns section{
    background:#fff;
    padding:30px
}
.blog-after-columns a{
    display:block;
    color:#173333;
    text-decoration:none;
    padding:10px 0;
    border-bottom:1px solid #eee
}
.blog-local-history{
    margin-top:70px
}
@media(max-width:1100px){
    .blog-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .blog-layout{
        grid-template-columns:1fr
    }
    .blog-sidebar{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:20px
    }
    .blog-sidebar section{
        margin:0
    }
    .blog-content .blog-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
}
@media(max-width:700px){
    .blog-hero{
        padding:130px 0 55px
    }
    .blog-search button{
        padding:0 14px
    }
    .blog-layout{
        padding-top:45px;
        gap:40px
    }
    .blog-grid,.blog-content .blog-grid{
        grid-template-columns:1fr
    }
    .blog-card-featured{
        display:block
    }
    .blog-card-featured .blog-card-image{
        min-height:220px
    }
    .blog-sidebar{
        display:block
    }
    .blog-sidebar section{
        margin-bottom:18px
    }
    .blog-article-header{
        padding:125px 0 35px
    }
    .blog-feature-image{
        margin:25px auto
    }
    .blog-share b{
        width:100%
    }
    .blog-prev-next,.blog-after-columns{
        grid-template-columns:1fr
    }
    .blog-prev-next a:last-child{
        text-align:left
    }
    .blog-list-page{
        padding-top:45px
    }
    .blog-prose{
        font-size:1rem
    }
}
