/*=========================================================
 AYIRHUBHE CONSULTING
 PREMIUM ARTICLE PAGE
 Inspired by Luxury Footer Design System
=========================================================*/

/*==========================================
ROOT VARIABLES
==========================================*/

:root{

    --gold:#D4A04A;
    --gold-light:#E5C37A;
    --gold-dark:#B98938;

    --white:#ffffff;
    --off-white:#eeeeec;

    --text:#222;
    --text-light:#666;

    --border:rgba(212,160,74,.15);

    --shadow:
    0 18px 50px rgba(0,0,0,.06);

    --shadow-hover:
    0 28px 70px rgba(0,0,0,.10);

    --radius:25px;

    --transition:.35s ease;

}

/*==========================================
GLOBAL
==========================================*/

.ay-article{

    background:var(--off-white);

    color:var(--text);

    overflow:hidden;

    position:relative;

    font-family:'Montserrat',sans-serif;

}

.ay-article *{
    box-sizing:border-box;
}

/* Luxury background glow */

.ay-article::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(212,160,74,.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(0,0,0,.04),
    transparent 55%);

    pointer-events:none;

}

/*==========================================
EDGE TO EDGE CONTAINER
==========================================*/

.article-container{

    width:100%;

    padding:0 6%;

    margin:auto;

    position:relative;

    z-index:2;

}

/*==========================================
READING PROGRESS
==========================================*/

.reading-progress{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(15px);

    z-index:9999;

}

#readingBar{

    width:0;

    height:100%;

    display:block;

    background:

    linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light));

    transition:width .12s linear;

}

/*==========================================
HERO
==========================================*/

.article-hero{

    position:relative;

    min-height:760px;

    display:flex;

    align-items:flex-end;

    padding:220px 0 110px;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.article-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    rgba(0,0,0,.20),
    rgba(0,0,0,.78));

}

/* subtle gold lighting */

.article-overlay::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(212,160,74,.16),
    transparent 45%);

}

.article-hero .article-container{

    position:relative;

    z-index:3;

}

/*==========================================
BREADCRUMB
==========================================*/

.article-breadcrumb{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:32px;

    font-size:.9rem;

}

.article-breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:var(--transition);

}

.article-breadcrumb a:hover{

    color:var(--gold-light);

}

.article-breadcrumb span{

    color:rgba(255,255,255,.75);

}

/*==========================================
CATEGORY
==========================================*/

.article-category{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    margin-bottom:32px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.20);

    color:#fff;

    text-transform:uppercase;

    letter-spacing:.2em;

    font-size:.78rem;

    font-weight:700;

}

/*==========================================
TITLE
==========================================*/

.article-title{

    max-width:980px;

    margin:0 0 30px;

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3.4rem,6vw,5.7rem);

    line-height:1.05;

    font-weight:600;

}

/*==========================================
INTRO
==========================================*/

.article-intro{

    max-width:820px;

    margin-bottom:50px;

    color:rgba(255,255,255,.92);

    font-size:1.22rem;

    line-height:1.9;

}

/*==========================================
META
==========================================*/

.article-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.meta-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

}

.meta-item svg{

    width:18px;

    height:18px;

    stroke:currentColor;

    fill:none;

    stroke-width:2;

}

/*==========================================
ARTICLE SECTION
==========================================*/

.article-layout{

    position:relative;

    padding:110px 0;

}

/*==========================================
MAIN GRID
==========================================*/

.article-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:45px;

    align-items:start;

}

/* Floating luxury cards */

.article-sidebar,

.article-content{

    background:#fff;

    border-radius:25px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

    transition:var(--transition);

}

/* Gold glow */

.article-sidebar::before,

.article-content::before{

    content:"";

    position:absolute;

    top:-90px;

    right:-90px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(212,160,74,.10),
    transparent 70%);

}

/* Hover */

.article-sidebar:hover,

.article-content:hover{

    transform:translateY(-5px);

    border-color:var(--gold);

    box-shadow:var(--shadow-hover);

}

.article-sidebar{

    padding:35px;

    position:sticky;

    top:120px;

}

.article-content{

    padding:65px;

}



/*=========================================================
PART 2
LUXURY SIDEBAR
=========================================================*/

/*==========================================
SIDEBAR
==========================================*/

.article-sidebar{

    position:sticky;

    top:120px;

    display:flex;

    flex-direction:column;

    gap:32px;

}

