/* =====================================================
   KEBIJAKAN PRIVASI - RUANK
   STYLE MENGIKUTI HALAMAN SYARAT & KETENTUAN
===================================================== */

:root {
    --green-dark: #06251B;
    --green: #7D866C;
    --green-light: #EEF0E8;

    --cream: #F5F2E9;
    --white: #FFFFFF;

    --text: #20241F;
    --text-soft: #6B6F67;

    --border: #E5E3DB;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);
    background: #F8F8F6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container),
            calc(100% - 40px));

    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.privacy-hero {
    background: var(--cream);

    padding: 78px 0 65px;

    border-bottom: 1px solid var(--border);
}

.privacy-hero-content {
    max-width: 820px;
}


/* -----------------------------------------------------
   EYEBROW
----------------------------------------------------- */

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 9px 20px;

    border: 1px solid #B8B9AD;
    border-radius: 999px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* -----------------------------------------------------
   HERO TITLE
----------------------------------------------------- */

.privacy-hero h1 {
    margin: 25px 0 16px;

    color: var(--text);

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}

.privacy-hero h1 span {
    color: var(--green);
}


/* -----------------------------------------------------
   HERO DESCRIPTION
----------------------------------------------------- */

.privacy-hero p {
    max-width: 750px;

    margin: 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.85;
}


/* =====================================================
   CONTENT WRAPPER
===================================================== */

.privacy-wrapper {
    padding: 65px 0 90px;

    background: #F8F8F6;
}

.privacy-layout {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 42px;

    align-items: start;
}


/* =====================================================
   SIDEBAR / DAFTAR ISI
===================================================== */

.privacy-sidebar {
    position: sticky;

    top: 95px;
}

.privacy-sidebar-inner {
    padding: 25px 23px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(30, 35, 30, 0.035);
}


/* -----------------------------------------------------
   SIDEBAR TITLE
----------------------------------------------------- */

