/* Main content styles */
main {
    display: flex;
    flex-direction: column;
    align-items: center; /* จัดแนวเนื้อหาให้อยู่กึ่งกลางแนวนอน */
    justify-content: center; /* จัดแนวเนื้อหาให้อยู่กึ่งกลางแนวตั้ง */
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto; /* จัดเนื้อหาหลักให้อยู่กึ่งกลางแนวนอน */
    text-align: center; /* จัดการข้อความให้อยู่กึ่งกลางในเนื้อหา */
    box-sizing: border-box; /* รวม padding และ border ในขนาดที่กำหนด */
}

.studio-details {
    color: #BD8E57; /* Text color for the details */
    font-size: 16px;  /* Font size for description */
}

.studio-title {
    font-size: 24px; /* Font size for the title */
    margin-bottom: 20px;
}

.studio-description {
    line-height: 1.5; /* Line height for spacing */
    color: #fff; /* Text color */
}

.studio-description span {
    display: inline; /* Ensure spans are inline */
}

.studio-description .highlight {
    color: #FFE03E; /* Highlight color */
}

/* Styles for the studio video */
.studio-video {
    width: 77rem; /* กำหนดความกว้างของวิดีโอ */
    height: 30.25rem; /* กำหนดความสูงของวิดีโอ */
    margin-top: 20px; /* ช่องว่างด้านบนของวิดีโอ */
    object-fit: cover; /* ปรับความสัมพันธ์ของวิดีโอให้เต็มพื้นที่ที่กำหนด */
    max-width: 100%; /* ปรับความกว้างของวิดีโอให้ไม่เกินขนาดของ container */
}

@media (max-width: 768px) {
    .studio-title {
        font-size: 20px;
    }

    .studio-description {
        font-size: 14px;
    }

    .studio-video {
        width: 100%;
        height: auto;
    }
}
