/* ======================================================
   FemSoBabs Limited Blog Template
   article.css
====================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ====================================
        Header
==================================== */

/* Top header used by article pages */
.main-header{
    width:100%;
    background:linear-gradient(135deg, #0a3d91 0%, #1e5bb8 100%);
    color:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.15);
    position:sticky;
    top:0;
    z-index:999;
}

.main-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:16px 0;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.logo-area .logo{
    height:68px;
    width:auto;
    display:block;
}

.brand-copy{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.brand-copy strong{
    font-size:1rem;
    font-weight:700;
    color:#fff;
}

.brand-copy span{
    font-size:0.78rem;
    color:#e7ecf5;
}

.nav-links{
    display:flex;
    gap:20px;
    align-items:center;
}

.nav-links a{
    color:white;
    font-weight:600;
    transition:.3s;
    font-size:0.95rem;
}

.nav-links a:hover{
    color:#ffd700;
}

.menu-btn{
    display:none;
}

/* ====================================
        Hero
==================================== */

.hero{
    min-height:650px;
    background:
        linear-gradient(#0c326cc7, #194a93d1),
        url("../images/890EA5A2.png") no-repeat center center / contain;
    background-color:#0a2a54;
    display:flex;
    align-items:center;
    color:white;
}

.hero-content{

    max-width:850px;

}

.category{

    display:inline-block;

    background:#d4af37;

    color:white;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:20px;

}

.breadcrumb{

    margin-bottom:25px;
    font-size:15px;

}

.breadcrumb a{

    color:white;

}

.breadcrumb span{

    margin:0 8px;

    color:#d4af37;

}

.hero h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    opacity:.95;

    margin-bottom:25px;

}

.hero-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    padding:12px 22px;
    border-radius:999px;
    background:#d4af37;
    color:#fff;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:.3s;
}

.hero-cta:hover{
    background:#ffd84d;
    color:#fff;
    transform:translateY(-2px);
}

.meta{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    font-size:15px;

}

/* ====================================
        Main Layout
==================================== */

.content{

    padding:80px 0;

}

.grid{

    display:grid;

    grid-template-columns:

    2fr
    340px;

    gap:40px;

}

/* ====================================
        Article Card
==================================== */

.article{

    background:white;

    border-radius:20px;

    padding:50px;

    box-shadow:

    0 10px 40px rgba(0,0,0,.08);

}

.article h2{

    color:#072b69;

    margin-top:45px;

    margin-bottom:15px;

    font-size:34px;

}

.article h3{

    color:#072b69;

    margin-bottom:15px;

}

.article p{

    margin-bottom:20px;

    color:#555;

    font-size:18px;

}

.article img{

    border-radius:15px;

    margin:35px 0;

}

/* ====================================
        Highlight Box
==================================== */

.tip{

    background:#eef6ff;

    border-left:6px solid #072b69;

    padding:30px;

    border-radius:10px;

    margin:45px 0;

}

.tip h3{

    color:#072b69;

}

/* ====================================
        Sidebar
==================================== */

.sidebar{

    position:sticky;

    top:120px;

}

.widget{

    background:white;

    border-radius:15px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.06);

}

.widget h3{

    color:#072b69;

    margin-bottom:20px;

}

.widget ul li{

    margin-bottom:15px;

}

.widget ul li a{

    color:#333;

    transition:.3s;

}

.widget ul li a:hover{

    color:#d4af37;

}

/* ====================================
        Table Of Contents
==================================== */

.toc li{

    margin-bottom:15px;

}

.toc a{

    color:#072b69;

    font-weight:500;

}

.toc a:hover{

    color:#d4af37;

}

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

.share-box{

    margin-top:60px;
    text-align:center;

}

.share-box h3{

    margin-bottom:25px;
    color:#072b69;

}

