/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#fff;
    overflow-x:hidden;
}

/* =========================================================
   GLOBAL
========================================================= */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;
    min-height:100vh;
    background:url("../images/Night-Life-Banner.jpg")
    center center/cover no-repeat;
    overflow:visible;

    padding-bottom:0;
}

/* =========================================================
   OVERLAY
========================================================= */

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    rgba(5,8,20,.60),
    rgba(5,8,20,.60)),

    radial-gradient(
    circle at top right,
    rgba(255,47,117,.45),
    transparent 45%),

    radial-gradient(
    circle at bottom left,
    rgba(0,216,255,.35),
    transparent 40%),

    radial-gradient(
    circle at bottom right,
    rgba(255,140,20,.40),
    transparent 45%);

}

/* =========================================================
   HERO LAYOUT
========================================================= */

.hero-container{

    position:relative;

    z-index:5;

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:100vh;

    padding-top:120px;

    gap:50px;

}

/* =========================================================
   HERO LEFT
========================================================= */

.hero-left{

    width:50%;

}

.hero-left h1{

    font-size:72px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;

}

.hero-left span{

    background:linear-gradient(
    90deg,
    #ff2f75,
    #ff9d1c);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.hero-left p{

    max-width:620px;

    font-size:24px;

    line-height:1.8;

    color:#f3f3f3;

    margin-bottom:40px;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.btn-primary{

    padding:18px 40px;

    border-radius:45px;

    background:linear-gradient(
    90deg,
    #ff2f75,
    #ff9d1c);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    padding:18px 40px;

    border-radius:45px;

    border:2px solid #00d9d9;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#00d9d9;

    color:#081221;

}

/* =========================================================
   STORE BUTTONS
========================================================= */

.store-buttons{

    display:flex;

    gap:18px;

}

.store-buttons img{

    height:58px;

    cursor:pointer;

    transition:.35s;

}

.store-buttons img:hover{

    transform:translateY(-4px);

}

/* =========================================================
   HERO RIGHT
========================================================= */

.hero-right{

    width:45%;

    display:flex;

    justify-content:center;

    align-items:flex-end;

}

.hero-right img{

    width:470px;

    max-width:100%;

    margin-top:60px;

    animation:floatPhone 5s ease-in-out infinite;

}

/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes floatPhone{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =========================================================
   PARTNERS
========================================================= */

.partners{

    position:relative;
    z-index:20;

    margin-top:-70px;
    margin-bottom:-70px;

}

.partners-card{

    width:90%;
    max-width:1450px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    padding:24px 40px;

}

.partners-card h4{

    text-align:center;

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:18px;

    color:#444;

}

.partner-logos{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:30px;

}

.partner-logos img{

    height:42px;

    filter:grayscale(100%);

    opacity:.8;

    transition:.35s;

}

.partner-logos img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.05);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-container{

        flex-direction:column;

        text-align:center;

        padding-top:170px;

    }

    .hero-left,
    .hero-right{

        width:100%;

    }

    .hero-left h1{

        font-size:52px;

    }

    .hero-left p{

        margin:auto auto 40px;

        font-size:20px;

    }

    .hero-buttons,
    .store-buttons{

        justify-content:center;

    }

    .hero-right img{

        width:360px;

    }

    .feature-grid{

    grid-template-columns:repeat(2,1fr);

    }

    .features h2{

        font-size:42px;

    }

}

@media(max-width:700px){

    .feature-grid{

        grid-template-columns:1fr;

    }

    .features h2{

        font-size:34px;

    }

}

/* =========================================================
   FEATURES
========================================================= */

.features{

    background:#fff;

    padding:150px 0 100px;

}

.features h2{

    text-align:center;

    font-size:54px;

    font-weight:800;

    color:#0b1731;

    margin-bottom:50px;

    line-height:1.2;

}

.features h2 span{

    background:linear-gradient(
    90deg,
    #ff2f75,
    #ff9d1c);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card{

    background:#ffffff;

    border-radius:24px;

    padding:34px 28px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}

/* =========================================================
   ICON
========================================================= */

.feature-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

}

.feature-icon img{

    width:42px;

    height:42px;

}

.pink{

    background:#ff2f75;

}

.orange{

    background:#ff981e;

}

.blue{

    background:#2979ff;

}

.green{

    background:#4caf50;

}

/* =========================================================
   FEATURE TEXT
========================================================= */

.feature-card h3{

    color:#0b1731;

    font-size:28px;

    margin-bottom:18px;

    font-weight:700;

}

.feature-card p{

    color:#6f7480;

    line-height:1.8;

    font-size:18px;

}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works{

    padding:90px 0 110px;

    background:#F3F6FF;

}

.how-it-works h2{

    text-align:center;

    font-size:52px;

    font-weight:800;

    color:#0b1731;

    margin-bottom:70px;

}

.how-it-works h2 span{

    background:linear-gradient(
        90deg,
        #ff2f75,
        #ff9d1c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    color:transparent;

}

/* =========================================================
   STEPS
========================================================= */

.steps-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    flex-wrap:nowrap;

}

.step-card{

    flex:1;

    max-width:250px;

    background:#ffffff;

    border:1px solid #e9edf3;

    border-radius:24px;

    padding:40px 28px;

    text-align:center;

    transition:.35s;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/* =========================================================
   ICON
========================================================= */

.step-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-icon img{

    width:48px;

    height:48px;

}

.discover img{

    filter:brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(621%) hue-rotate(142deg);

}

.book img{

    filter:brightness(0) saturate(100%) invert(61%) sepia(98%) saturate(1138%) hue-rotate(359deg);

}

.attend img{

    filter:brightness(0) saturate(100%) invert(24%) sepia(95%) saturate(4625%) hue-rotate(324deg);

}

.enjoy img{

    filter:brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1706%) hue-rotate(260deg);

}

/* =========================================================
   TEXT
========================================================= */

.step-number{

    display:block;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    color:#6d7280;

    margin-bottom:10px;

}

.step-card h3{

    font-size:34px;

    color:#081221;

    font-weight:700;

    margin-bottom:15px;

}

.step-card p{

    color:#687280;

    font-size:18px;

    line-height:1.7;

}

/* =========================================================
   ARROWS
========================================================= */

.step-arrow{

    flex-shrink:0;

    font-size:38px;

    font-weight:700;

    color:#081221;

}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .steps-wrapper{

        flex-wrap:wrap;

        gap:35px;

    }

    .step-arrow{

        display:none;

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .how-it-works{

        padding:80px 0;

    }

    .how-it-works h2{

        font-size:36px;

        margin-bottom:50px;

    }

    .steps-wrapper{

        flex-direction:column;

    }

    .step-card{

        width:100%;

        max-width:360px;

    }

    .step-card h3{

        font-size:28px;

    }

    .step-card p{

        font-size:16px;

    }

}

/* =========================================================
   APP SHOWCASE
========================================================= */

.app-showcase{

    background:#FFF7E9;

    padding:130px 0;

}

.app-showcase-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

/* =========================================================
   LEFT CONTENT
========================================================= */

.showcase-text{

    width:48%;

}

.showcase-text h2{

    font-size:58px;

    line-height:1.18;

    color:#081221;

    font-weight:800;

    margin-bottom:30px;

}

.showcase-text span{

    background:linear-gradient(
        90deg,
        #ff2f75,
        #ff9d1c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.showcase-text p{

    color:#626b78;

    font-size:22px;

    line-height:1.8;

    margin-bottom:40px;

}

/* =========================================================
   PHONE MOCKUPS
========================================================= */

.showcase-phones{

    width:52%;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:20px;

}

.phone-card{

    text-align:center;

    flex:1;

}

.phone-card img{

    width:100%; 

    max-width:235px; 

    height:auto;

    display:block;

    margin:0 auto;

    transition:.35s;

}

.phone-card img:hover{

    transform:translateY(-12px);

}

.phone-card h4{

    margin-top:18px;

    color:#081221;

    font-size:18px;

    font-weight:600;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .app-showcase-container{

        flex-direction:column;

        text-align:center;

    }

    .showcase-text,
    .showcase-phones{

        width:100%;

    }

    .showcase-phones{

        justify-content:center;

        flex-wrap:wrap;

        gap:30px;

    }

}

@media(max-width:768px){

    .showcase-text h2{

        font-size:42px;

    }

    .showcase-text p{

        font-size:18px;

    }

    .phone-card img{

        max-width:190px;

    }

}

/* =========================================================
   WHY CHOOSE
========================================================= */

.why-choose{

    background:#ffffff;

    padding:120px 0;

}

.why-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

/* =========================================================
   IMAGE
========================================================= */

.why-image{

    width:52%;

}

.why-image img{

    width:100%;

    display:block;

    border-radius:30px;

}

/* =========================================================
   CONTENT
========================================================= */

.why-content{

    width:48%;

}

.why-content h2{

    font-size:54px;

    color:#081221;

    font-weight:800;

    margin-bottom:45px;

}

.why-content span{

    background:linear-gradient(
        90deg,
        #ff2f75,
        #ff9d1c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* =========================================================
   ITEMS
========================================================= */

.why-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    margin-bottom:34px;

}

.why-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#081b46;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.why-icon img{

    width:18px;

    height:18px;

    filter:brightness(0) invert(1);

}

.why-item h3{

    color:#081221;

    font-size:27px;

    font-weight:700;

    margin-bottom:8px;

}

.why-item p{

    color:#5f6675;

    font-size:19px;

    line-height:1.8;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .why-container{

        flex-direction:column;

        text-align:center;

    }

    .why-image,
    .why-content{

        width:100%;

    }

    .why-item{

        justify-content:center;

        text-align:left;

    }

}

@media(max-width:768px){

    .why-content h2{

        font-size:40px;

    }

    .why-item h3{

        font-size:22px;

    }

    .why-item p{

        font-size:17px;

    }

}


/* =========================================================
   FOOTER
========================================================= */

.footer{

    background:#081221;

}

/* =========================================================
   CTA
========================================================= */

.footer-cta{

    background:linear-gradient(
        90deg,
        #ff2f75,
        #ff9d1c);

    padding:50px 0;

}

.footer-cta-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.cta-text{

    color:#fff;

    width:30%;

}

.cta-text h2{

    font-size:48px;

    margin-bottom:12px;

}

.cta-text p{

    font-size:18px;

    line-height:1.7;

}

/* =========================================================
   WAITLIST
========================================================= */

.waitlist-form{

    display:flex;

    width:40%;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

}

.waitlist-form input{

    flex:1;

    border:none;

    padding:22px;

    font-size:17px;

    outline:none;

}

.waitlist-form button{

    border:none;

    padding:0 40px;

    background:linear-gradient(
        90deg,
        #ff2f75,
        #ff9d1c);

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.waitlist-form button:hover{

    filter:brightness(1.08);

}

/* =========================================================
   STORE
========================================================= */

.footer-store{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-store img{

    width:180px;

}

/* =========================================================
   MAIN
========================================================= */

.footer-main{

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr
    repeat(5,1fr);

    gap:50px;

}

.footer-brand img{

    width:220px;

    margin-bottom:35px;

}

.footer-grid h4{

    color:#fff;

    margin-bottom:22px;

    font-size:20px;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid li{

    color:#c7ced8;

    margin-bottom:14px;

    font-size:16px;

}

.footer-grid a{

    color:#c7ced8;

    text-decoration:none;

    transition:.3s;

}

.footer-grid a:hover{

    color:#ff9d1c;

}

/* =========================================================
   SOCIALS
========================================================= */

.socials{

    display:flex;

    gap:22px;

}

.socials a{

    color:#fff;

    font-size:24px;

    transition:.3s;

}

.socials a:hover{

    color:#ff9d1c;

}

/* =========================================================
   COPYRIGHT
========================================================= */

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

    color:#b7c0cd;

    font-size:15px;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .footer-cta-container{

        flex-direction:column;

        text-align:center;

    }

    .cta-text,
    .waitlist-form{

        width:100%;

    }

    .footer-store{

        flex-direction:row;

        justify-content:center;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .socials{

        justify-content:center;

    }

    .waitlist-form{

        flex-direction:column;

    }

    .waitlist-form button{

        padding:20px;

    }

}


/* =========================================================
   BLOG PAGE
========================================================= */


/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8,18,33,.96),
            rgba(8,18,33,.78)
        ),
        url("../images/blog.jpg")
        center center / cover no-repeat;

    padding: 160px 0 100px;

    overflow: hidden;
}


.blog-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -150px;

    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,47,117,.35),
            transparent 65%
        );

}


.blog-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.blog-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: #ff9d1c;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

}


.blog-hero h1 {

    color: #fff;

    font-size: 68px;

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 25px;

}


.blog-hero h1 span {

    background:
        linear-gradient(
            90deg,
            #ff2f75,
            #ff9d1c
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


.blog-hero p {

    max-width: 720px;

    color: #e4e8ef;

    font-size: 21px;

    line-height: 1.8;

}


/* =========================================================
   BLOG SECTION HEADING
========================================================= */

.blog-section-heading {

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;

}


.blog-section-heading > span {

    display: block;

    margin-bottom: 12px;

    color: #ff2f75;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.blog-section-heading h2 {

    color: #081221;

    font-size: 50px;

    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 18px;

}


.blog-section-heading p {

    color: #687280;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   FEATURED
========================================================= */

.blog-featured {

    background: #fff;

    padding: 110px 0;

}


.featured-post {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    border: 1px solid #e7ebf2;

    box-shadow:
        0 20px 55px rgba(0,0,0,.08);

}


.featured-post-image {

    min-height: 480px;

    overflow: hidden;

}


.featured-post-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .4s;

}


.featured-post:hover .featured-post-image img {

    transform: scale(1.04);

}


.featured-post-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;

}


.post-category {

    display: inline-flex;

    width: fit-content;

    padding: 7px 14px;

    border-radius: 30px;

    background: #fff0f5;

    color: #ff2f75;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;

}


.featured-post-content h2 {

    color: #081221;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.featured-post-content p {

    color: #687280;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.post-meta {

    display: flex;

    gap: 20px;

    color: #8a919c;

    font-size: 14px;

    margin-bottom: 30px;

}


/* =========================================================
   LATEST ARTICLES
========================================================= */

.blog-latest {

    background: #f3f6ff;

    padding: 110px 0;

}


.blog-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.blog-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #e7ebf2;

    box-shadow:
        0 12px 35px rgba(0,0,0,.06);

    transition: .35s;

}


.blog-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.12);

}


