/**
 * body_style_desktop.css
 * Desktop overrides (min-width: 1300px).
 * Upgrades the mobile-first base in body_style_general.css
 * to full desktop layout: larger typography, multi-column grids,
 * wider padding, side-by-side buttons.
 */

@media (min-width: 1300px) {

    /* =========================
       DESIGN TOKEN OVERRIDES
    ========================= */

    :root {
        --header-height:     90px;
        --section-v-padding: 60px;
        --inner-h-padding:   60px;
        --fs-md:             18px;   /* slightly larger body text on desktop */
        --fs-2xl:            32px;   /* larger headings */
    }

    /* =========================
       TYPOGRAPHY
    ========================= */

    h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        margin-bottom: 48px;
    }

    /* =========================
       SECTION INNER SPACING
    ========================= */

    .ks-section-inner > div {
        margin-bottom: 32px;
    }

    /* =========================
       GRID LAYOUTS
    ========================= */

    /* Two-column side-by-side */
    .ks-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    /* Three-column grid */
    .ks-three-col {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* =========================
       CARDS
    ========================= */

    .ks-card {
        padding: 32px 28px;
    }

    /* =========================
       PROCESS STEPS
    ========================= */

    .ks-steps {
        gap: 28px;
    }

    .ks-step {
        gap: 24px;
    }

    .ks-step-number {
        width: 44px;
        height: 44px;
    }

    .ks-step-content h3 {
        font-size: 17px;
    }

    /* =========================
       HIGHLIGHT BOX
    ========================= */

    .ks-highlight-box {
        padding: 24px 28px;
        margin: 32px 0;
    }

    .ks-highlight-box p {
        max-width: 50ch;
    }

    /* =========================
       CTA SECTION
    ========================= */

    .ks-cta {
        padding: 64px 60px;
    }

    .ks-cta h2 {
        font-size: 32px;
    }

    /* CTA buttons: side-by-side on desktop */
    .ks-cta .ks-btn,
    .ks-cta .ks-btn-outline {
        display: inline-block;
        width: auto;
        margin: 0;
    }

    /* =========================
       BUTTONS
    ========================= */

    .ks-btn {
        padding: 14px 36px;
    }

    /* Outline button gets left margin when next to primary button */
    .ks-btn + .ks-btn-outline,
    .ks-btn-outline {
        margin-left: 12px;
    }

    /* =========================
       HERO BUTTON ROW
    ========================= */

    /* Side-by-side on desktop */
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    /* =========================
       CONTACT FORM
    ========================= */

    /* Two inputs side-by-side */
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Submit button: auto-width on desktop */
    .form-submit {
        display: inline-block;
        width: auto;
        align-self: flex-start;
    }

    /* =========================
       JOB CARD HEADER
    ========================= */

    /* Title and badges side-by-side on desktop */
    .job-card .job-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .job-card {
        padding: 32px 28px;
    }
}