/*==========================================
SIDEBAR CARD
==========================================*/

.sidebar-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border:1px solid var(--border);

    border-radius:25px;

    padding:34px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

/* Gold Glow */

.sidebar-card::before{

    content:"";

    position:absolute;

    top:-90px;

    right:-90px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(212,160,74,.10),
    transparent 70%);

}

.sidebar-card:hover{

    transform:translateY(-6px);

    border-color:var(--gold);

    box-shadow:var(--shadow-hover);

}

/*==========================================
HEADINGS
==========================================*/

.sidebar-heading{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:28px;

    position:relative;

    z-index:2;

}

.heading-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,160,74,.10);

    color:var(--gold);

    font-size:1.15rem;

}

.sidebar-heading h3{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:1.7rem;

    font-weight:600;

    color:var(--text);

}

/*==========================================
TABLE OF CONTENTS
==========================================*/

.article-toc{

    display:flex;

    flex-direction:column;

    gap:12px;

    position:relative;

    z-index:2;

}

.article-toc a{

    display:flex;

    align-items:center;

    padding:14px 18px;

    border-radius:16px;

    color:var(--text-light);

    text-decoration:none;

    transition:var(--transition);

    font-size:.96rem;

    line-height:1.6;

}

.article-toc a:hover{

    background:rgba(212,160,74,.08);

    color:var(--gold);

    transform:translateX(8px);

}

.article-toc a.active{

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#fff;

    font-weight:600;

    box-shadow:0 10px 25px rgba(212,160,74,.30);

}

/*==========================================
SHARE BUTTONS
==========================================*/

.share-buttons{

    display:grid;

    gap:14px;

    position:relative;

    z-index:2;

}

.share-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:15px 20px;

    border-radius:18px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.share-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.share-btn.linkedin{
    background:#0077B5;
}

.share-btn.facebook{
    background:#1877F2;
}

.share-btn.whatsapp{
    background:#25D366;
}

.share-btn.email{
    background:#333;
}

/*==========================================
ARTICLE STATS
==========================================*/

.article-stats{

    list-style:none;

    margin:0;

    padding:0;

    position:relative;

    z-index:2;

}

.article-stats li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid rgba(212,160,74,.12);

}

.article-stats li:last-child{

    border-bottom:none;

}

.article-stats strong{

    color:var(--text);

    font-weight:600;

}

.article-stats span{

    color:var(--gold);

    font-weight:700;

}

/*==========================================
CONSULTATION CARD
==========================================*/

.consultation-card{

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    border:none;

    color:#fff;

}

.consultation-card::after{

    content:"";

    position:absolute;

    top:-80px;

    right:-80px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(255,255,255,.18),
    transparent 70%);

}

.consultation-card>*{

    position:relative;

    z-index:2;

}

.consultation-card h3{

    margin:0 0 18px;

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    font-weight:600;

    color:#fff;

}

.consultation-card p{

    margin-bottom:30px;

    color:rgba(255,255,255,.94);

    line-height:1.9;

}

.sidebar-cta{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    padding:16px 22px;

    border-radius:50px;

    background:#fff;

    color:var(--gold-dark);

    text-decoration:none;

    font-weight:700;

    transition:var(--transition);

}

.sidebar-cta:hover{

    transform:translateY(-4px);

    background:#f8f8f8;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/*==========================================
BACK BUTTON
==========================================*/

.back-resources{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 22px;

    border-radius:50px;

    background:#fff;

    border:1px solid var(--border);

    color:var(--text);

    text-decoration:none;

    font-weight:600;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.back-resources:hover{

    transform:translateY(-4px);

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    border-color:var(--gold);

    color:#fff;

    box-shadow:var(--shadow-hover);

}


/*=========================================================
PART 3
LUXURY ARTICLE CONTENT
=========================================================*/

/*==========================================
MAIN ARTICLE
==========================================*/

.article-content{

    position:relative;

    overflow:hidden;

    min-width:0;

    background:#fff;

    border:1px solid var(--border);

    border-radius:25px;

    padding:75px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

/* Gold Glow */

.article-content::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(212,160,74,.10),
    transparent 72%);

    pointer-events:none;

}

.article-content:hover{

    border-color:var(--gold);

    box-shadow:var(--shadow-hover);

}

/*==========================================
TYPOGRAPHY
==========================================*/

.article-content>*:first-child{

    margin-top:0;

}

.article-content>*:last-child{

    margin-bottom:0;

}

.article-content p{

    margin:0 0 30px;

    font-size:1.1rem;

    line-height:2;

    color:var(--text-light);

}

.article-content strong{

    color:var(--text);

    font-weight:700;

}

.article-content em{

    color:var(--gold-dark);

    font-style:italic;

}

/*==========================================
HEADINGS
==========================================*/

.article-content h2{

    margin:75px 0 30px;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(2.4rem,4vw,3.3rem);

    font-weight:600;

    line-height:1.15;

    color:var(--text);

}

.article-content h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin-top:18px;

    border-radius:50px;

    background:

    linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light));

}

