/*====================================================
BLOG DETAILS - PART 1
====================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#090909;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/*==============================
VARIABLES
==============================*/

:root{

    --primary:#D4AF37;
    --white:#ffffff;
    --text:#d2d2d2;
    --border:rgba(255,255,255,.08);
    --transition:.35s ease;

}

/*==============================
CONTAINERS
==============================*/

.container{

    width:min(1320px,92%);
    margin:auto;

}

.container-small{

    width:min(980px,92%);
    margin:auto;

}

.container-reading{

    width:min(820px,92%);
    margin:auto;

}

/*====================================================
HEADER
====================================================*/

.bd-header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:82px;

    background:rgba(9,9,9,.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:999;

}

.bd-header .container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*==============================
LOGO
==============================*/

.logo{

    font-size:34px;

    font-family:'Cormorant Garamond',serif;

    color:var(--primary);

    font-weight:700;

}

/*==============================
MENU
==============================*/

.bd-header nav ul{

    display:flex;

    gap:35px;

}

.bd-header nav ul li a{

    color:#d6d6d6;

    font-size:15px;

    transition:var(--transition);

    position:relative;

}

.bd-header nav ul li a:hover{

    color:var(--primary);

}

.bd-header nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.bd-header nav ul li a:hover::after{

    width:100%;

}

.bd-header nav ul li a.active{

    color:var(--primary);

}

.bd-header nav ul li a.active::after{

    width:100%;

}

/*====================================================
HERO
====================================================*/

.article-hero{

    padding:170px 0 90px;

    position:relative;

}

.article-hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:50%;

    top:-320px;

    transform:translateX(-50%);

    background:rgba(212,175,55,.05);

    border-radius:50%;

    filter:blur(120px);

}

/*==============================
BREADCRUMB
==============================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

    color:#8d8d8d;

    margin-bottom:35px;

    font-size:14px;

}

.breadcrumb a{

    transition:.3s;

}

.breadcrumb a:hover{

    color:var(--primary);

}

/*==============================
CATEGORY
==============================*/

.article-category{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    border:1px solid rgba(212,175,55,.25);

    background:rgba(212,175,55,.08);

    color:var(--primary);

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:28px;

}

/*==============================
TITLE
==============================*/

.article-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:1.05;

    margin-bottom:28px;

    max-width:850px;

}

/*==============================
SHORT DESCRIPTION
==============================*/

.article-short{

    color:var(--text);

    font-size:20px;

    line-height:2;

    max-width:850px;

}

/*==============================
META
==============================*/

.article-meta{

    display:flex;

    flex-wrap:wrap;

    gap:35px;

    margin-top:40px;

}

.article-meta div{

    color:#9b9b9b;

    font-size:15px;

}

.article-meta i{

    color:var(--primary);

    margin-right:8px;

}

/*====================================================
FEATURED IMAGE
====================================================*/

.featured-image{

    padding-bottom:100px;

}

.featured-image img{

    width:100%;

    aspect-ratio:16/8;

    object-fit:cover;

    border-radius:26px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 70px rgba(0,0,0,.35);

    transition:.5s;

}

.featured-image img:hover{

    transform:scale(1.01);

}

/*====================================================
ARTICLE SECTION
====================================================*/

.article-content{

    padding-bottom:120px;

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:992px){

    .article-hero h1{

        font-size:56px;

    }

    .article-short{

        font-size:18px;

    }

}

@media(max-width:768px){

    .bd-header{

        height:72px;

    }

    .bd-header nav{

        display:none;

    }

    .article-hero{

        padding:130px 0 70px;

    }

    .article-hero h1{

        font-size:42px;

    }

    .article-short{

        font-size:16px;

        line-height:1.9;

    }

    .article-meta{

        gap:18px;

    }

    .featured-image{

        padding-bottom:70px;

    }

}

@media(max-width:480px){

    .article-hero h1{

        font-size:34px;

    }

    .article-category{

        font-size:12px;

        padding:8px 18px;

    }

    .article-meta{

        flex-direction:column;

        gap:10px;

    }

}


/*====================================================
ARTICLE BODY
====================================================*/

.article-body{

    color:#d5d5d5;

    font-size:19px;

    line-height:2;

}

.article-body p{

    margin-bottom:32px;

}

/* Drop Cap */

.article-body p:first-child:first-letter{

    float:left;

    font-size:92px;

    line-height:70px;

    padding-right:14px;

    color:var(--primary);

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

}

/* Headings */

.article-body h2{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    color:#ffffff;

    margin:70px 0 25px;

    line-height:1.2;

    font-weight:600;

}

/* Lists */

.article-body ul,
.article-body ol{

    margin:25px 0 35px 25px;

}

.article-body li{

    margin-bottom:15px;

}

/* Images inside article */

.article-body img{

    width:100%;

    border-radius:20px;

    margin:50px 0;

}

/* Links */

.article-body a{

    color:var(--primary);

}

.article-body a:hover{

    text-decoration:underline;

}

/*====================================================
BACK BUTTON
====================================================*/

.back-insights{

    padding-bottom:120px;

}

.back-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.back-btn i{

    transition:.3s;

}

.back-btn:hover{

    color:#ffffff;

}

.back-btn:hover i{

    transform:translateX(-6px);

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:768px){

.article-body{

font-size:17px;

}

.article-body h2{

font-size:34px;

margin:50px 0 20px;

}

.article-body p:first-child:first-letter{

font-size:70px;

line-height:55px;

}

}

/*====================================================
BACK TO INSIGHTS
====================================================*/

.back-insights{
    padding:60px 0 100px;
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 28px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    color:var(--white);

    background:#111;

    transition:all .35s ease;
}

.back-btn i{
    transition:.35s;
}

.back-btn:hover{
    background:var(--primary);
    color:#000;
    border-color:var(--primary);
    transform:translateY(-3px);
}

.back-btn:hover i{
    transform:translateX(-5px);
}


/*====================================================
FOOTER
====================================================*/

.bd-footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0 30px;

}

/*------------------------
Top
-------------------------*/

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    padding-bottom:35px;

    margin-bottom:35px;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.footer-brand{

    max-width:450px;

}

.footer-brand h2{

    font-size:36px;

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    margin-bottom:12px;

}

.footer-brand p{

    color:#999;

    line-height:1.8;

}

/*------------------------
Footer Links
-------------------------*/

.footer-links{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.footer-links a{

    color:#c8c8c8;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

/*------------------------
Bottom
-------------------------*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#888;

    font-size:14px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:44px;

    height:44px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#000;

    border-color:var(--primary);

    transform:translateY(-4px);

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:992px){

    .footer-top{

        flex-direction:column;

        gap:35px;

    }

}

@media(max-width:768px){

    .back-insights{

        padding:50px 0 70px;

    }

    .back-btn{

        width:100%;

        justify-content:center;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-brand h2{

        font-size:30px;

    }

    .footer-links{

        gap:20px;

    }

}

@media(max-width:480px){

    .footer-links{

        flex-direction:column;

        gap:15px;

    }

    .footer-social{

        justify-content:center;

        width:100%;

    }

}