.blog-card-image {

    display: block;

    height: 240px;

    overflow: hidden;

}


.blog-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .4s;

}


.blog-card:hover .blog-card-image img {

    transform: scale(1.05);

}


.blog-card-content {

    padding: 30px;

}


.blog-card-content h3 {

    margin-bottom: 14px;

}


.blog-card-content h3 a {

    color: #081221;

    text-decoration: none;

    font-size: 24px;

    line-height: 1.35;

    transition: .3s;

}


.blog-card-content h3 a:hover {

    color: #ff2f75;

}


.blog-card-content p {

    color: #687280;

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 25px;

}


.blog-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 20px;

    border-top: 1px solid #edf0f4;

}


.blog-card-footer span {

    color: #8a919c;

    font-size: 13px;

}


.blog-card-footer a {

    color: #ff2f75;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.blog-image-placeholder {

    width: 100%;

    height: 100%;

    min-height: 240px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ff2f75,
            #ff9d1c
        );

    color: #fff;

    font-size: 28px;

    font-weight: 800;

}


/* =========================================================
   EMPTY STATE
========================================================= */

.blog-empty {

    max-width: 700px;

    margin: auto;

    padding: 70px 30px;

    text-align: center;

    background: #fff;

    border-radius: 25px;

    border: 1px solid #e7ebf2;

}