.sidebar-title {
    display: block;

    margin-bottom: 15px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* -----------------------------------------------------
   SIDEBAR LINKS
----------------------------------------------------- */

.privacy-sidebar a {
    display: block;

    padding: 7px 0;

    color: #73776F;

    font-size: 11px;
    line-height: 1.55;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.privacy-sidebar a:hover {
    color: var(--green-dark);

    transform: translateX(3px);
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.privacy-content {
    min-width: 0;
}


/* =====================================================
   PRIVACY CARD
===================================================== */

.privacy-card {
    position: relative;

    display: grid;

    grid-template-columns: 60px minmax(0, 1fr);

    gap: 24px;

    padding: 34px 38px;

    margin-bottom: 18px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);

    scroll-margin-top: 100px;
}


/* =====================================================
   SECTION NUMBER
===================================================== */

.section-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #E9EADF;

    border-radius: 14px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;
}


/* =====================================================
   SECTION CONTENT
===================================================== */

.section-content {
    min-width: 0;
}


/* -----------------------------------------------------
   SECTION LABEL
----------------------------------------------------- */

.section-label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* -----------------------------------------------------
   SECTION TITLE
----------------------------------------------------- */

.section-content h2 {
    margin: 0 0 17px;

    color: var(--text);

    font-size: 23px;
    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* -----------------------------------------------------
   SUB TITLE
----------------------------------------------------- */

.section-content h3 {
    margin: 23px 0 9px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.5;

    font-weight: 700;
}


/* -----------------------------------------------------
   PARAGRAPH
----------------------------------------------------- */

.section-content p {
    margin: 0 0 15px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.85;
}

.section-content p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   LIST
===================================================== */

.section-content ul {
    margin: 9px 0 18px;

    padding-left: 19px;
}

.section-content li {
    margin-bottom: 8px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.75;
}

.section-content li:last-child {
    margin-bottom: 0;
}

.section-content li::marker {
    color: var(--green-dark);
}


/* =====================================================
   HIGHLIGHT BOX
===================================================== */

.privacy-highlight {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px 19px;

    margin: 18px 0;

    background: #F0F1EA;

    border-radius: 13px;
}

.privacy-highlight i {
    flex-shrink: 0;

    margin-top: 4px;

    color: var(--green-dark);

    font-size: 14px;
}

.privacy-highlight p {
    margin: 0;

    color: var(--green-dark);

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   CHECK LIST
===================================================== */

.check-list {
    list-style: none;

    margin: 10px 0 18px !important;

    padding: 0 !important;
}

.check-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 9px;
}

.check-list i {
    flex-shrink: 0;

    margin-top: 5px;

    color: var(--green-dark);

    font-size: 11px;
}


/* =====================================================
   EMAIL CONTACT
===================================================== */

.email-contact {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    background: #F0F1EA;

    border-radius: 11px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.email-contact i {
    font-size: 12px;
}

.email-contact:hover {
    background: var(--green-dark);

    color: var(--white);
}


/* =====================================================
   CTA
===================================================== */

.privacy-cta {
    padding: 0 0 75px;

    background: #F8F8F6;
}

.privacy-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 38px 42px;

    background: var(--green-dark);

    border-radius: 22px;

    color: var(--white);
}


/* -----------------------------------------------------
   CTA LABEL
----------------------------------------------------- */

.privacy-cta-inner span {
    display: block;

    margin-bottom: 7px;

    color: #AEB3A2;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* -----------------------------------------------------
   CTA TITLE
----------------------------------------------------- */

.privacy-cta-inner h2 {
    margin: 0 0 7px;

    color: var(--white);

    font-size: 22px;
    line-height: 1.4;

    font-weight: 700;
}


/* -----------------------------------------------------
   CTA DESCRIPTION
----------------------------------------------------- */

.privacy-cta-inner p {
    margin: 0;

    color: #C7CEC7;

    font-size: 12px;
    line-height: 1.7;
}


/* -----------------------------------------------------
   CTA BUTTON
----------------------------------------------------- */

.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 21px;

    background: var(--white);

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.cta-button:hover {
    background: var(--green);

    color: var(--white);

    transform: translateY(-2px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .privacy-layout {
        grid-template-columns: 220px minmax(0, 1fr);

        gap: 30px;
    }

    .privacy-card {
        padding: 30px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .container {
        width: min(var(--container),
                calc(100% - 32px));
    }

    .privacy-hero {
        padding: 60px 0 50px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .privacy-sidebar {
        position: static;
    }

    .privacy-sidebar-inner {
        padding: 22px;
    }

    .privacy-sidebar a {
        padding: 6px 0;
    }

    .privacy-card {
        grid-template-columns: 55px minmax(0, 1fr);

        gap: 20px;

        padding: 30px;
    }

    .privacy-cta-inner {
        padding: 32px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }

    .privacy-hero {
        padding: 48px 0 42px;
    }

    .privacy-eyebrow {
        padding: 8px 16px;

        font-size: 10px;
    }

    .privacy-hero h1 {
        margin-top: 20px;

        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .privacy-hero p {
        font-size: 13px;

        line-height: 1.8;
    }

    .privacy-wrapper {
        padding: 40px 0 60px;
    }

    .privacy-sidebar-inner {
        padding: 20px;
    }

    .sidebar-title {
        margin-bottom: 12px;
    }

    .privacy-sidebar a {
        padding: 6px 0;

        font-size: 11px;
    }

    .privacy-card {
        grid-template-columns: 1fr;

        gap: 17px;

        padding: 25px 22px;

        border-radius: 17px;
    }

    .section-number {
        width: 44px;
        height: 44px;

        border-radius: 12px;
    }

    .section-label {
        font-size: 8px;
    }

    .section-content h2 {
        margin-bottom: 14px;

        font-size: 20px;
    }

    .section-content h3 {
        font-size: 14px;
    }

    .section-content p,
    .section-content li {
        font-size: 12px;

        line-height: 1.8;
    }

    .privacy-highlight {
        padding: 15px 16px;
    }

    .privacy-highlight p {
        font-size: 12px;
    }

    .email-contact {
        max-width: 100%;

        font-size: 12px;

        overflow-wrap: anywhere;
    }

    .privacy-cta {
        padding-bottom: 50px;
    }

    .privacy-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 27px 23px;

        border-radius: 18px;
    }

    .privacy-cta-inner h2 {
        font-size: 19px;
    }

    .privacy-cta-inner p {
        font-size: 11px;
    }

    .cta-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .privacy-hero h1 {
        font-size: 35px;
    }

    .privacy-card {
        padding: 22px 18px;
    }

    .privacy-cta-inner {
        padding: 24px 19px;
    }

}

/* =====================================================
   HUBUNGI KAMI - RUANK
===================================================== */

:root {
    --green-dark: #06251B;
    --green: #7D866C;
    --green-light: #EEF0E8;

    --cream: #F5F2E9;
    --white: #FFFFFF;

    --text: #20241F;
    --text-soft: #6B6F67;

    --border: #E5E3DB;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);
    background: #F8F8F6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container),
            calc(100% - 40px));

    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.contact-hero {
    padding: 78px 0 65px;

    background: var(--cream);

    border-bottom: 1px solid var(--border);
}

.contact-hero-content {
    max-width: 820px;
}


/* EYEBROW */

.contact-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 9px 20px;

    border: 1px solid #B8B9AD;
    border-radius: 999px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* TITLE */

.contact-hero h1 {
    margin: 25px 0 16px;

    color: var(--text);

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}

.contact-hero h1 span {
    color: var(--green);
}


/* DESCRIPTION */

.contact-hero p {
    max-width: 720px;

    margin: 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.85;
}


/* =====================================================
   CONTENT
===================================================== */

.contact-wrapper {
    padding: 65px 0 75px;

    background: #F8F8F6;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr) minmax(300px, 0.8fr);

    gap: 35px;

    align-items: start;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    margin-bottom: 28px;
}

.section-heading>span {
    display: block;

    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 27px;
    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.section-heading p {
    max-width: 650px;

    margin: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 27px 29px;

    margin-bottom: 16px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);
}


/* ICON */

.contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    background: #E9EADF;

    border-radius: 14px;

    color: var(--green-dark);

    font-size: 17px;
}


/* CONTENT */

.contact-card-content {
    min-width: 0;
}

.contact-card-content>span {
    display: block;

    margin-bottom: 5px;

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-card-content h3 {
    margin: 0 0 8px;

    color: var(--text);

    font-size: 17px;
    line-height: 1.4;

    font-weight: 700;
}

.contact-card-content p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.75;
}


/* EMAIL */

.contact-card-content>a:not(.contact-button) {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

.contact-card-content>a:not(.contact-button):hover {
    color: var(--green);
}


/* =====================================================
   WHATSAPP CARD
===================================================== */

.contact-card-whatsapp {
    background: #F2F3ED;
}

.contact-card-whatsapp .contact-icon {
    background: var(--green-dark);

    color: white;
}


/* BUTTON */

.contact-button {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 15px;

    padding: 11px 17px;

    background: var(--green-dark);

    border-radius: 999px;

    color: white;

    font-size: 11px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-button:hover {
    background: var(--green);

    transform: translateY(-1px);
}


/* =====================================================
   SUPPORT CARD
===================================================== */

.support-card {
    padding: 32px;

    background: var(--green-dark);

    border-radius: 20px;

    color: white;
}

.support-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 22px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    color: white;

    font-size: 17px;
}

.support-label {
    display: block;

    margin-bottom: 7px;

    color: #AEB3A2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.support-card h2 {
    margin: 0 0 12px;

    color: white;

    font-size: 24px;
    line-height: 1.35;

    font-weight: 700;
}

.support-card>p {
    margin: 0 0 23px;

    color: #C7CEC7;

    font-size: 12px;
    line-height: 1.8;
}


/* SUPPORT LIST */

.support-card ul {
    list-style: none;

    margin: 0;
    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.support-card li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 11px 0;

    color: #E1E6E0;

    font-size: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card li:last-child {
    border-bottom: 0;
}

.support-card li i {
    margin-top: 4px;

    color: #AEB3A2;

    font-size: 10px;
}


/* =====================================================
   PARTNERSHIP
===================================================== */

.partnership-card {
    padding: 28px 30px;

    margin-top: 16px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);
}

.partnership-card>span {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.partnership-card h3 {
    margin: 0 0 9px;

    color: var(--text);

    font-size: 19px;
    font-weight: 700;
}

.partnership-card p {
    margin: 0 0 17px;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.8;
}

.partnership-card a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;

    transition: 0.2s ease;
}

.partnership-card a:hover {
    color: var(--green);
}


/* =====================================================
   NOTE
===================================================== */

.contact-note {
    padding: 0 0 70px;

    background: #F8F8F6;
}

.note-inner {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px 25px;

    background: #F0F1EA;

    border-radius: 16px;
}

.note-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    background: var(--green-dark);

    border-radius: 12px;

    color: white;

    font-size: 14px;
}

.note-inner span {
    display: block;

    margin-bottom: 5px;

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.note-inner p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   CTA
===================================================== */

.contact-cta {
    padding: 0 0 75px;

    background: #F8F8F6;
}

.contact-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 38px 42px;

    background: var(--green-dark);

    border-radius: 22px;

    color: white;
}

.contact-cta-inner>div>span {
    display: block;

    margin-bottom: 7px;

    color: #AEB3A2;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-cta-inner h2 {
    margin: 0 0 7px;

    color: white;

    font-size: 22px;
    line-height: 1.4;
}

.contact-cta-inner p {
    margin: 0;

    color: #C7CEC7;

    font-size: 12px;
    line-height: 1.7;
}


/* CTA BUTTON */

.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 21px;

    background: white;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.cta-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-side {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 16px;
    }

    .partnership-card {
        margin-top: 0;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 32px);
    }

    .contact-hero {
        padding: 60px 0 50px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-side {
        display: block;
    }

    .partnership-card {
        margin-top: 16px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-cta-inner {
        padding: 32px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }

    .contact-hero {
        padding: 48px 0 42px;
    }

    .contact-eyebrow {
        padding: 8px 16px;

        font-size: 10px;
    }

    .contact-hero h1 {
        margin-top: 20px;

        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .contact-hero p {
        font-size: 13px;
    }

    .contact-wrapper {
        padding: 42px 0 55px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .section-heading p {
        font-size: 12px;
    }

    .contact-card {
        gap: 15px;

        padding: 22px;

        border-radius: 16px;
    }

    .contact-icon {
        width: 43px;
        height: 43px;

        border-radius: 12px;

        font-size: 15px;
    }

    .contact-card-content h3 {
        font-size: 15px;
    }

    .contact-card-content p,
    .contact-card-content>a:not(.contact-button) {
        font-size: 12px;
    }

    .support-card {
        padding: 27px;

        border-radius: 18px;
    }

    .support-card h2 {
        font-size: 21px;
    }

    .partnership-card {
        padding: 25px;
    }

    .note-inner {
        padding: 20px;

        gap: 13px;
    }

    .note-inner p {
        font-size: 11px;
    }

    .contact-cta {
        padding-bottom: 50px;
    }

    .contact-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 27px 23px;

        border-radius: 18px;
    }

    .contact-cta-inner h2 {
        font-size: 19px;
    }

    .contact-cta-inner p {
        font-size: 11px;
    }

    .cta-button {
        width: 100%;
    }

}


/* =====================================================
   KARIR - RUANK
   STYLE MENGIKUTI KEBIJAKAN PRIVASI
===================================================== */

:root {
    --green-dark: #06251B;
    --green: #7D866C;
    --green-light: #EEF0E8;

    --cream: #F5F2E9;
    --white: #FFFFFF;

    --text: #20241F;
    --text-soft: #6B6F67;

    --border: #E5E3DB;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);

    background: #F8F8F6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container),
            calc(100% - 40px));

    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.career-hero {
    padding: 78px 0 65px;

    background: var(--cream);

    border-bottom: 1px solid var(--border);
}

.career-hero-content {
    max-width: 820px;
}


/* EYEBROW */

.career-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 19px;

    border: 1px solid #B8B9AD;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.career-eyebrow i {
    font-size: 11px;
}


/* TITLE */

.career-hero h1 {
    margin: 25px 0 16px;

    color: var(--text);

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}

.career-hero h1 span {
    color: var(--green);
}


/* DESCRIPTION */

.career-hero p {
    max-width: 760px;

    margin: 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.career-hero-buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 27px;
}

.career-btn-primary,
.career-btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 19px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.career-btn-primary {
    background: var(--green-dark);

    color: white;
}

.career-btn-primary:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}

.career-btn-secondary {
    background: white;

    border: 1px solid var(--border);

    color: var(--green-dark);
}

.career-btn-secondary:hover {
    background: var(--green-light);

    color: var(--green-dark);

    transform: translateY(-2px);
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.career-section {
    padding: 65px 0 75px;

    background: #F8F8F6;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.career-section-heading {
    max-width: 700px;

    margin: 0 auto 35px;

    text-align: center;
}

.career-section-heading>span {
    display: block;

    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.career-section-heading h2 {
    margin: 0 0 11px;

    color: var(--text);

    font-size: 27px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.career-section-heading h2 span,
.career-section-heading h2 em {
    color: var(--green);

    font-style: normal;
}

.career-section-heading p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.8;
}


/* LEFT HEADING */

.career-heading-left {
    max-width: none;

    text-align: left;
}

.career-heading-left p {
    max-width: 680px;
}


/* =====================================================
   CULTURE GRID
===================================================== */

.culture-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* CULTURE CARD */

.culture-card {
    padding: 27px 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.culture-card:hover {
    transform: translateY(-4px);

    border-color: #C7C9BB;

    box-shadow:
        0 14px 35px rgba(30, 35, 30, 0.07);
}


/* ICON */

.culture-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 17px;

    background: #E9EADF;

    border-radius: 14px;

    color: var(--green-dark);

    font-size: 19px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.culture-card:hover .culture-icon {
    background: var(--green-dark);

    color: white;
}


/* TITLE */

.culture-card h3 {
    margin: 0 0 7px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;
}


/* TEXT */

.culture-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   JOB SECTION
===================================================== */

.career-jobs {
    padding: 70px 0 80px;

    background: var(--cream);

    border-top: 1px solid var(--border);
}


/* =====================================================
   JOB GRID
===================================================== */

.job-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* =====================================================
   JOB CARD
===================================================== */

.job-card {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-width: 0;

    padding: 29px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 19px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.job-card:hover {
    transform: translateY(-4px);

    border-color: #C7C9BB;

    box-shadow:
        0 14px 35px rgba(30, 35, 30, 0.07);
}


/* =====================================================
   JOB TOP
===================================================== */

.job-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 14px;
}


/* DEPARTMENT */

.job-department {
    display: inline-flex;

    align-items: center;

    padding: 6px 12px;

    background: #E9EADF;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 9px;

    font-weight: 700;

    line-height: 1.3;
}


/* TYPE */

.job-type {
    flex-shrink: 0;

    color: var(--text-soft);

    font-size: 10px;

    font-weight: 600;
}


/* =====================================================
   JOB TITLE
===================================================== */

.job-content h3 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: -0.3px;
}


/* =====================================================
   JOB META
===================================================== */

.job-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 17px;
}

.job-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--text-soft);

    font-size: 10.5px;

    line-height: 1.5;
}

.job-meta i {
    color: var(--green-dark);

    font-size: 10px;
}


/* =====================================================
   JOB DESCRIPTION
===================================================== */

.job-content>p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.8;
}


/* =====================================================
   JOB FOOTER
===================================================== */

.job-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.job-footer strong {
    color: var(--green-dark);

    font-size: 12px;

    font-weight: 700;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.apply-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 10px 15px;

    background: var(--green-dark);

    border-radius: 999px;

    color: white;

    font-size: 10px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.apply-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-1px);
}


/* =====================================================
   CAREER CTA
===================================================== */

.career-cta {
    padding: 0 0 75px;

    background: var(--cream);
}

.career-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 38px 42px;

    background: var(--green-dark);

    border-radius: 22px;

    color: white;
}


