﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.openings-body {
    font-family: 'DM Sans', sans-serif;
    background: #f1f3f7;
    min-height: 100vh;
    overflow-x: hidden;
}

.op-header {
    background: #fff;
    border-bottom: 0.5px solid #dde1e8;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
}

.op-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.op-header-logo {
    height: 36px;
    object-fit: contain;
}

.op-header-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: #0f1f3d;
    margin: 0;
    line-height: 1.2;
}

.op-header-brand small {
    font-size: 11px;
    color: #7a8299;
    font-weight: 400;
}

.op-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 48px;
}

.op-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #7a8299;
    margin-bottom: 20px;
}

    .op-breadcrumb a {
        color: #1a3a6c;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .op-breadcrumb a:hover {
            text-decoration: underline;
        }

.op-breadcrumb-sep {
    color: #dde1e8;
}

.op-breadcrumb span {
    color: #0f1f3d;
    font-weight: 500;
}

.op-category-header {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #dde1e8;
    border-left: 4px solid #0f1f3d;
    padding: 20px 24px;
    margin-bottom: 24px;
}

    .op-category-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 500;
        color: #0f1f3d;
        margin-bottom: 4px;
    }

    .op-category-header p {
        font-size: 13px;
        color: #7a8299;
        margin: 0;
    }

.op-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.op-card {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #dde1e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .op-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(15,31,61,0.1);
    }

.op-card-img {
    height: 180px;
    overflow: hidden;
    background: #1a3a6c;
}

    .op-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.op-card:hover .op-card-img img {
    transform: scale(1.05);
}

.op-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.op-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f1f3d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.op-card-meta {
    font-size: 12px;
    color: #7a8299;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

    .op-card-meta i {
        color: #1a3a6c;
        width: 13px;
        font-size: 11px;
    }

    .op-card-meta strong {
        color: #0f1f3d;
    }

.op-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
}

.op-deadline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #dc3545;
    background: #fff5f5;
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: auto;
    margin-bottom: 12px;
}

.op-card-footer {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
}

.op-btn {
    flex: 1;
    height: 38px;
    border-radius: 8px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.op-btn-primary {
    background: #0f1f3d;
    color: #fff;
}

    .op-btn-primary:hover {
        background: #1a3a6c;
        color: #fff;
    }

.op-btn-outline {
    background: #f1f3f7;
    border: 1px solid #dde1e8;
    color: #0f1f3d;
}

    .op-btn-outline:hover {
        background: #e4e8f0;
        color: #0f1f3d;
    }

.op-btn-full {
    width: 90%;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #0f1f3d;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.2s;
    margin: 0 16px 16px;
}

    .op-btn-full:hover {
        background: #1a3a6c;
        color: #fff;
    }

.op-empty {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #dde1e8;
    padding: 48px 24px;
    text-align: center;
    grid-column: 1 / -1;
}

    .op-empty i {
        font-size: 36px;
        color: #dde1e8;
        margin-bottom: 12px;
        display: block;
    }

    .op-empty h3 {
        font-size: 15px;
        color: #0f1f3d;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .op-empty p {
        font-size: 13px;
        color: #7a8299;
        margin-bottom: 16px;
    }

.op-footer {
    background: #fff;
    border-top: 0.5px solid #dde1e8;
    padding: 16px 24px;
    text-align: center;
    font-size: 12px;
    color: #b0b8cc;
}

    .op-footer a {
        color: #1a3a6c;
        text-decoration: none;
    }

@media (max-width: 992px) {
    .op-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .op-grid {
        grid-template-columns: 1fr;
    }

    .op-main {
        padding: 20px 16px 40px;
    }

    .op-header-brand small {
        display: none;
    }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-hero {
    background: #0f1f3d;
    padding: 80px 24px 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(74,143,232,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.lp-hero-supertitle {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.lp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.lp-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}
.lp-hero-dates {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.lp-hero-dates i { color: rgba(255,255,255,0.4); }
.lp-hero-dates strong { color: #fff; }
.lp-hero-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    line-height: 1.6;
}
.lp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0f1f3d;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.lp-hero-btn:hover {
    background: #eef3fb;
    color: #0f1f3d;
    transform: translateY(-2px);
    text-decoration: none;
}
.lp-hero-closed {
    display: inline-block;
    background: #fee2e2;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
}
.lp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.lp-hero-wave svg { display: block; }
.lp-hero-wave .fill-bg { fill: #f1f3f7; }

.lp-instructions {
    background: #f1f3f7;
    padding: 56px 24px;
}
.lp-instructions-inner {
    max-width: 800px;
    margin: 0 auto;
}
.lp-section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #1a3a6c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.lp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 20px;
    line-height: 1.3;
}
.lp-instructions-body {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #dde1e8;
    padding: 24px 28px;
    font-size: 14px;
    color: #3a4a6b;
    line-height: 1.8;
}

.lp-cta {
    background: #fff;
    padding: 72px 24px;
    text-align: center;
}
.lp-cta-inner { max-width: 600px; margin: 0 auto; }
.lp-cta-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #1a3a6c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.lp-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 8px;
    line-height: 1.3;
}
.lp-cta-sub {
    font-size: 13px;
    color: #7a8299;
    margin-bottom: 28px;
    line-height: 1.6;
}
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f1f3d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    padding: 13px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.lp-cta-btn:hover {
    background: #1a3a6c;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .lp-hero { padding: 60px 20px 100px; }
    .lp-hero-title { font-size: 26px; }
    .lp-section-title { font-size: 22px; }
    .lp-cta-title { font-size: 22px; }
    .lp-instructions { padding: 40px 20px; }
    .lp-cta { padding: 52px 20px; }
}