.blog-empty h3 {

    color: #081221;

    font-size: 28px;

    margin-bottom: 12px;

}


.blog-empty p {

    color: #687280;

    font-size: 17px;

}


/* =========================================================
   CATEGORIES
========================================================= */

.blog-categories {

    background: #fff;

    padding: 100px 0;

}


.category-list {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

}


.category-pill {

    padding: 15px 25px;

    border-radius: 40px;

    border: 1px solid #dfe4ec;

    color: #081221;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}


.category-pill:hover {

    color: #fff;

    border-color: #ff2f75;

    background:
        linear-gradient(
            90deg,
            #ff2f75,
            #ff9d1c
        );

    transform: translateY(-3px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .blog-hero h1 {

        font-size: 55px;

    }


    .featured-post {

        grid-template-columns: 1fr;

    }


    .featured-post-image {

        min-height: 400px;

    }


    .blog-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .blog-hero {

        min-height: 500px;

        padding: 140px 0 80px;

    }


    .blog-hero h1 {

        font-size: 42px;

    }


    .blog-hero p {

        font-size: 17px;

    }


    .blog-featured,
    .blog-latest,
    .blog-categories {

        padding: 80px 0;

    }


    .blog-section-heading {

        margin-bottom: 40px;

    }


    .blog-section-heading h2 {

        font-size: 38px;

    }


    .featured-post-image {

        min-height: 280px;

    }


    .featured-post-content {

        padding: 30px;

    }


    .featured-post-content h2 {

        font-size: 30px;

    }


    .blog-grid {

        grid-template-columns: 1fr;

    }


    .blog-card-image {

        height: 220px;

    }

}

/* =========================================================
   BLOG ARTICLE PAGE
========================================================= */


/* =========================================================
   ARTICLE HERO
========================================================= */

.article-hero {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8,18,33,.97),
            rgba(8,18,33,.82)
        ),
        url("../images/blog.jpg")
        center center / cover no-repeat;

    padding: 180px 0 100px;

    overflow: hidden;

}