/* =====================================================
   CTA CONTENT
===================================================== */

.career-cta-content {
    display: flex;

    align-items: center;

    gap: 18px;

    min-width: 0;
}

.career-cta-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    color: white;

    font-size: 16px;
}

.career-cta-content span {
    display: block;

    margin-bottom: 6px;

    color: #AEB3A2;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.career-cta-content h2 {
    margin: 0 0 7px;

    color: white;

    font-size: 21px;

    line-height: 1.4;

    font-weight: 700;
}

.career-cta-content p {
    max-width: 650px;

    margin: 0;

    color: #C7CEC7;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.career-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 20px;

    background: white;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.career-cta-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .culture-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 32px);
    }

    .career-hero {
        padding: 60px 0 50px;
    }

    .career-section {
        padding: 55px 0 65px;
    }

    .career-jobs {
        padding: 55px 0 65px;
    }

    .career-cta-inner {
        padding: 32px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .career-hero {
        padding: 48px 0 42px;
    }

    .career-eyebrow {
        padding: 8px 16px;

        font-size: 9px;
    }

    .career-hero h1 {
        margin-top: 20px;

        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .career-hero p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* HERO BUTTONS */

    .career-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .career-btn-primary,
    .career-btn-secondary {
        width: 100%;
    }


    /* HEADINGS */

    .career-section-heading h2 {
        font-size: 23px;
    }

    .career-section-heading p {
        font-size: 11px;
    }


    /* CULTURE */

    .culture-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .culture-card {
        display: grid;

        grid-template-columns: 50px 1fr;

        grid-template-rows: auto auto;

        column-gap: 15px;

        padding: 20px;

        text-align: left;
    }

    .culture-icon {
        grid-row: 1 / 3;

        width: 50px;
        height: 50px;

        margin: 0;
    }

    .culture-card h3 {
        margin: 2px 0 4px;

        font-size: 14px;
    }

    .culture-card p {
        font-size: 10.5px;
    }


    /* JOBS */

    .job-grid {
        gap: 12px;
    }

    .job-card {
        padding: 23px 20px;

        border-radius: 17px;
    }

    .job-top {
        align-items: flex-start;
    }

    .job-department {
        font-size: 8.5px;
    }

    .job-type {
        font-size: 9px;
    }

    .job-content h3 {
        font-size: 18px;
    }

    .job-meta {
        gap: 7px;

        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 14px;
    }

    .job-meta span {
        font-size: 10px;
    }

    .job-content>p {
        font-size: 11px;
    }

    .job-footer {
        flex-direction: column;

        align-items: stretch;

        margin-top: 21px;
    }

    .job-footer strong {
        font-size: 11px;
    }

    .apply-button {
        width: 100%;
    }


    /* CTA */

    .career-cta {
        padding-bottom: 50px;
    }

    .career-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 27px 23px;

        border-radius: 18px;
    }

    .career-cta-content {
        align-items: flex-start;
    }

    .career-cta-content h2 {
        font-size: 19px;
    }

    .career-cta-content p {
        font-size: 10.5px;
    }

    .career-cta-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .career-hero h1 {
        font-size: 35px;
    }

    .career-card {
        padding: 20px 18px;
    }

    .career-cta-inner {
        padding: 24px 19px;
    }

}