.share-buttons{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

.share-buttons a{

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

    width:55px;
    height:55px;

    border-radius:50%;

    background:#072b69;

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.share-buttons a:hover{

    background:#d4af37;
    transform:translateY(-6px);

}

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

.cta{

    margin:70px 0;

    background:

    linear-gradient(
    135deg,
    #072b69,
    #0b4da3);

    color:#fff;

    padding:60px;

    border-radius:20px;

    text-align:center;

}

.cta h2{

    color:#fff;

    margin-bottom:20px;

}

.cta p{

    color:#f3f3f3;

    max-width:700px;

    margin:auto;

}

.cta-btn{

    display:inline-block;

    margin-top:30px;

    background:#d4af37;

    color:#fff;

    padding:16px 38px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.cta-btn:hover{

    background:#fff;

    color:#072b69;

}

/* ====================================
   AUTHOR BOX
==================================== */

.author-box{

    display:flex;

    gap:25px;

    margin-top:70px;

    padding:35px;

    border-radius:18px;

    background:#f8fbff;

}

.author-box img{

    width:90px;

    height:90px;

    border-radius:50%;

}

.author-box h4{

    color:#072b69;

    margin-bottom:10px;

}

/* ====================================
   RELATED ARTICLES
==================================== */

.related{

    margin-top:80px;

}

.related h2{

    margin-bottom:35px;

}

.related-grid{

    display:grid;

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

    gap:30px;

}

.related-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.related-card:hover{

    transform:translateY(-10px);

}

.related-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.related-content{

    padding:25px;

}

.related-content h3{

    color:#072b69;

    margin-bottom:15px;

}

.related-content p{

    font-size:15px;

}

.related-content a{

    display:inline-block;

    margin-top:20px;

    color:#072b69;

    font-weight:600;

}

.related-content a:hover{

    color:#d4af37;

}

/* ====================================
   NEWSLETTER
==================================== */

.newsletter{

    margin:90px 0;

    background:#fff;

    border-radius:20px;

    padding:55px;

    text-align:center;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

}

.newsletter h2{

    color:#072b69;

    margin-bottom:15px;

}

.newsletter form{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:30px;

}

.newsletter input{

    width:380px;

    max-width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:40px;

    outline:none;

}

.newsletter button{

    border:none;

    background:#072b69;

    color:#fff;

    padding:18px 35px;

    border-radius:40px;

    cursor:pointer;

    transition:.35s;

}

.newsletter button:hover{

    background:#d4af37;

}

/* ====================================
   FOOTER
==================================== */

.site-footer, footer{
    margin-top:100px;
    background:#041b44;
    color:#ddd;
    padding:60px 0 25px;
}

.site-footer .footer-grid,
.footer-grid{

    display:grid;

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

    gap:40px;

}

.footer-grid h3{

    color:#fff;

    margin-bottom:20px;

}

.footer-grid ul li{

    margin-bottom:12px;

}

.footer-grid ul li a{

    color:#ddd;

}

.footer-grid ul li a:hover{

    color:#d4af37;

}

.footer-bottom{

    margin-top:40px;
    padding-top:20px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align:center;
    font-size:14px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:40px;

    padding-top:25px;

    text-align:center;

}

/* ====================================
   SCROLL TO TOP
==================================== */

#scrollTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#072b69;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.35s;

}

#scrollTop:hover{

    background:#d4af37;

}

/* ====================================
   READING PROGRESS BAR
==================================== */

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:#d4af37;

    z-index:99999;

}

/* ====================================
   ANIMATIONS
==================================== */

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

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

.hero{
    min-height:680px;
    position:relative;
    overflow:hidden;
    padding:0;
}

.hero .overlay{
    min-height:680px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg, rgba(3,20,45,.84), rgba(7,43,105,.84));
    padding:110px 0 70px;
}

.navbar{
    position:relative;
    z-index:2;
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.main-content{
    padding:70px 0 90px;
    background:linear-gradient(180deg, #f5f7fb 0%, #eef4fb 100%);
}

.content-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.8fr) minmax(240px, 280px);
    gap:28px;
    align-items:start;
}

.article-content{
    background:#fff;
    border-radius:24px;
    padding:40px 44px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    max-width:100%;
}

.article-content h2,
.article-content h3{
    color:#072b69;
}

.article-content h2{
    margin:30px 0 12px;
    font-size:30px;
}

.article-content h3{
    margin:20px 0 10px;
    font-size:20px;
}

.article-content p,
.article-content li{
    color:#475569;
    font-size:17px;
    line-height:1.85;
}

.article-content ul{
    padding-left:20px;
    margin:12px 0 18px;
}

.article-content li{
    margin-bottom:10px;
}

.featured-image{
    margin-bottom:28px;
}

.featured-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.intro{
    font-size:1.06rem;
    line-height:1.9;
    color:#475569;
    margin-bottom:28px;
}

.category-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#d4af37;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-weight:600;
    margin-bottom:24px;
}

.article-meta{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:20px;
    color:#e7ecf5;
    font-size:0.95rem;
}

.article-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-description{
    font-size:1.05rem;
    max-width:760px;
    color:#f2f5f9;
    margin-bottom:0;
}

.article-section{
    padding:28px 0 10px;
    border-top:1px solid #e8edf5;
    margin-top:24px;
    scroll-margin-top:130px;
}

.article-section:first-of-type{
    border-top:none;
    margin-top:0;
    padding-top:0;
}

.section-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#eef4ff;
    color:#072b69;
    font-weight:700;
    margin-bottom:16px;
}

.tip-box,
.solution-box,
.warning-box,
.continue-note{
    border-radius:16px;
    padding:22px 24px;
    margin:24px 0 10px;
}