.article-hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -180px;

    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,47,117,.35),
            transparent 65%
        );

}


.article-hero::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -200px;

    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,216,255,.20),
            transparent 65%
        );

}


.article-hero-content {

    position: relative;

    z-index: 3;

    max-width: 950px;

}


.article-category {

    display: inline-flex;

    align-items: center;

    padding: 8px 17px;

    margin-bottom: 25px;

    border-radius: 40px;

    background: rgba(255,47,117,.15);

    border: 1px solid rgba(255,47,117,.35);

    color: #ff9d1c;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.article-hero h1 {

    color: #fff;

    font-size: 64px;

    line-height: 1.12;

    font-weight: 800;

    margin-bottom: 25px;

    max-width: 950px;

}


.article-excerpt {

    max-width: 850px;

    color: #e2e7ef;

    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.article-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    color: #c7ced8;

    font-size: 14px;

}


.article-meta span {

    display: flex;

    align-items: center;

    gap: 9px;

}


.article-meta i {

    color: #ff9d1c;

}


/* =========================================================
   ARTICLE MAIN
========================================================= */

.article-main {

    background: #fff;

    padding: 100px 0 110px;

}


.article-layout {

    display: grid;

    grid-template-columns: minmax(0, 1fr) 320px;

    gap: 70px;

    align-items: start;

}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {

    min-width: 0;

}