:root {
    --green-dark: #06251B;
    --green: #7D866C;
    --green-light: #EEF0E8;

    --cream: #F5F2E9;
    --white: #FFFFFF;

    --text: #20241F;
    --text-soft: #6B6F67;

    --border: #E5E3DB;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);

    background: #F8F8F6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container),
            calc(100% - 40px));

    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.career-hero {
    padding: 78px 0 65px;

    background: var(--cream);

    border-bottom: 1px solid var(--border);
}

.career-hero-content {
    max-width: 820px;
}


/* EYEBROW */

.career-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 19px;

    border: 1px solid #B8B9AD;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* TITLE */

.career-hero h1 {
    margin: 25px 0 16px;

    color: var(--text);

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}

.career-hero h1 span {
    display: block;

    color: var(--green);
}


/* DESCRIPTION */

.career-hero p {
    max-width: 720px;

    margin: 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   CONTENT
===================================================== */

.career-content {
    padding: 65px 0 80px;

    background: #F8F8F6;
}

.career-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 310px;

    gap: 55px;

    align-items: start;
}


/* =====================================================
   INTRO
===================================================== */

.career-intro {
    margin-bottom: 42px;

    padding-bottom: 35px;

    border-bottom: 1px solid var(--border);
}

.content-label {
    display: block;

    margin-bottom: 9px;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.career-intro p {
    max-width: 850px;

    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   SECTION BLOCK
===================================================== */

.career-section-block {
    display: grid;

    grid-template-columns: 48px minmax(0, 1fr);

    gap: 20px;

    padding-bottom: 42px;

    margin-bottom: 42px;

    border-bottom: 1px solid var(--border);
}

.career-section-block:last-child {
    margin-bottom: 0;

    border-bottom: 0;
}


/* NUMBER */

.section-number {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    background: var(--green-dark);

    border-radius: 13px;

    color: white;

    font-size: 11px;

    font-weight: 700;
}


/* SECTION CONTENT */

.section-content h2 {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 25px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.section-content>p {
    margin: 0 0 22px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.85;
}


/* =====================================================
   POSITION CARD
===================================================== */

.position-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 17px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);
}

.position-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    background: #E9EADF;

    border-radius: 13px;

    color: var(--green-dark);

    font-size: 17px;
}

