* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f0f12;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== HERO LAYOUT ===== */
.hero {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* ===== RIGHT SIDE (NO SPACE) ===== */
.hero-right {
    width: 60%;
    position: relative; /* reference for absolute content */
}

/* Grouped content */
.hero-content {
    position: absolute;
    top: 0;
    right: 40px;
    text-align: right;
}

/* Headline */
.hero-right h1 {
    /* font-family: 'Inter', sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

/* Arrow */
.arrow {
    display: inline-block;
    margin-top: 130px;
    font-size: 75px;
    margin-right: 40px;
    opacity: 0.8;
}
.arrow a {
    color: #ffffff;          /* keep arrow white */
    text-decoration: none;   /* remove underline */
    font-size: inherit;      /* inherit arrow size */
}

/* ============================= */
/* MOBILE RESPONSIVE (<= 768px) */
/* ============================= */
/* MOBILE VIEW */
@media (max-width: 768px) {

    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    /* Hero container */
    .hero {
        flex-direction: column;
        width: 100%;
        height: 600px;
    }

    /* Right section becomes full width */
    .hero-right {
        width: 100%;
        height: 100%;
        position: relative;
        order:2;
    }

    /* Content positioning */
    .hero-content {
        position: absolute;
        top: 50%;
        right: 80px;
        left: 20px;
        transform: translateY(-50%);
        text-align: right;
    }

    /* Headline scaling */
    .hero-right h1 {
        font-size: 68px;   /* scaled from 160px */
        line-height: 1.1;
        word-break: break-word;
    }

    /* Arrow */
    .arrow {
        margin-top: 40px;
        margin-right: 0;
        font-size: 40px;
        opacity: 0.9;
    }
}


/* ============================= */
/* BLOG DETAIL PAGE */
/* ============================= */

.detail-hero {
    display: flex;
    height: 100vh;
    width: 100vw;
    background: #000000;
}

/* LEFT SIDE */
.detail-left {
    width: 65%;
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-bar {
    display: flex;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
    align-items: center;
}
/* Small image icon in top bar */
.top-icon {
    width: 23px;
    height: 23px;
    object-fit: cover;
    margin-left: 20px;
    /* border-radius: 50%;   remove if you want square */
}

.detail-left h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    margin-top: 40px;
}

.description {
    max-width: 700px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

/* META INFO */
.meta {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.meta strong {
    font-size: 20px;
}

.meta p {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 6px;
}

/* RIGHT IMAGE */
.detail-right {
    width: 38%;
    position: relative;
}

.detail-right img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    padding-right: 100px;
   
}

/* ARROW UNDER IMAGE */
.image-arrow {
    position: absolute;
    bottom: 60px;
    right: 40px;
    font-size: 48px;
    color: #ffffff;
    opacity: 0.8;
}
.image-arrow a {
    color: #ffffff;          /* keep arrow white */
    text-decoration: none;   /* remove underline */
    font-size: inherit;      /* inherit arrow size */
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
/* @media (max-width: 768px) {

   
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

   
    .detail-hero {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 100vh;   
        overflow: hidden;
    }

   
    .detail-left {
        width: 100%;
        padding: 20px;
        order: 1;
        box-sizing: border-box;
    }
   
    .top-bar {
        font-size: 12px;
        gap: 6px;
    }

    .top-icon {
        width: 18px;
        height: 18px;
        margin-left: 8px;
    }

  
    .detail-left h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-top: 20px;
    }
   
    .description {
        font-size: 12px;
        max-width: 100%;
        margin-top: 20px;
        line-height: 1.6;
    }
  
    .meta {
        display: flex;
       
        gap: 20px;
        margin: 20px 0;
    }

    .meta strong,
    .meta p {
        font-size: 12px;
        opacity: 0.85;
    }

    .detail-right {
        width: 100%;
        height: 40vh;        
        position: relative;
        order: 2;
        overflow: hidden;
    }

    .detail-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
       
        display: block;
    }
    
    .image-arrow {
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 30px;
        opacity: 0.9;
    }
} */

@media (max-width: 768px) {

    /* Remove horizontal scroll */
    html, body {
        overflow-x: hidden;
    }

    /* Stack main sections */
    .detail-hero {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    /* LEFT section becomes normal flow */
    .detail-left {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;

        display: contents;  
    }

    /* Text elements */
    .top-bar,
    .detail-left h1,
    .description {
        order: 1;
        padding: 25px 20px;
        font-size: 25px;
    }

    /* Image */
    .detail-right {
        order: 2;
        width: 100%;
        height: 45vh;
        position: relative;
        overflow: hidden;
    }

    .detail-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* padding-right: 0; */
    }

    /* META goes last */
    .meta {
        order: 3;
        display: flex;
        /* flex-wrap: wrap; */
        gap: 20px;
        padding: 20px;
        padding-bottom: 1px;
        margin: 10px;
    }

    /* Typography */
    .detail-left h1 {
        font-size: 32px;
        margin-top: 20px;
        line-height: 1.2;
    }

    .description {
        font-size: 13px;
        margin-top: 20px;
        line-height: 1.6;
    }

    .meta strong,
    .meta p {
        font-size: 12px;
    }

    /* Arrow */
    .image-arrow {
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 30px;
    }
}
/* Order control (mobile only) */

/* Top bar and title stay first */
.top-bar { order: 1; }
.detail-left h1 { order: 2; }

/* Move image after title */
.detail-right { order: 3; }

/* Move description after image */
.description { order: 4; }

/* Meta stays last */
.meta { order: 5; }