.article-featured-image {

    width: 100%;

    max-height: 560px;

    margin-bottom: 55px;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0,0,0,.10);

}


.article-featured-image img {

    width: 100%;

    height: 100%;

    max-height: 560px;

    object-fit: cover;

    display: block;

}


/* =========================================================
   ARTICLE BODY
========================================================= */

.article-body {

    max-width: 850px;

    color: #4f5968;

    font-size: 18px;

    line-height: 1.95;

}


.article-body p {

    margin-bottom: 28px;

}


.article-body h2 {

    color: #081221;

    font-size: 34px;

    line-height: 1.3;

    font-weight: 800;

    margin-top: 55px;

    margin-bottom: 20px;

}


.article-body h3 {

    color: #081221;

    font-size: 27px;

    line-height: 1.35;

    font-weight: 700;

    margin-top: 40px;

    margin-bottom: 15px;

}


.article-body a {

    color: #ff2f75;

    font-weight: 600;

}


.article-body ul,
.article-body ol {

    margin:

        0

        0

        30px

        25px;

}


.article-body li {

    margin-bottom: 10px;

}


.article-body blockquote {

    margin: 40px 0;

    padding: 25px 30px;

    border-left: 5px solid #ff2f75;

    background: #f8f9fc;

    border-radius: 0 15px 15px 0;

    color: #081221;

    font-size: 20px;

    font-weight: 500;

}