.position-content>span {
    display: block;

    margin-bottom: 5px;

    color: var(--green-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.position-content h3 {
    margin: 0 0 9px;

    color: var(--text);

    font-size: 17px;

    font-weight: 700;
}

.position-content p {
    margin: 0 0 11px;

    color: var(--text-soft);

    font-size: 12px;
}


/* =====================================================
   LIST
===================================================== */

.position-content ul,
.notes-list {
    list-style: none;

    margin: 0;

    padding: 0;
}

.position-content li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 8px;

    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.7;
}

.position-content li:last-child {
    margin-bottom: 0;
}

.position-content li i {
    margin-top: 5px;

    color: var(--green);

    font-size: 9px;
}


/* =====================================================
   PROFESSIONAL LIST
===================================================== */

.professional-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 11px;

    margin-bottom: 20px;
}

.professional-item {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 15px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 13px;
}

.professional-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    background: #E9EADF;

    border-radius: 9px;

    color: var(--green-dark);

    font-size: 12px;
}

.professional-item span {
    color: var(--text);

    font-size: 10.5px;

    line-height: 1.5;

    font-weight: 600;
}


/* =====================================================
   DESIGNER NOTE
===================================================== */

.designer-note {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 20px;

    background: var(--green-light);

    border-radius: 14px;
}

