/* Premium Elegance Theme for Section Headers */

.section-header-container {
    text-align: center;
    margin-bottom: 45px;
    padding: 0 20px;
}

.section-header-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2.2rem;
    font-weight: 500; /* ลดความหนาลงให้ดูเรียบหรู */
    color: #1f2937;
    margin: 0;
    letter-spacing: 0.5px;
}

/* เน้นสีส้มเฉพาะคำ */
.section-header-title span {
    color: #ff7300;
    font-weight: 600;
}

/* ลวดลายเส้นใต้แบบมินิมอล (ขีดสั้น-ขีดยาว-ขีดสั้น) */
.section-header-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px; /* ปรับลดจาก 15px เหลือ 5px เพื่อให้ชิดตัวหนังสือมากขึ้น */
}

.section-header-underline .line {
    width: 50px;
    height: 3px;
    background: #ff7300;
    border-radius: 3px;
}

/* เปลี่ยนจากจุดกลม เป็นขีดสั้นๆ สีจาง */
.section-header-underline .dot {
    width: 15px;
    height: 3px;
    background: #ff7300;
    border-radius: 3px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .section-header-title {
        font-size: 1.8rem;
    }
    .section-header-container {
        margin-bottom: 35px;
    }
}