/* =========================================================
   ARTICLE FOOTER
========================================================= */

.article-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 65px;

    padding-top: 30px;

    border-top: 1px solid #e7ebf2;

}


.article-tags {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #8a919c;

    font-size: 14px;

}


.article-tags a {

    padding: 7px 14px;

    border-radius: 30px;

    background: #fff0f5;

    color: #ff2f75;

    text-decoration: none;

    font-weight: 600;

}


.article-back {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #081221;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.article-back:hover {

    color: #ff2f75;

    transform: translateX(-3px);

}


/* =========================================================
   SIDEBAR
========================================================= */

.article-sidebar {

    position: sticky;

    top: 30px;

}


.sidebar-card {

    position: relative;

    overflow: hidden;

    padding: 38px 32px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #081b46,
            #081221
        );

    box-shadow:
        0 20px 45px rgba(8,18,33,.15);

}


.sidebar-card::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -100px;

    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,47,117,.45),
            transparent 65%
        );

}


.sidebar-eyebrow {

    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 15px;

    color: #ff9d1c;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.sidebar-card h3 {

    position: relative;

    z-index: 2;

    color: #fff;

    font-size: 27px;

    line-height: 1.35;

    margin-bottom: 18px;

}


.sidebar-card p {

    position: relative;

    z-index: 2;

    color: #cbd2dd;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.sidebar-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 22px;

    border-radius: 35px;

    background:
        linear-gradient(
            90deg,
            #ff2f75,
            #ff9d1c
        );

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.sidebar-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(255,120,60,.30);

}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-posts {

    background: #f3f6ff;

    padding: 100px 0 110px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .article-hero h1 {

        font-size: 52px;

    }


    .article-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .article-sidebar {

        position: static;

        max-width: 500px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .article-hero {

        min-height: 500px;

        padding: 150px 0 80px;

    }


    .article-hero h1 {

        font-size: 40px;

    }


    .article-excerpt {

        font-size: 17px;

    }


    .article-meta {

        gap: 15px;

    }


    .article-main {

        padding: 70px 0 80px;

    }


    .article-featured-image {

        margin-bottom: 35px;

        border-radius: 20px;

    }


    .article-body {

        font-size: 16px;

        line-height: 1.85;

    }


    .article-body h2 {

        font-size: 29px;

        margin-top: 45px;

    }


    .article-body h3 {

        font-size: 24px;

    }


    .article-footer {

        align-items: flex-start;

        flex-direction: column;

    }


    .related-posts {

        padding: 75px 0 80px;

    }

}