.designer-note-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    background: var(--green-dark);

    border-radius: 10px;

    color: white;

    font-size: 11px;
}

.designer-note p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.8;
}

.designer-note strong {
    color: var(--green-dark);
}


/* =====================================================
   EMAIL
===================================================== */

.email-card {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 19px 21px;

    margin-bottom: 12px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;
}

.email-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #E9EADF;

    border-radius: 11px;

    color: var(--green-dark);

    font-size: 15px;
}

.email-card span,
.subject-box span {
    display: block;

    margin-bottom: 4px;

    color: var(--green-dark);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.email-card a {
    color: var(--green-dark);

    font-size: 13px;

    font-weight: 600;
}

.email-card a:hover {
    color: var(--green);
}


/* =====================================================
   SUBJECT
===================================================== */

.subject-box {
    padding: 16px 19px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 12px;
}

.subject-box strong {
    color: var(--text);

    font-size: 12px;

    font-weight: 600;
}


/* =====================================================
   NOTES
===================================================== */

.notes-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.note-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 14px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;
}

.note-item i {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    background: var(--green-dark);

    border-radius: 50%;

    color: white;

    font-size: 7px;
}

.note-item span {
    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.7;
}


/* =====================================================
   SIDEBAR
===================================================== */

.career-sidebar {
    position: sticky;

    top: 30px;
}


/* SIDE CARD */

.career-side-card {
    padding: 29px;

    background: var(--green-dark);

    border-radius: 20px;

    color: white;
}

.side-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    margin-bottom: 21px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 13px;

    font-size: 16px;
}

.career-side-card>span,
.career-contact-card>span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.career-side-card>span {
    color: #AEB3A2;
}

.career-side-card h3 {
    margin: 0 0 12px;

    color: white;

    font-size: 21px;

    line-height: 1.45;
}

.career-side-card p {
    margin: 0;

    color: #C7CEC7;

    font-size: 11px;

    line-height: 1.8;
}


/* CONTACT CARD */

.career-contact-card {
    padding: 25px;

    margin-top: 15px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 17px;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);
}

.career-contact-card>span {
    color: var(--green-dark);
}

.career-contact-card h3 {
    margin: 0 0 8px;

    color: var(--text);

    font-size: 18px;

    font-weight: 700;
}

.career-contact-card p {
    margin: 0 0 15px;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.75;
}

.career-contact-card a {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--green-dark);

    font-size: 11px;

    font-weight: 600;

    word-break: break-word;
}