.article-content h3{

    margin:55px 0 22px;

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    font-weight:600;

    color:var(--text);

}

.article-content h4{

    margin:40px 0 18px;

    font-family:'Cormorant Garamond',serif;

    font-size:1.6rem;

    font-weight:600;

}

.article-content h5{

    margin:32px 0 16px;

    font-size:1.2rem;

    font-weight:700;

}

.article-content h6{

    margin:28px 0 15px;

    text-transform:uppercase;

    letter-spacing:.15em;

    color:var(--gold-dark);

    font-size:.9rem;

}

/*==========================================
LINKS
==========================================*/

.article-content a{

    color:var(--gold-dark);

    text-decoration:none;

    font-weight:600;

    border-bottom:1px solid transparent;

    transition:var(--transition);

}

.article-content a:hover{

    color:var(--gold);

    border-color:var(--gold);

}

/*==========================================
LISTS
==========================================*/

.article-content ul,

.article-content ol{

    margin:30px 0 40px 28px;

}

.article-content li{

    margin-bottom:15px;

    color:var(--text-light);

    line-height:1.9;

}

.article-content li::marker{

    color:var(--gold);

    font-weight:700;

}

/*==========================================
BLOCKQUOTE
==========================================*/

.article-content blockquote{

    position:relative;

    margin:60px 0;

    padding:45px 45px 45px 55px;

    background:#faf8f4;

    border-radius:25px;

    border-left:5px solid var(--gold);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.article-content blockquote::before{

    content:"“";

    position:absolute;

    top:-10px;

    left:18px;

    font-family:'Cormorant Garamond',serif;

    font-size:7rem;

    color:rgba(212,160,74,.15);

}

.article-content blockquote p,

.article-content blockquote{

    font-family:'Cormorant Garamond',serif;

    font-size:1.45rem;

    font-style:italic;

    line-height:1.7;

    color:var(--text);

}

/*==========================================
IMAGES
==========================================*/

.article-content img{

    display:block;

    width:100%;

    margin:60px auto;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:var(--transition);

}

.article-content img:hover{

    transform:scale(1.02);

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

/*==========================================
FIGURE
==========================================*/

.article-content figure{

    margin:60px 0;

}

.article-content figcaption{

    margin-top:18px;

    text-align:center;

    font-size:.9rem;

    color:#888;

    font-style:italic;

}

/*==========================================
TABLES
==========================================*/

.article-content table{

    width:100%;

    border-collapse:collapse;

    margin:50px 0;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.article-content th{

    background:

    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#fff;

    padding:20px;

    text-align:left;

}

.article-content td{

    padding:18px 20px;

    border-bottom:1px solid rgba(212,160,74,.12);

}

.article-content tr:nth-child(even){

    background:#fafafa;

}

/*==========================================
CODE
==========================================*/

.article-content pre{

    margin:50px 0;

    padding:30px;

    overflow:auto;

    border-radius:20px;

    background:#1f1f1f;

    color:#fff;

}

.article-content code{

    font-family:Consolas,monospace;

}

.article-content :not(pre)>code{

    background:#f5f3ef;

    color:var(--gold-dark);

    padding:4px 9px;

    border-radius:8px;

}

/*==========================================
HR
==========================================*/

.article-content hr{

    border:none;

    height:1px;

    margin:80px 0;

    background:

    linear-gradient(
    90deg,
    transparent,
    rgba(212,160,74,.45),
    transparent);

}

/*==========================================
TAGS
==========================================*/

.article-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:70px;

}

.article-tags span{

    padding:12px 22px;

    border-radius:50px;

    background:#f6f6f4;

    border:1px solid rgba(212,160,74,.12);

    color:var(--text);

    font-size:.9rem;

    transition:var(--transition);

}

.article-tags span:hover{

    background:

    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    border-color:var(--gold);

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================================
PART 4
LUXURY AUTHOR • RELATED ARTICLES • CTA
=========================================================*/

/*==========================================
SECTION HEADING
==========================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    margin-bottom:15px;

    color:var(--gold);

    letter-spacing:.25em;

    text-transform:uppercase;

    font-size:.78rem;

    font-weight:700;

}

.section-heading h2{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:600;

    color:var(--text);

}

/*==========================================
RELATED ARTICLES
==========================================*/

.related-articles{

    position:relative;

    overflow:hidden;

    padding:130px 0;

    background:
    url("https://ayirhubhe.com/wp-content/uploads/2026/07/pexels-jakubzerdzicki-16139628-scaled.jpg")
    center center/cover
    no-repeat;

}



.related-articles .article-container{

    position:relative;

    z-index:2;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.related-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.55);

    border-radius:28px;

    box-shadow:0 18px 50px rgba(0,0,0,.10);

    transition:var(--transition);

}

.related-card::before{

    content:"";

    position:absolute;

    top:-90px;

    right:-90px;

    width:240px;

    height:240px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(176,141,87,.12),
    transparent 70%);

}

.related-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 30px 70px rgba(0,0,0,.16);

}

