﻿main {
    gap: 50px;
}

/* ===== Page ===== */
.career-detail-page {
    position: relative;
    padding: 120px 24px 60px; /* เผื่อเมนูด้านบน */
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Back Link ===== */
.career-back {
    position: relative;
    left: 24px;
    text-decoration: none;
    transition: color .2s ease;    
    font-size: 32px;
    font-weight: 900;
    display: flex;
    gap: 12px;
}

.career-back a {
    color: var(--text-grey-color);
    text-decoration: none;
}

.career-back:hover {
    color: #000;
}

/* ===== Content ===== */
.career-detail-content {
    max-width: 640px;
    margin: 0 auto;
}

.career-detail-content h2 {
    font-size: 24px;
}

/* ===== Title ===== */
.position-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.updated-date {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 48px;
}

/* ===== Detail Block ===== */
.detail-block {
    margin-bottom: 32px;
}

.detail-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* ===== Apply Button ===== */
.apply-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
}

.btn-apply {
    background: #ffe600;
    color: #000;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    text-align: center;
    min-width: 150px;
}

.btn-apply:hover {
    background: #000;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .position-title {
        font-size: 28px;
    }

    .apply-wrap {
        justify-content: center;
    }
}

/* ===== Quill Content Wrapper ===== */
.career-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* heading จาก Quill */
.career-content h1,
.career-content h2,
.career-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

/* Quill มักใช้ div + br */
.career-content div {
    margin-bottom: 12px;
}

/* list จาก Quill */
.career-content ul {
    padding-left: 20px;
    margin: 16px 0;
}

.career-content li {
    margin-bottom: 8px;
}