/* ==================================================
   HOME INCLUDED (CLEAN MATCH DESIGN FIX)
================================================== */

.home-included {
    /* margin-top: 80px; */
    width: 100%;
    background: #000;
    position: relative;
    overflow: visible;
    min-height: unset;
    /* 🔥 ลบความสูงบังคับ */
    /* padding-bottom:40px; */
}

/* ==================================================
   TOP BRUSH (WITH REAL BLUR OVERLAY)
================================================== */

.home-included-top {
    position: absolute;
    top: -125px;
    left: 0;
    width: 100%;
    height: 200px;

    z-index: 10;

    background: url("../images/patong-paragon-gun-torn-divider.png") center top / 100% 100% no-repeat;

    /* สำคัญ: ให้ซ้อน fade ได้ */
    overflow: visible;
}

/* ==================================================
   🔥 REAL "SOFT SMOKE FADE" ON TOP BRUSH
================================================== */

.home-included-top::after {
    content: "";
    position: absolute;

    left: -30px;
    top: 50px;

    width: 110%;
    height: 80%;

    /* 🔥 นี่คือสิ่งที่ทำให้ “ฟุ้งเหมือนภาพที่คุณต้องการ” */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.95) 35%,
            rgba(0, 0, 0, 01) 65%,
            rgba(0, 0, 0, 0) 100%);

    /* 🔥 ตัวทำให้ “ฟุ้งจริง ไม่เป็นเส้นแข็ง” */
    filter: blur(16px);

    opacity: 0.9;

    pointer-events: none;
}

/* ==================================================
   REMOVE PROBLEM LAYER (IMPORTANT)
================================================== */

/* ❌ ต้องปิดของเก่าทั้งหมด */
.home-included::after {
    display: none;
}

/* ==================================================
   CONTAINER
================================================== */

.home-included-container {
    position: relative;
    z-index: 8;

    width: 90%;
    max-width: 1600px;
    min-height: auto;
    /* 🔥 สำคัญ */

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1px;

    padding: 80px 140px 60px;
    /* เดิม 70px → ลดลง */

    background: url("../images/patong-paragon-gun-dark-background.webp") center/cover no-repeat;
}

/* ==================================================
   LEFT CONTENT
================================================== */

.home-included-left {
    display: flex;
    align-items: center;
    min-height: 760px;
}

.home-included-content {
    width: 100%;
    max-width: 720px;
}

/* TEXT */
/* .home-included-subtitle{
    display:inline-block;
    color:#C92327;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
} */

.home-included-title {
    color: #fff;
    font-size: 50px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-top: -40px;
}

.home-included-description {
    color: #c9c9c9;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 620px;
}

/* LIST */
.home-included-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-included-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.home-included-icon {
    color: #C92327;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}

.home-included-item h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.home-included-item p {
    color: #bfbfbf;
    font-size: 15px;
    line-height: 1.7;
}

/* ==================================================
   VIDEO AREA FIX (NO ZOOM - FIT CONTAINER)
================================================== */

.home-included-video-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* 🔥 ให้ wrapper เป็น frame จริง */
.home-included-video-wrapper {
    width: 380px;

    /* 🔥 สำคัญ: ใช้ aspect ratio แทน height fix */
    aspect-ratio: 9 / 16;

    height: auto;

    position: relative;
    overflow: hidden;

    border-radius: 22px;

    background: #000;

    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

/* ==================================================
   YOUTUBE FIT INSIDE (NO SCALE)
================================================== */

#homeIncludedYoutube {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 🔥 ไม่ zoom ไม่ scale */
#homeIncludedYoutube iframe {
    width: 100%;
    height: 100%;

    border: 0;
    display: block;

    object-fit: cover;
    /* ให้เต็มกรอบแบบพอดี */
}

/* ==================================================
   NOTEBOOK
================================================== */

@media (min-width:1024px) and (max-width:1365px) {

    .home-included-container {

        width: 94%;

        grid-template-columns: 1fr 340px;

        padding: 70px 60px 50px;
    }

    .home-included-left {

        min-height: 620px;
    }

    .home-included-title {

        font-size: 42px;

        margin-top: 0;
    }

    .home-included-description {

        font-size: 16px;

        margin-bottom: 35px;
    }

    .home-included-video-wrapper {

        width: 320px;
    }

}

/* ==================================================
   TABLET
================================================== */

@media (min-width:768px) and (max-width:1023px) {

    .home-included-top {

        top: -90px;

        height: 160px;
    }

    .home-included-container {

        width: 100%;

        grid-template-columns: 1fr;

        justify-items: center;

        gap: 50px;

        padding: 70px 40px 60px;
    }

    .home-included-left {

        min-height: auto;

        justify-content: center;
    }

    .home-included-content {

        max-width: 700px;

        text-align: center;
    }

    .home-included-title {

        font-size: 40px;

        margin-top: 0;
    }

    .home-included-description {

        max-width: 100%;
    }

    .home-included-list {

        text-align: left;
    }

    .home-included-video-area {

        justify-content: center;
    }

    .home-included-video-wrapper {

        width: 320px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px) {

    .home-included-top {

        top: -70px;

        height: 120px;
    }

    .home-included-container {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 22px 50px;
    }

    .home-included-left {

        min-height: auto;
    }

    .home-included-content {

        max-width: 100%;

        text-align: center;
    }

    .home-included-title {

        font-size: 32px;

        line-height: 1.2;

        margin-top: 0;

        margin-bottom: 20px;
    }

    .home-included-description {

        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 30px;

        max-width: 100%;
    }

    .home-included-list {

        gap: 20px;

        text-align: left;
    }

    .home-included-item {

        gap: 12px;
    }

    .home-included-item h3 {

        font-size: 15px;
    }

    .home-included-item p {

        font-size: 14px;
    }

    .home-included-video-area {

        justify-content: center;
    }

    .home-included-video-wrapper {

        width: 100%;

        max-width: 320px;
    }

}