.related-card a{

    display:block;

    color:inherit;

    text-decoration:none;

}

.related-image{

    height:260px;

    overflow:hidden;

}

.related-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s;

}

.related-card:hover img{

    transform:scale(1.08);

}

.related-content{

    position:relative;

    z-index:2;

    padding:35px;

}

.related-date{

    display:inline-block;

    margin-bottom:16px;

    color:var(--gold);

    font-size:.82rem;

    letter-spacing:.15em;

    text-transform:uppercase;

    font-weight:700;

}

.related-content h3{

    margin:0 0 16px;

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    font-weight:600;

    color:var(--text);

}

.related-content p{

    margin-bottom:25px;

    line-height:1.9;

    color:var(--text-light);

}

.read-more{

    color:var(--gold);

    font-weight:700;

}

.read-more:hover{

    color:var(--gold-dark);

}

/*==========================================
ARTICLE NAVIGATION
==========================================*/

.article-navigation{

    padding:90px 0;

    background:var(--off-white);

}

.navigation-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.previous-article a,

.next-article a{

    display:block;

    padding:35px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:25px;

    box-shadow:var(--shadow);

    text-decoration:none;

    transition:var(--transition);

}

.previous-article a:hover,

.next-article a:hover{

    transform:translateY(-6px);

    border-color:var(--gold);

    box-shadow:var(--shadow-hover);

}

.previous-article span,

.next-article span{

    display:block;

    margin-bottom:14px;

    color:var(--gold);

    font-size:.8rem;

    text-transform:uppercase;

    letter-spacing:.18em;

    font-weight:700;

}

.previous-article strong,

.next-article strong{

    font-family:'Cormorant Garamond',serif;

    font-size:1.7rem;

    font-weight:600;

    color:var(--text);

}

/*==========================================
NEWSLETTER CTA
==========================================*/

.article-newsletter{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    text-align:center;

    color:#fff;

    background:#111;

}

/* Background Image */

.newsletter-background{

    position:absolute;

    inset:0;

    background:
    url("https://ayirhubhe.com/wp-content/uploads/2026/07/pexels-pavel-danilyuk-7658352-scaled.jpg")
    center center/cover
    no-repeat;

    transform:scale(1.08);

}

/* Dark Overlay */

.newsletter-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(20,20,20,.82),
    rgba(10,10,10,.72)
    );

}

/* Luxury Gold Glow */

.newsletter-pattern{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
    circle at top left,
    rgba(176,141,87,.35),
    transparent 35%
    ),

    radial-gradient(
    circle at bottom right,
    rgba(176,141,87,.28),
    transparent 45%
    ),

    linear-gradient(
    rgba(255,255,255,.04),
    rgba(255,255,255,0)
    );

    mix-blend-mode:screen;

    pointer-events:none;

}

.article-newsletter .article-container{

    position:relative;

    z-index:5;

}

.newsletter-label{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

    letter-spacing:.25em;

    text-transform:uppercase;

    font-size:.78rem;

    font-weight:700;

}

.article-newsletter h2{

    max-width:900px;

    margin:0 auto 25px;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3rem,6vw,5rem);

    font-weight:600;

    line-height:1.1;

    color:#fff;

    text-shadow:0 8px 30px rgba(0,0,0,.45);

}

