.enzo-stats-box {
    padding: 20px;
    max-width: 350px;
    font-family: 'Kanit', sans-serif;
    color: #ffffff; /* ตัวอักษรสีขาวทั้งหมด */
}

.enzo-stats-box h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* เผื่อ override */
}

.enzo-stats-box ul {
    list-style: disc;
	margin-top: 10px;
    padding: 0;
    margin: 0;
}

.enzo-stats-box li {
    padding: 6px 0;
    font-size: 16px;
	white-space: pre;
	line-height: 1.1;
    color: #ffffff; /* ตัวอักษรสีขาว */
}

@media (max-width: 480px) {
    .enzo-stats-box li {
        font-size: 6px;
    }

    .enzo-stats-box h3 {
        font-size: 10px;
    }
}
.more-btn {
    background: #ffca28; /* สีเหลือง */
    border-radius: 20px; /* มุมโค้ง 20px */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    transition: 0.25s;
    cursor: pointer;
}

.more-btn:hover {
    transform: translateY(-6px); /* ลอยขึ้น */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* เงาสวยขึ้น */
}

/* ลบ bullet และจัดรูปแบบรายการ */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 360px; /* ปรับตามต้องการ */
}

/* ช่องว่างระหว่างบรรทัด */
.link-list li {
    margin: 10px 0;
}

/* พื้นฐานของลิงก์ — ไม่มีเส้นใต้เป็นค่าเริ่มต้น */
.link-list a {
    text-decoration: none;
    color: #0b66c3;        /* ปรับสีตามชอบ */
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;   /* เว้นที่ให้เส้นใต้ */
    transition: color .18s ease;
    outline: none;
}

/* สร้างเส้นใต้แบบแอนิเมชัน โดยใช้ pseudo-element */
.link-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: currentColor;  /* สีเดียวกับตัวอักษร */
    transition: width .22s ease;
}

/* เมื่อ hover, focus หรือ active ให้เส้นใต้ยาวเต็ม */
.link-list a:hover::after,
.link-list a:focus::after,
.link-list a:active::after {
    width: 100%;
}

/* เปลี่ยนสีเมื่อ hover */
.link-list a:hover,
.link-list a:focus {
    color: #063b7a;
}

/* ให้ลิงก์ที่เป็นหน้าปัจจุบันมีเส้นใต้ถาวร */
.link-list a.current::after {
    width: 100%;
}

<style>
.more-btn2 {
    color: #1e88e5;
    font-size: 16px;
    text-decoration: none;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: 0.2s;
}

.more-btn2:hover {
    text-decoration: underline;
    background: none;
    transform: none;
}
</style>