.tip-box{
    background:#eef6ff;
    border-left:5px solid #072b69;
}

.solution-box{
    background:#f1fff4;
    border-left:5px solid #2f9e44;
}

.warning-box{
    background:#fff6e8;
    border-left:5px solid #f08c00;
}

.continue-note{
    background:#f8fbff;
    border:1px dashed #bcd7ff;
    text-align:center;
}

.continue-note h3{
    margin-top:0;
}

.sidebar{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.sidebar-card{
    background:#fff;
    border-radius:18px;
    padding:18px 20px;
    box-shadow:0 16px 36px rgba(0,0,0,.06);
}

.sticky-toc{
    position:sticky;
    top:110px;
    font-size:0.95rem;
}

.sidebar-card h3{
    color:#072b69;
    margin-bottom:12px;
    font-size:1rem;
}

.sidebar-card ul{
    padding-left:0;
    list-style:none;
}

.sidebar-card li{
    margin-bottom:8px;
}

.sidebar-card a{
    color:#334155;
}

.sidebar-card a:hover,
.sidebar-card a.active{
    color:#d4af37;
}

.sidebar-card a.active{
    font-weight:600;
}

.share-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.share-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:50%;
    background:#072b69;
    color:#fff;
    transition:.3s;
}

.share-btn:hover{
    background:#d4af37;
    transform:translateY(-4px);
}

.toc-mobile{
    display:none;
    background:#f8fbff;
    border:1px solid #e4eefc;
    border-radius:16px;
    padding:20px 22px;
    margin-bottom:24px;
}

.toc-mobile h3{
    color:#072b69;
    margin-bottom:12px;
}

.toc-mobile ul{
    padding-left:18px;
}

.article-content .section{
    margin:24px 0 28px;
}

.article-content .section h2,
.article-content .section h3,
.article-content .section h4{
    color:#072b69;
    margin-bottom:12px;
}

.article-content .article-intro,
.article-content .intro,
.article-content .lead{
    font-size:1.04rem;
    color:#475569;
    margin-bottom:24px;
}

.article-content .highlight,
.article-content .tip,
.article-content .solution-box,
.article-content .warning-box{
    border-radius:16px;
    padding:20px 22px;
    margin:24px 0;
}

.article-content .highlight,
.article-content .tip{
    background:#eef6ff;
    border-left:5px solid #072b69;
}

.article-content .solution-box{
    background:#f1fff4;
    border-left:5px solid #2f9e44;
}

.article-content .warning-box{
    background:#fff6e8;
    border-left:5px solid #f08c00;
}

.article-content .cta{
    margin:32px 0 24px;
    padding:28px;
    border-radius:18px;
    background:linear-gradient(135deg, #072b69, #0b4da3);
    color:#fff;
    text-align:center;
}

.article-content .cta a,
.article-content .cta-btn{
    display:inline-block;
    margin-top:12px;
    padding:12px 20px;
    border-radius:999px;
    background:#d4af37;
    color:#fff;
    font-weight:600;
}

.article-content .article-image,
.article-content img{
    display:block;
    max-width:100%;
    border-radius:16px;
    margin:24px 0;
}

.article-content figure{
    margin:24px 0;
}

.article-content figcaption{
    color:#64748b;
    font-size:0.94rem;
    margin-top:8px;
}

.article-content .support-icons,
.article-content .whatsapp,
.article-content .x-support{
    display:none;
}

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

@media(max-width:992px){

.grid{

grid-template-columns:1fr;

}

.sidebar{

position:relative;
top:0;

}

.hero{

height:520px;

}

.hero h1{

font-size:40px;

}

.article{

padding:35px;

}

.cta{

padding:40px 25px;

}

}

@media(max-width:768px){

.main-header .container{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 0;
}

.nav-links{

display:none;

}

.btn{

display:inline-block;

padding:16px 35px;

background:#072b69;

color:white;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#d4af37;

transform:translateY(-3px);

}

.menu-btn{

display:block;

font-size:28px;

color:#fff;

cursor:pointer;

}

.hero{

height:460px;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:17px;

}

.meta{

gap:10px;

font-size:14px;

}

.article{

padding:25px;

}

.author-box{

flex-direction:column;
text-align:center;

}

.newsletter{

padding:35px 20px;

}

.newsletter input{

width:100%;

}

.newsletter button{

width:100%;

}

.footer-grid{

text-align:center;

}

}

@media(max-width:480px){

.hero h1{

font-size:28px;

}

.category{

font-size:13px;

}

.article h2{

font-size:28px;

}

.share-buttons{

gap:10px;

}

.related-grid{

grid-template-columns:1fr;

}

}