body:not(.rtl) .elementor-5966 .elementor-element.elementor-element-f70c349.drdt_sticky_fixed{left:0px;}body.rtl .elementor-5966 .elementor-element.elementor-element-f70c349.drdt_sticky_fixed{right:0px;}.elementor-5966 .elementor-element.elementor-element-f70c349.drdt_sticky_fixed{top:0px;z-index:5;}/* Start custom CSS for html, class: .elementor-element-a5cac72 */:root {
    --primary: #0062ff;
    --primary-dark: #0046b8;
    --accent: #00d4ff;
    --bg: #ffffff;
    --surface: #f9fbff;
    --text-main: #1d1d1f;
    --text-sub: #515154;
    --border: #e1e4e8;
    --shadow: rgba(0, 98, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: 'Noto Sans Thai', sans-serif !important;
}

body {
    font-family: 'Noto Sans Thai', sans-serif !important;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* คุมความกว้างไม่ให้ล้นหน้าจอ */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.back-link {
    text-decoration: none;
    color: var(--text-sub);
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Hero Section */
.career-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

.badge {
    background: #eef4ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.career-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-sub);
    max-width: 500px;
}

/* Team Visual Grid */
.team-visual {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 15px;
    height: 400px;
}

.photo-box {
    background: #f0f3f7;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s ease;
}

.photo-box:hover { transform: scale(1.02); }

.photo-sub-group {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

/* Job Detail Grid */
.job-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.job-info-sticky {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.job-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.salary-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.salary-box small { color: var(--text-sub); font-size: 0.8rem; text-transform: uppercase; }
.salary-box p { font-weight: 600; color: var(--primary); font-size: 1.1rem; }

.job-tags { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.job-tags span {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-sub);
}

.apply-now-btn {
    display: block;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px var(--shadow);
}

.apply-now-btn:hover { color: white; background: var(--primary-dark); transform: translateY(-3px); }

/* Content Styling */
.content-block { margin-bottom: 60px; }
.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.en-sub { font-size: 0.9rem; color: #b0b0b5; font-weight: 400; }

.summary { font-size: 1.1rem; font-weight: 500; margin-bottom: 20px; color: var(--primary); }

.custom-list, .check-list { list-style: none; }
.custom-list li, .check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
}

.important { font-weight: 600; color: var(--text-main); }
.en-text {
    margin-top: 20px;
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    border-left: 2px solid #eee;
    padding-left: 15px;
}

/* Benefits Cards */
.benefits-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.b-card {
    background: var(--surface);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.b-card:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.b-card .icon { font-size: 2rem; margin-bottom: 10px; }
.b-card h4 { font-size: 1rem; margin-bottom: 5px; }
.b-card p { font-size: 0.85rem; color: var(--text-sub); }

.minimal-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: #b0b0b5;
}

/* Responsive */
@media (max-width: 1024px) {
    .job-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .job-info-sticky { position: relative; top: 0; }
    .career-hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto; }
    .team-visual { height: 300px; }
}

@media (max-width: 600px) {
    .main-wrapper { padding: 0 20px; }
    .benefits-flex { grid-template-columns: 1fr; }
    .career-hero h1 { font-size: 2.2rem; }
    .team-visual { grid-template-columns: 1fr; height: auto; }
    .photo-sub-group { display: none; } /* ซ่อนรูปย่อยในมือถือเพื่อให้ดูสะอาด */
    .photo-box.main-img { height: 200px; }
}

.custom-list li, .check-list li {
    list-style-type: none !important; /* บังคับปิดจุด Bullet */
}/* End custom CSS */