/*==================================================
    ARTICLE PAGE
==================================================*/

#article-intro{
    padding-top:80px;
}

.article-intro{
    position:relative;
    overflow:hidden;
    background:#FFFDF9;
}

.article-intro .container{
    position:relative;
    z-index:2;
}

.article-intro-copy{
    max-width:860px;
    margin:0 auto;
    text-align:center;
}

.article-intro-copy .section-title{
    margin:20px 0 24px;
}

.article-intro-copy p{
    max-width:760px;
    margin:0 auto;
    color:var(--text-secondary,#4A403A);
    font-size:18px;
    line-height:1.85;
}

.article-intro-blob{
    position:absolute;
    pointer-events:none;
    opacity:.52;
    animation:articleBlobMorph 10s ease-in-out infinite;
}

.article-blob-one{
    width:390px;
    height:390px;
    left:-115px;
    top:-150px;
    background:#FFE2A2;
    border-radius:60% 40% 55% 45% / 45% 60% 40% 55%;
}

.article-blob-two{
    width:270px;
    height:270px;
    right:-70px;
    bottom:-95px;
    background:#FFD8C5;
    border-radius:45% 55% 38% 62% / 58% 42% 60% 40%;
    animation-delay:-3s;
}

@keyframes articleBlobMorph{
    0%,100%{
        border-radius:60% 40% 55% 45% / 45% 60% 40% 55%;
        transform:rotate(0deg) translateY(0);
    }
    50%{
        border-radius:42% 58% 34% 66% / 58% 35% 65% 42%;
        transform:rotate(5deg) translateY(-10px);
    }
}


/* FEATURED */

.article-featured-section{
    background:#FFF4E7;
}

.article-featured{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(330px,.88fr);
    gap:55px;
    align-items:center;
    max-width:1180px;
    margin:0 auto;
}

.article-featured-image{
    position:relative;
    display:block;
    overflow:hidden;
    aspect-ratio:16/10;
    border-radius:34px;
    background:#eee;
    box-shadow:0 22px 60px rgba(60,40,25,.08);
}

.article-featured-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .55s ease;
}

.article-featured-image:hover img{
    transform:scale(1.035);
}

.article-featured-badge{
    position:absolute;
    left:22px;
    top:22px;
    padding:9px 14px;
    border-radius:999px;
    background:#FFB100;
    color:#3A2B1E;
    font-size:11px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.article-featured-copy h2{
    margin:12px 0 22px;
    color:#2A201A;
    font-family:"Poppins",sans-serif;
    font-size:clamp(34px,4vw,54px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-.03em;
}

.article-featured-copy p{
    margin:0 0 26px;
    color:var(--text-secondary,#4A403A);
    font-size:17px;
    line-height:1.8;
}


/* COMMON */

.article-category{
    display:inline-block;
    color:#E15027;
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.article-read-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#E15027;
    font-weight:800;
    text-decoration:none;
}

.article-read-link i{
    transition:transform .25s ease;
}

.article-read-link:hover{
    color:#C84420;
}

.article-read-link:hover i{
    transform:translateX(4px);
}


/* ARTICLE GRID */

.article-list-section{
    background:#fff;
}

.article-list-section .section-heading{
    max-width:760px;
    margin-bottom:52px;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.article-card{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-width:0;
    border:1px solid rgba(225,80,39,.10);
    border-radius:28px;
    background:#FFFDFB;
    box-shadow:0 15px 45px rgba(60,40,25,.045);
    transition:transform .3s ease,box-shadow .3s ease;
}

.article-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(60,40,25,.085);
}

.article-card-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#eee;
}

.article-card-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

.article-card:hover .article-card-image img{
    transform:scale(1.045);
}

.article-card-body{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:28px;
}

.article-card h3{
    margin:10px 0 14px;
    font-family:"Poppins",sans-serif;
    font-size:22px;
    font-weight:750;
    line-height:1.3;
}

.article-card h3 a{
    color:#2A201A;
    text-decoration:none;
}

.article-card p{
    margin:0 0 24px;
    color:var(--text-secondary,#4A403A);
    line-height:1.75;
}

.article-card .article-read-link{
    margin-top:auto;
}

.article-all-wrap{
    display:flex;
    justify-content:center;
    margin-top:45px;
}


/* FAQ */

.article-faq-section{
    background:#FFF9F3;
}

.article-faq-layout{
    display:grid;
    grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);
    gap:70px;
    align-items:start;
}

.article-faq-heading{
    position:sticky;
    top:120px;
}

.article-faq-heading .section-title{
    margin:20px 0 22px;
}

.article-faq-heading > p{
    color:var(--text-secondary,#4A403A);
    line-height:1.8;
}

.article-faq-mascot{
    width:180px;
    display:block;
    margin:34px auto 0;
}

.article-accordion{
    display:grid;
    gap:12px;
}

.article-accordion .accordion-item{
    overflow:hidden;
    border:1px solid rgba(225,80,39,.10);
    border-radius:18px !important;
    background:#fff;
}

.article-accordion .accordion-button{
    padding:20px 22px;
    color:#2A201A;
    background:#fff;
    font-weight:750;
    box-shadow:none;
}

.article-accordion .accordion-button:not(.collapsed){
    color:#E15027;
    background:#FFF6EF;
    box-shadow:none;
}

.article-accordion .accordion-body{
    padding:4px 22px 22px;
    color:var(--text-secondary,#4A403A);
    line-height:1.75;
}


/* RESPONSIVE */

@media(max-width:991px){

    .article-featured,
    .article-faq-layout{
        grid-template-columns:1fr;
    }

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

    .article-faq-heading{
        position:static;
        max-width:700px;
    }

    .article-faq-mascot{
        display:none;
    }
}

@media(max-width:767px){

    #article-intro{
        padding-top:45px;
    }

    .article-intro-copy p{
        font-size:16px;
    }

    .article-featured{
        gap:30px;
    }

    .article-featured-image{
        border-radius:24px;
    }

    .article-featured-copy h2{
        font-size:34px;
    }

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

    .article-card{
        border-radius:23px;
    }

    .article-card-body{
        padding:24px 21px;
    }

    .article-blob-one{
        width:280px;
        height:280px;
        left:-120px;
    }

    .article-blob-two{
        width:200px;
        height:200px;
        right:-100px;
    }
}

@media(prefers-reduced-motion:reduce){
    .article-intro-blob{
        animation:none;
    }

    .article-card,
    .article-card-image img,
    .article-featured-image img{
        transition:none;
    }
}
