﻿:root {
    --primary: #0c8a52;
    --primary-dark: #0a7344;
    --text: #25324a;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f5f6f8;
    --white: #ffffff;
    --shadow: 0 12px 32px rgba(0, 0, 0, .08);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
    color: var(--muted);
}

.section {
    padding: 60px 0;
}

.section-light {
    background: var(--bg);
}

/* Hero */
.career-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.15) 100%);
}

.career-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .career-hero-content h1 {
        margin: 0 0 16px;
        font-size: 44px;
        line-height: 1.08;
        font-weight: 600;
        max-width: 1200px;
    }

    .career-hero-content p {
        margin: 0;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255,255,255,.92);
        max-width: 700px;
    }

/* Intro */
.section-head {
    margin-bottom: 32px;
}

    .section-head h2 {
        margin: 0 0 14px;
        font-size: 30px;
        line-height: 1.15;
        color: #394866;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
        font-size: 13px;
        max-width: 1200px;
    }

.career-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Career Info */
.career-info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.career-info-text h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #394866;
}

.career-link {
    margin: 0 0 28px;
}

    .career-link a {
        color: var(--primary);
        font-size: 16px;
        font-weight: 500;
        word-break: break-word;
    }

        .career-link a:hover {
            text-decoration: underline;
        }

.disclaimer-block h3 {
    margin: 0 0 18px;
    font-size: 30px;
    color: #394866;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .check-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 16px;
        color: var(--muted);
        line-height: 1.85;
        font-size: 15px;
    }

        .check-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #54c27a;
            font-weight: 700;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border-radius: 999px; /* round */
            background: rgba(12, 138, 82, .08); /* opsional */
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

.career-info-image img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .career-gallery,
    .career-info-grid {
        grid-template-columns: 1fr;
    }

    .career-hero-content h1 {
        font-size: 42px;
    }

    .section-head h2,
    .career-info-text h2,
    .disclaimer-block h3 {
        font-size: 32px;
    }

    .career-info-image img {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .section {
        padding: 56px 0;
    }

    .career-hero {
        min-height: 320px;
    }

    .career-hero-content h1 {
        font-size: 34px;
    }

    .career-hero-content p {
        font-size: 16px;
    }

    .section-head h2,
    .career-info-text h2,
    .disclaimer-block h3 {
        font-size: 28px;
    }

    .gallery-item img {
        height: 220px;
    }

    .career-info-image img {
        height: 260px;
    }
}