.career-contact-card a:hover {
    color: var(--green);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .career-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .career-sidebar {
        position: static;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .career-contact-card {
        margin-top: 0;
    }

    .professional-list {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .career-hero {
        padding: 48px 0 42px;
    }

    .career-eyebrow {
        padding: 8px 16px;

        font-size: 9px;
    }

    .career-hero h1 {
        margin-top: 20px;

        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .career-hero p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* CONTENT */

    .career-content {
        padding: 45px 0 60px;
    }

    .career-layout {
        gap: 35px;
    }


    /* INTRO */

    .career-intro {
        margin-bottom: 35px;

        padding-bottom: 28px;
    }

    .career-intro p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* SECTION */

    .career-section-block {
        grid-template-columns: 38px minmax(0, 1fr);

        gap: 13px;

        padding-bottom: 32px;

        margin-bottom: 32px;
    }

    .section-number {
        width: 36px;
        height: 36px;

        border-radius: 11px;

        font-size: 9px;
    }

    .section-content h2 {
        font-size: 20px;
    }

    .section-content>p {
        font-size: 11.5px;
    }


    /* POSITION */

    .position-card {
        padding: 20px;

        gap: 13px;

        border-radius: 15px;
    }

    .position-icon {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .position-content h3 {
        font-size: 15px;
    }

    .position-content li {
        font-size: 10.5px;
    }


    /* PROFESSIONAL */

    .professional-list {
        gap: 8px;
    }

    .professional-item {
        padding: 13px;
    }


    /* DESIGNER NOTE */

    .designer-note {
        padding: 17px;

        gap: 10px;
    }

    .designer-note p {
        font-size: 10.5px;
    }


    /* EMAIL */

    .email-card {
        padding: 17px;

        gap: 12px;
    }

    .email-card a {
        font-size: 11px;
    }


    /* SIDEBAR */

    .career-sidebar {
        display: block;
    }

    .career-side-card {
        padding: 26px;

        border-radius: 18px;
    }

    .career-side-card h3 {
        font-size: 19px;
    }

    .career-contact-card {
        margin-top: 12px;
    }

}


/* =====================================================
   EXTRA SMALL
===================================================== */

@media (max-width: 380px) {

    .career-hero h1 {
        font-size: 35px;
    }

    .career-section-block {
        grid-template-columns: 1fr;
    }

    .section-number {
        margin-bottom: 3px;
    }

    .position-card {
        flex-direction: column;
    }

}


/* =====================================================
   BLOG - RUANK
   STYLE MENGIKUTI PRIVACY / KARIR / SYARAT
===================================================== */

:root {
    --green-dark: #06251B;
    --green: #7D866C;
    --green-light: #EEF0E8;

    --cream: #F5F2E9;
    --white: #FFFFFF;

    --text: #20241F;
    --text-soft: #6B6F67;

    --border: #E5E3DB;

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: var(--text);

    background: #F8F8F6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;

    max-width: 100%;
}

.container {
    width: min(var(--container),
            calc(100% - 40px));

    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.blog-hero {
    padding: 78px 0 65px;

    background: var(--cream);

    border-bottom: 1px solid var(--border);
}

.blog-hero-content {
    max-width: 820px;
}


/* EYEBROW */

.blog-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 19px;

    border: 1px solid #B8B9AD;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* TITLE */

.blog-hero h1 {
    margin: 25px 0 16px;

    color: var(--text);

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2.2px;
}

.blog-hero h1 span {
    display: block;

    color: var(--green);
}


/* DESCRIPTION */

.blog-hero p {
    max-width: 720px;

    margin: 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   FEATURED SECTION
===================================================== */

.blog-featured {
    padding: 65px 0 70px;

    background: #F8F8F6;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.blog-section-heading {
    max-width: 700px;

    margin-bottom: 30px;
}

.blog-section-heading>span {
    display: block;

    margin-bottom: 8px;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.blog-section-heading h2 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 27px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.blog-section-heading h2 em {
    color: var(--green);

    font-style: normal;
}

.blog-section-heading p {
    max-width: 650px;

    margin: 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   FEATURED ARTICLE
===================================================== */

.featured-blog {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(0, 1fr);

    min-height: 360px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);
}


/* IMAGE */

.featured-blog-image {
    position: relative;

    min-height: 360px;

    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.featured-blog:hover .featured-blog-image img {
    transform: scale(1.03);
}


/* FEATURED BADGE */

.featured-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 7px 12px;

    background: rgba(6, 37, 27, 0.92);

    border-radius: 999px;

    color: white;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* CONTENT */

.featured-blog-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 42px;
}


/* META */

.blog-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--text-soft);

    font-size: 10px;

    line-height: 1.5;
}

.blog-meta span {
    color: var(--green);
}


/* FEATURED TITLE */

.featured-blog-content h2 {
    margin: 0 0 14px;

    color: var(--text);

    font-size: 27px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: -0.6px;
}


/* FEATURED TEXT */

.featured-blog-content>p {
    max-width: 530px;

    margin: 0 0 24px;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.8;
}


/* PRIMARY BUTTON */

.blog-primary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    align-self: flex-start;

    padding: 12px 18px;

    background: var(--green-dark);

    border-radius: 999px;

    color: white;

    font-size: 11px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.blog-primary-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}


/* =====================================================
   FILTER
===================================================== */

.blog-filter-section {
    padding: 0 0 20px;

    background: #F8F8F6;
}

.blog-filter {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;
}

.blog-filter button {
    padding: 9px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 999px;

    color: var(--text-soft);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.blog-filter button:hover {
    border-color: #C5C8BA;

    color: var(--green-dark);
}

.blog-filter button.active {
    background: var(--green-dark);

    border-color: var(--green-dark);

    color: white;
}


/* =====================================================
   BLOG SECTION
===================================================== */

.blog-section {
    padding: 45px 0 80px;

    background: #F8F8F6;
}

.blog-heading-left {
    margin-bottom: 28px;
}


/* =====================================================
   BLOG GRID
===================================================== */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}


/* =====================================================
   BLOG CARD
===================================================== */

.blog-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(30, 35, 30, 0.035);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);

    border-color: #C7C9BB;

    box-shadow:
        0 14px 35px rgba(30, 35, 30, 0.07);
}


/* =====================================================
   BLOG IMAGE
===================================================== */

.blog-image {
    position: relative;

    height: 190px;

    overflow: hidden;

    background: #E9EADF;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}


/* CATEGORY */

.blog-category {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    background: rgba(6, 37, 27, 0.9);

    border-radius: 999px;

    color: white;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =====================================================
   BLOG CONTENT
===================================================== */

.blog-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 22px;
}


/* META */

.blog-content .blog-meta {
    margin-bottom: 10px;

    font-size: 9px;
}


/* TITLE */

.blog-content h3 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.45;

    font-weight: 700;

    letter-spacing: -0.2px;
}


/* DESCRIPTION */

.blog-content>p {
    margin: 0 0 17px;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.75;
}


/* READ MORE */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: var(--green-dark);

    font-size: 10px;

    font-weight: 700;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.blog-read-more:hover {
    gap: 11px;

    color: var(--green);
}


/* =====================================================
   CTA
===================================================== */

.blog-cta {
    padding: 0 0 75px;

    background: #F8F8F6;
}

.blog-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 38px 42px;

    background: var(--green-dark);

    border-radius: 22px;

    color: white;
}


/* CTA CONTENT */

.blog-cta-content {
    display: flex;

    align-items: center;

    gap: 18px;
}

.blog-cta-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    color: white;

    font-size: 16px;
}

