/*.audio-section {
    min-height: calc(100vh - 180px);   /* หักความสูงแบนเนอร์ + เมนู *
    display: flex;
    flex-direction: column;
    justify-content: center;           /* จัดกลางแนวตั้ง *
    align-items: center;               /* จัดกลางแนวนอน *
    padding: 20px;
    color: #D4AF37;
    text-align: center;
}*/
.audio-section {
    min-height: calc(100vh - 260px);   /* เดิม 200px → เพิ่มอีก 60px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #D4AF37;
    text-align: center;
}
/* หัวข้อ */
.audio-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

/* ตัวเล่นเพลง */
.audio-player {
    width: 100%;
    max-width: 500px;
    margin: 20px 0;
}

/* ปุ่มย้อนกลับ */
.back-btn {
    margin-top: 30px;
    padding: 10px 20px;
    background: #0A0F1F;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s;
}

/* Mobile */
/*@media (max-width: 600px) {
    .audio-section {
        min-height: calc(100vh - 200px);  /* มือถือแบนเนอร์สูงกว่า *
        padding: 15px;
    }
    .audio-title {
        font-size: 1.4rem;
    }
}*/
/* Mobile */
@media (max-width: 600px) {
    .audio-section {
        min-height: calc(100vh - 280px);  /* มือถือแบนเนอร์สูงกว่า */
        padding: 15px;
    }
}