/* Certificate Timeline - Frontend Styles */

.ct-timeline-wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}

.ct-timeline-wrap * {
    box-sizing: border-box;
}

.ct-timeline-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* เส้นประเชื่อมระหว่างปี (แสดงเฉพาะจอใหญ่ แบบแถวเดียว) */
.ct-timeline-track::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    border-top: 2px dotted #7a5ea8;
    z-index: 0;
}

.ct-item {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ct-year-badge {
    background-color: #3c1a5b;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 999px;
    white-space: nowrap;
    margin-bottom: 24px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.ct-image {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 6px;
}

.ct-image img {
    display: block;
    width: 100%;
    height: auto;
}

.ct-image-placeholder {
    width: 100%;
    padding-top: 140%;
    background: #f2f2f2;
}

/* ===== Responsive ===== */

/* iPad / แท็บเล็ต และ มือถือ: จัดเป็นคอลัมน์เดียวแนวตั้ง
   มีเส้นประลากผ่านกึ่งกลางตลอดความสูง ป้ายปีอยู่บนเส้น รูปภาพอยู่ใต้ป้ายปี */
@media (max-width: 992px) {
    .ct-timeline-track {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* ปิดเส้นประแนวนอนแบบเดสก์ท็อป แล้วใช้เส้นประแนวตั้งแทน */
    .ct-timeline-track::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 0;
        border-top: none;
        border-left: 2px dotted #7a5ea8;
        transform: translateX(-50%);
    }

    .ct-item {
        width: 100%;
        max-width: 260px;
        margin-bottom: 50px;
    }

    .ct-item:last-child {
        margin-bottom: 0;
    }

    /* ระยะจากเส้นถึงป้ายปี ให้ป้ายปีอยู่กึ่งกลางเส้นพอดี */
    .ct-year-badge {
        margin-top: 20px;
        margin-bottom: 24px;
    }
}

/* มือถือ: ย่อขนาดตัวอักษรและระยะห่างเล็กน้อย */
@media (max-width: 600px) {
    .ct-item {
        max-width: 220px;
        margin-bottom: 40px;
    }

    .ct-year-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-top: 16px;
        margin-bottom: 18px;
    }
}
