	
	/* การทำให้ Responsive และตั้งค่าพื้นฐาน */
.slide_hshow-container {
    max-width: 1500px;
    position: relative;
    margin: auto;
    overflow: hidden;
	border-radius: 5px;
    /* ความสูงจะถูกกำหนดแบบ Dynamic โดย JavaScript */
}

/* slide_h Item */
.slide_h {
    display: none; /* ซ่อนทุกสไลด์เริ่มต้น */
    width: 100%;
    position: absolute; /* วางซ้อนกัน */
    top: 0;
    left: 0;
}

.slide_h img {
    width: 100%;
    height: auto; /* ให้ความสูงปรับตามความกว้าง 100% เพื่อให้ Container คำนวณความสูงได้ */
    vertical-align: middle;
}

/* Text Counter (ตัวเลขบอกจำนวนภาพ) */
.numbertext {
    color: #f2f2f2;
    font-size: 10px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
	right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: 10;
	margin-right: 5px;
	margin-bottom: 5px;
}

/* Navigation dot_hs (ปุ่ม dot_h) */
.dot_h {
    cursor: pointer;
/*    height: 7px;*/
/*    width: 7px;*/
/*    margin: 1rem 0.2rem;*/
    background-color: none;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
	
}



/* Animation การเปลี่ยนภาพ (fade_h Effect) */
.fade_h {
    animation-name: fade_h;
    animation-duration: 1.5s;
}

@keyframes fade_h {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Media Queries สำหรับ Responsive */
@media only screen and (max-width: 600px) {
    /* คุณสามารถปรับ style อื่นๆ สำหรับจอเล็กได้ที่นี่ */
}
	