.article-newsletter p{

    max-width:760px;

    margin:0 auto 45px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    text-shadow:0 3px 15px rgba(0,0,0,.45);

}

.newsletter-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.primary-button,

.secondary-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:var(--transition);

}

.primary-button{

    background:#fff;

    color:var(--gold-dark);

}

.primary-button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.secondary-button{

    border:1px solid rgba(255,255,255,.35);

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    color:#fff;

}

.secondary-button:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

}




/*=========================================================
RESPONSIVE
=========================================================*/

/*==========================================
LARGE TABLETS
==========================================*/

@media (max-width:1100px){

.article-container{

    padding:0 40px;

}

.article-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.article-sidebar{

    position:relative;

    top:auto;

    order:2;

}

.article-content{

    order:1;

    padding:60px;

}

.navigation-grid{

    grid-template-columns:1fr;

}

.related-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*==========================================
TABLETS
==========================================*/

@media (max-width:900px){

.article-hero{

    min-height:650px;

    padding:180px 0 90px;

}

.article-title{

    font-size:clamp(2.8rem,7vw,4rem);

}

.article-intro{

    font-size:1.08rem;

}

.article-author-box{

    flex-direction:column;

    text-align:center;

    gap:25px;

}

.newsletter-buttons{

    flex-direction:column;

    align-items:center;

}

.primary-button,

.secondary-button{

    width:100%;

    max-width:420px;

}

.related-grid{

    grid-template-columns:1fr;

}

}

/*==========================================
MOBILE
==========================================*/

@media (max-width:768px){

.article-container{

    padding:0 20px;

}

.article-layout{

    padding:70px 0;

}

.article-hero{

    min-height:560px;

    padding:150px 0 70px;

}

.article-breadcrumb{

    gap:8px;

    font-size:.82rem;

}

.article-category{

    font-size:.72rem;

    padding:10px 18px;

}

.article-title{

    font-size:2.4rem;

    line-height:1.15;

}

.article-intro{

    font-size:1rem;

    line-height:1.8;

}

.article-meta{

    gap:12px;

}

.meta-item{

    width:100%;

    justify-content:flex-start;

}

.article-content{

    padding:35px 28px;

}

.article-content h2{

    font-size:2.2rem;

}

.article-content h3{

    font-size:1.8rem;

}

.article-content h4{

    font-size:1.45rem;

}

.article-content blockquote{

    padding:35px 28px 35px 38px;

}

.article-content blockquote::before{

    font-size:5rem;

}

.article-author-box{

    padding:35px;

}

.related-content{

    padding:28px;

}

.article-newsletter{

    padding:90px 0;

}

.article-newsletter h2{

    font-size:2.5rem;

}

.article-newsletter p{

    font-size:1rem;

}

}

/*==========================================
SMALL PHONES
==========================================*/

@media (max-width:480px){

.article-container{

    padding:0 18px;

}

.article-hero{

    min-height:500px;

    padding:135px 0 60px;

}

.article-title{

    font-size:2rem;

}

.article-intro{

    font-size:.96rem;

}

.article-content{

    padding:28px 22px;

    border-radius:20px;

}

.article-content h2{

    font-size:1.9rem;

}

.article-content h3{

    font-size:1.55rem;

}

.article-content h4{

    font-size:1.3rem;

}

.article-content table{

    display:block;

    overflow-x:auto;

}

.article-content img{

    border-radius:18px;

}

.article-tags{

    gap:10px;

}

.article-tags span{

    font-size:.8rem;

    padding:10px 16px;

}

.author-avatar img{

    width:100px;

    height:100px;

}

.article-newsletter{

    padding:70px 0;

}

.article-newsletter h2{

    font-size:2rem;

}

.primary-button,

.secondary-button{

    padding:16px 26px;

}

}

/*=========================================================
UTILITY CLASSES
=========================================================*/

.sidebar-scrolled{

    transition:var(--transition);

}

/*==========================================
BACK TO TOP
==========================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:

    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-dark));

    color:#fff;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:9999;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.back-to-top::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(255,255,255,.18),
    transparent 70%);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-6px) scale(1.05);

    box-shadow:0 25px 55px rgba(0,0,0,.25);

}

.back-to-top:active{

    transform:scale(.96);

}

/*==========================================
END OF ARTICLE.CSS
==========================================*/