.blog-cta-content span {
    display: block;

    margin-bottom: 6px;

    color: #AEB3A2;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.blog-cta-content h2 {
    margin: 0 0 7px;

    color: white;

    font-size: 21px;

    line-height: 1.4;

    font-weight: 700;
}

.blog-cta-content p {
    margin: 0;

    color: #C7CEC7;

    font-size: 11px;

    line-height: 1.7;
}


/* CTA BUTTON */

.blog-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 20px;

    background: white;

    border-radius: 999px;

    color: var(--green-dark);

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.blog-cta-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .featured-blog {
        grid-template-columns: 1fr;
    }

    .featured-blog-image {
        height: 300px;

        min-height: 0;
    }

    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .blog-hero {
        padding: 48px 0 42px;
    }

    .blog-eyebrow {
        padding: 8px 16px;

        font-size: 9px;
    }

    .blog-hero h1 {
        margin-top: 20px;

        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .blog-hero p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* FEATURED */

    .blog-featured {
        padding: 45px 0 45px;
    }

    .blog-section-heading h2 {
        font-size: 23px;
    }

    .blog-section-heading p {
        font-size: 11px;
    }

    .featured-blog {
        border-radius: 17px;
    }

    .featured-blog-image {
        height: 220px;
    }

    .featured-blog-content {
        padding: 25px 22px;
    }

    .featured-blog-content h2 {
        font-size: 21px;
    }

    .featured-blog-content>p {
        font-size: 11px;
    }


    /* FILTER */

    .blog-filter-section {
        padding-bottom: 12px;
    }

    .blog-filter {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .blog-filter::-webkit-scrollbar {
        display: none;
    }

    .blog-filter button {
        flex-shrink: 0;

        font-size: 9px;
    }


    /* ARTICLES */

    .blog-section {
        padding: 35px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .blog-image {
        height: 210px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 16px;
    }


    /* CTA */

    .blog-cta {
        padding-bottom: 50px;
    }

    .blog-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 27px 23px;

        border-radius: 18px;
    }

    .blog-cta-content h2 {
        font-size: 19px;
    }

    .blog-cta-content p {
        font-size: 10.5px;
    }

    .blog-cta-button {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .blog-hero h1 {
        font-size: 35px;
    }

    .featured-blog-content {
        padding: 22px 18px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-cta-inner {
        padding: 24px 19px;
    }

}