section.hero.seemore {
    min-height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 120px; /* แก้จาก 120x */
    margin: 0 !important;
}

section.hero.seemore .hero-content {
    margin: 0 auto;
    text-align: center;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --brand: #ffd20c;
    --border: #ffffff;
}

.kanit-text {
    font-family: 'Kanit', sans-serif;
}

.mil-section {
    padding: 48px 0;
    /* ลบ background: var(--bg); เพราะไม่ได้กำหนด --bg */
}

.container {
    width: min(920px, 92vw);
    margin-inline: auto;
}

.mil-mb-40 {
    margin-bottom: 40px;
}

.mil-light {
    color: var(--brand);
}

.mil-dark-box {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.mil-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.mil-link-dark {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: #000;
    font-size: 1.06rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    transition: transform .22s cubic-bezier(.22, 1, .36, 1), 
                box-shadow .22s ease, 
                background .22s ease, 
                color .22s ease, 
                border-color .22s ease;
}

.mil-link-dark img {
    width: 44px;
    height: 44px;
    padding: 6px;
    object-fit: contain;
    flex: 0 0 auto;
}

.mil-link-dark:hover {
    transform: translateY(-2px) scale(1.02);
    background: #0b0b0b;
    color: var(--brand);
    border-color: #2b2b2b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.mil-box h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--brand);
    text-align: center;
    letter-spacing: .4px;
}

/* ลิงก์ที่ปิดการใช้งาน */
.mil-link-dark.disabled,
.mil-link-dark[aria-disabled="true"] {
  pointer-events: none;     /* กันคลิก/แตะ */
  cursor: not-allowed;      /* เมาส์เป็นรูปห้าม */
  opacity: 0.55;            /* จางลง */
  filter: grayscale(40%);   /* ไอคอนดูจืดลงนิดหน่อย */
  background: #f2f2f2;
  color: #777;
  border-color: #e5e5e5;
}

/* ตัดเอฟเฟกต์ hover ออกสำหรับ disabled */
.mil-link-dark.disabled:hover,
.mil-link-dark[aria-disabled="true"]:hover {
  transform: none;
  background: #f2f2f2;
  color: #777;
  border-color: #e5e5e5;
  box-shadow: none;
}
