/* ============================================================
   Careers page — vcar-*
   Navy: #012255  |  Yellow: #FAAF16
   ============================================================ */

.vcar-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Shared typography ── */
.vcar-label {
    display: block;
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #012255;
    margin-bottom: 12px;
}
/* Rule of thumb: eyebrow on navy background = yellow */
.vcar-label--light { color: #FAAF16; }

.vcar-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #012255;
}
.vcar-section-title--light { color: #fff; }

.vcar-section-body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: #3a4a6b;
    margin: 0 0 32px;
}
.vcar-section-body--light { color: rgba(255,255,255,0.75); }

/* ── Shared buttons ── */
/* Same metrics as the global .victor-btn so every button reads the same */
.vcar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: var(--victor-space-sm) var(--victor-space-lg);
    border-radius: var(--victor-radius-md);
    font-size: var(--victor-fs-base);
    font-weight: var(--victor-fw-semibold);
    text-decoration: none;
    transition: opacity 0.18s, background 0.18s, border-color 0.18s;
    border: 2px solid transparent;
}
.vcar-btn--yellow  { background: #FAAF16; color: #012255; }
.vcar-btn--yellow:hover { opacity: 0.88; }
.vcar-btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.vcar-btn--ghost:hover,
.vcar-btn--ghost:focus-visible {
    background: var(--victor-accent-light); /* light yellow, site standard on navy */
    color: #012255;
    border-color: var(--victor-accent-light);
}
.vcar-btn--navy    { background: #012255; color: #fff; }
.vcar-btn--navy:hover { opacity: 0.85; }
.vcar-btn--outline-navy { background: transparent; color: #012255; border-color: #012255; }
.vcar-btn--outline-navy:hover { background: #012255; color: #fff; }

/* ── Photo placeholder ── */
.vcar-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: #d0d7e5;
    border-radius: 10px;
}
.vcar-photo-placeholder--light { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════════
   1. HERO — white, centered, wide photo below
   ══════════════════════════════════════════════ */
.vcar-hero {
    background: #fff;
    padding: 64px 0 72px;
}
.vcar-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Same formatting as the homepage hero (.victor-hero__*) */
.vcar-hero__title {
    font-size: clamp(2.75rem, 9vw, 5.5rem);
    font-weight: var(--victor-fw-black);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--victor-primary);
    margin: 0 0 var(--victor-space-lg);
}
.vcar-hero__sub {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: var(--victor-fw-bold);
    text-transform: uppercase;
    color: var(--victor-lightblue);
    letter-spacing: 0.01em;
    margin: 0 auto var(--victor-space-md);
    max-width: 600px;
}
.vcar-hero__body {
    font-size: var(--victor-fs-md);
    color: var(--victor-text-light);
    line-height: var(--victor-lh-relaxed);
    max-width: 620px;
    margin: 0 auto var(--victor-space-xl);
}
.vcar-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.vcar-hero__photo { width: 100%; }
.vcar-hero__photo img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    max-height: 520px;
}

/* ══════════════════════════════════════════════
   2. WHY VICTOR + TEAM — duo cards
   ══════════════════════════════════════════════ */
.vcar-duo {
    background: #fff;
    padding: 0 0 80px;
}
.vcar-duo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.vcar-duo__card {
    border-radius: 14px;
    padding: 44px 40px;
}
.vcar-duo__card--yellow { background: #FAAF16; color: #012255; }
.vcar-duo__card--navy   { background: #012255; color: #fff; }
.vcar-duo__card--yellow .vcar-label { color: #012255; opacity: 0.7; }
.vcar-duo__title {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 900;
    line-height: 1.2;
    color: inherit;
    margin: 0 0 14px;
}
.vcar-duo__title--light { color: #fff; }
.vcar-duo__body {
    font-size: var(--victor-fs-base);
    line-height: 1.65;
    color: inherit;
    opacity: 0.85;
    margin: 0 0 28px;
}
.vcar-why__pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vcar-why__pillar {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.vcar-why__pillar-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #012255;
    color: #FAAF16;
    font-size: 0.72rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.vcar-why__pillar-title {
    display: block;
    font-size: var(--victor-fs-base);
    font-weight: 800;
    color: #012255;
    margin-bottom: 4px;
}
.vcar-why__pillar-desc {
    font-size: var(--victor-fs-sm);
    line-height: 1.6;
    color: #012255;
    opacity: 0.8;
    margin: 0;
}
/* Mockup: big WHITE letter outside, white rounded card beside it */
.vcar-team__list { display: flex; flex-direction: column; gap: 20px; }
.vcar-team__row {
    display: flex;
    gap: 22px;
    align-items: center;
}
.vcar-team__row-letter {
    flex-shrink: 0;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    width: 48px;
    text-align: center;
    line-height: 1;
}
.vcar-team__row-text {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 16px 24px;
}
.vcar-team__row-title {
    display: block;
    font-size: var(--victor-fs-base);
    font-weight: 800;
    color: #012255;
    margin-bottom: 2px;
}
.vcar-team__row-desc {
    font-size: var(--victor-fs-sm);
    line-height: 1.5;
    color: #3a4a6b;
    margin: 0;
}

/* ══════════════════════════════════════════════
   4. BENEFITS — light band, white cards, line icons
   ══════════════════════════════════════════════ */
.vcar-ben {
    background: #f7f8fc;
    padding: 80px 0;
}
.vcar-ben__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.vcar-ben__card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 10px;
    padding: 32px 28px;
}
.vcar-ben__card-icon {
    display: block;
    margin-bottom: 16px;
}
.vcar-ben__card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}
.vcar-ben__card--hl {
    background: #FAAF16;
    border-color: #FAAF16;
}
.vcar-ben__card-title {
    font-size: var(--victor-fs-md);
    font-weight: 800;
    color: #012255;
    margin: 0 0 18px;
}
.vcar-ben__card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vcar-ben__card-list li {
    font-size: var(--victor-fs-sm);
    color: #012255;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
/* Round navy bullet, per mockup */
.vcar-ben__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #012255;
}
.vcar-ben__card--hl .vcar-ben__card-list li { color: #012255; }
.vcar-ben__card--hl .vcar-ben__card-list li::before { color: #012255; }
.vcar-ben__disclaimer {
    font-size: var(--victor-fs-xs);
    color: #8a95a8;
    line-height: 1.6;
    border-top: 1px solid #e5e9f0;
    padding-top: 16px;
}

/* ══════════════════════════════════════════════
   5. LEARNING & GROWTH
   ══════════════════════════════════════════════ */
.vcar-learn {
    background: #012255;
    padding: 80px 0;
    color: #fff;
}
/* Yellow eyebrow on the navy band, per mockup */
.vcar-learn .vcar-label {
    color: #FAAF16;
}
.vcar-learn__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
}
.vcar-learn__photo img {
    width: 100%;
    /* 20px: clips the white rounded corners baked into exported images */
    border-radius: 20px;
    display: block;
    object-fit: cover;
    max-height: 380px;
}
.vcar-learn__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.vcar-learn__steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #FAAF16; /* yellow connector, per mockup */
    z-index: 0;
}
.vcar-learn__step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.vcar-learn__step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.vcar-learn__step-dot span {
    font-size: 0.8rem;
    font-weight: 900;
    color: #012255;
}
.vcar-learn__step-title {
    display: block;
    font-size: var(--victor-fs-base);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.vcar-learn__step-desc {
    font-size: var(--victor-fs-sm);
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ══════════════════════════════════════════════
   6. INTERNSHIPS
   ══════════════════════════════════════════════ */
.vcar-intern {
    background: #fff;
    padding: 80px 0;
}
.vcar-intern__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
}
.vcar-intern__photo img {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    max-height: 420px;
}
.vcar-intern__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.vcar-intern__types { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.vcar-intern__type-pill {
    font-size: var(--victor-fs-sm);
    font-weight: 700;
    color: #012255;
    background: #f0f3fa;
    border-radius: 999px;
    padding: 6px 16px;
}
.vcar-intern__path-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #012255;
    margin-bottom: 28px;
}
.vcar-intern__path {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.vcar-intern__path-step {
    background: #fff;
    border: 1.5px solid rgba(1, 34, 85, 0.35); /* more visible, per mockup */
    border-radius: 16px;
    padding: 24px 22px;
}
/* All navy circles (no yellow first chip) */
.vcar-intern__path-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #012255;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.vcar-intern__path-title {
    display: block;
    font-size: var(--victor-fs-base);
    font-weight: 800;
    color: #012255;
    margin-bottom: 6px;
}
.vcar-intern__path-desc {
    font-size: var(--victor-fs-sm);
    line-height: 1.6;
    color: #3a4a6b;
    margin: 0;
}

/* ══════════════════════════════════════════════
   7. EMPLOYEE EXPERIENCE — yellow, per mockup
   ══════════════════════════════════════════════ */
.vcar-emp {
    background: #FAAF16;
    padding: 80px 0;
}
.vcar-emp__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.vcar-emp .vcar-section-title { color: #012255; }
.vcar-emp .vcar-section-body  { color: #012255; opacity: 0.85; margin-bottom: 0; }
.vcar-emp .vcar-label         { color: #012255; }
.vcar-emp__quote-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    position: relative;
}
/* Mockup: italic navy quote, short yellow divider, navy label, gray sub */
.vcar-emp__quote {
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}
.vcar-emp__quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.55;
    color: #012255;
    font-weight: 600;
    margin: 0;
}
.vcar-emp__quote-label {
    font-size: var(--victor-fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #012255;
    margin: 0 0 10px;
}
.vcar-emp__quote-label::before {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: #FAAF16;
    margin-bottom: 20px;
}
.vcar-emp__quote-sub {
    font-size: var(--victor-fs-sm);
    line-height: 1.55;
    color: #3a4a6b;
    margin: 0;
}

/* ══════════════════════════════════════════════
   8. FINAL CTA
   ══════════════════════════════════════════════ */
.vcar-cta {
    background: #f7f8fc;
    padding: 64px 0;
}
.vcar-cta__card {
    background: #012255;
    border-radius: 16px;
    padding: 56px 64px;
    text-align: center;
    color: #fff;
}
.vcar-cta__title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin: 12px 0 16px;
}
.vcar-cta__body {
    font-size: var(--victor-fs-md);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto 36px;
}
.vcar-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .vcar-duo__grid,
    .vcar-learn__top,
    .vcar-intern__top,
    .vcar-emp__inner        { grid-template-columns: 1fr; }

    .vcar-ben__cards        { grid-template-columns: 1fr; }
    .vcar-learn__steps      { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .vcar-learn__steps::before { display: none; }
    .vcar-intern__path      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .vcar-learn__steps      { grid-template-columns: 1fr; }
    .vcar-intern__path      { grid-template-columns: 1fr; }
    .vcar-cta__card         { padding: 40px 24px; }
    .vcar-duo__card         { padding: 32px 24px; }
}
