/* --- ปรับแต่ง Layout ให้กว้างสมดุล 1200px --- */

/* ส่วนหัวเว็บ */
.header-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ส่วนเนื้อหาหลัก: บังคับให้กว้าง 1200px และอยู่กลางจอ */
.container {
    width: 100%;
    max-width: 1200px; 
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box; /* ป้องกันเนื้อหาดันขอบล้น */
}

/* ส่วนเนื้อหาหลักฝั่งซ้าย (กลุ่มเนื้อหา) */
.main-group {
    flex: 1; /* ขยายให้เต็มพื้นที่ที่เหลือ */
    min-width: 0;
}

/* ส่วน Sidebar ฝั่งขวา (วิดีโอ) */
.right-sidebar {
    width: 300px; /* ล็อกความกว้างฝั่งขวาไว้ */
    flex-shrink: 0;
}

/* --- โค้ดจัดการวิดีโอใน Sidebar ให้เรียง 2 คอลัมน์ --- */
.video-grid-sidebar { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    padding: 10px; 
}

.video-item { 
    text-align: center; 
}

.video-item iframe { 
    width: 100%; 
    height: 100px; /* ความสูงพอดีสำหรับเรียงคู่ */
    border-radius: 5px;
    border: none;
}

.video-item p { 
    font-size: 10px; 
    margin-top: 5px; 
    font-weight: bold; 
    color: #444; 
    height: 25px; 
    overflow: hidden; 
    line-height: 1.2;
}

/* ปุ่มดูวิดีโอทั้งหมด */
.btn-video-all { 
    display: block; 
    margin: 5px 10px 15px 10px; 
    padding: 10px; 
    background: #333; 
    color: #fff !important; 
    text-align: center; 
    text-decoration: none; 
    border-radius: 5px; 
    font-size: 13px; 
    font-weight: bold;
    transition: 0.3s;
}

.btn-video-all:hover { 
    background: #000; 
}

/* --- ส่วนท้ายเว็บ (Footer) --- */
footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 0px;
    margin-top: 50px;
    border-top: 5px solid #800000;
}

.footer-content {
    width: 100%;
    max-width: 1200px; /* คุมให้กว้างเท่าเนื้อหาเว็บข้างบน */
    margin: 0 auto;    /* จัดให้อยู่กึ่งกลางหน้าจอ */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ส่วน Copyright ล่างสุด */
.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
    background: #111;
    width: 100%;
}