/* =============================================================
   PLACEMENTS PAGE  (page-placements.php)
   ============================================================= */

:root {
    --pl-green:  #1A5200;
    --pl-gold:   #C8960C;
    --pl-dark:   #0d2b00;
    --pl-light:  #f4f8f2;
}

.pl-page { overflow-x: hidden; }

/* ── Shared utilities ─────────────────────────────────────── */
.pl-kicker {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pl-green);
    border: 1px solid rgba(26,82,0,.25);
    border-radius: 999px;
    padding: .3rem 1.1rem;
    margin-bottom: .9rem;
}
.pl-kicker--gold {
    color: #7a5600;
    border-color: rgba(200,150,12,.35);
    background: rgba(200,150,12,.06);
}
.pl-section { padding: 4.5rem 0; }
.pl-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}
.pl-section-head--light .pl-section-title { color: #fff; }
.pl-section-head--light .pl-section-desc  { color: rgba(255,255,255,.75); }
.pl-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #111;
    margin: 0 0 .8rem;
    line-height: 1.15;
}
.pl-section-desc {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}
.pl-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.pl-btn--primary { background: var(--pl-gold); color: #000; border-color: var(--pl-gold); }
.pl-btn--primary:hover { background: #a97a00; border-color: #a97a00; color: #fff; }
.pl-btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.pl-btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.pl-btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ── Section 1: Hero ──────────────────────────────────────── */
.pl-hero {
    background: linear-gradient(135deg, #062500 0%, var(--pl-green) 55%, #0e3d00 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pl-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200,150,12,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.04) 0%, transparent 40%);
    pointer-events: none;
}
.pl-hero__top { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.pl-hero__top .pl-kicker {
    color: #f5d97e;
    border-color: rgba(200,150,12,.4);
    background: rgba(200,150,12,.1);
}
.pl-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #fff;
}
.pl-hero__sub { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.8); margin: 0; }
.pl-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .pl-hero__stats { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .pl-hero__stats { grid-template-columns: 1fr; } }

.pl-stat-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: transform .2s;
}
.pl-stat-card:hover { transform: translateY(-3px); }
.pl-stat-card--gold { background: rgba(200,150,12,.18); border-color: rgba(200,150,12,.4); }
.pl-stat-card__value {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: .35rem;
}
.pl-stat-card--gold .pl-stat-card__value { color: #f5d97e; }
.pl-stat-card__label { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.pl-stat-card__sub { font-size: .72rem; color: rgba(255,255,255,.5); }
.pl-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Section 2: Batch Profile ─────────────────────────────── */
.pl-batch { background: #fff; }
.pl-batch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}
@media (max-width: 1100px) { .pl-batch-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px)  { .pl-batch-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px)  { .pl-batch-grid { grid-template-columns: 1fr; } }

.pl-batch-card {
    background: var(--pl-light);
    border: 1px solid #e0ead8;
    border-radius: 14px;
    padding: 1.4rem 1.1rem 1rem;
    text-align: center;
    transition: box-shadow .22s, transform .22s;
}
.pl-batch-card:hover { box-shadow: 0 6px 24px rgba(26,82,0,.12); transform: translateY(-2px); }
.pl-batch-card__icon { font-size: 2rem; margin-bottom: .4rem; }
.pl-batch-card__name { font-size: 1.25rem; font-weight: 900; color: var(--pl-green); margin-bottom: .15rem; }
.pl-batch-card__full { font-size: .72rem; color: #666; margin-bottom: 1rem; line-height: 1.3; }
.pl-batch-card__stats { display: flex; justify-content: space-between; margin-bottom: .8rem; }
.pl-batch-stat { flex: 1; }
.pl-batch-stat__val { display: block; font-size: 1rem; font-weight: 800; color: #111; }
.pl-batch-stat__lbl { display: block; font-size: .64rem; color: #888; text-transform: uppercase; letter-spacing: .05em; }
.pl-batch-card__bar-wrap { background: #dde8d6; border-radius: 999px; height: 6px; overflow: hidden; margin-bottom: .6rem; }
.pl-batch-card__bar { height: 100%; background: var(--pl-green); border-radius: 999px; transition: width .8s ease; }
.pl-batch-card__sectors { font-size: .72rem; color: #666; line-height: 1.4; }

/* ── Section 3: Salary Ranges ─────────────────────────────── */
.pl-salary { background: var(--pl-dark); }
.pl-salary-grid { display: flex; flex-direction: column; gap: .75rem; max-width: 900px; margin: 0 auto; }
.pl-salary-row {
    display: grid;
    grid-template-columns: 220px 1fr 160px;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    padding: .9rem 1.2rem;
    border: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 700px) {
    .pl-salary-row { grid-template-columns: 1fr; gap: .4rem; }
    .pl-salary-row__bar-wrap { order: 3; }
    .pl-salary-row__right { order: 2; display: flex; justify-content: space-between; }
}
.pl-salary-row__left { display: flex; align-items: center; gap: .6rem; }
.pl-salary-row__icon { font-size: 1.1rem; flex-shrink: 0; }
.pl-salary-row__name { font-size: .82rem; color: #e0e0e0; font-weight: 600; }
.pl-salary-row__bar-wrap { background: rgba(255,255,255,.1); border-radius: 999px; height: 8px; overflow: hidden; }
.pl-salary-row__bar { height: 100%; border-radius: 999px; transition: width .9s ease; }
.pl-salary-row__right { text-align: right; }
.pl-salary-row__avg { display: block; font-size: .9rem; font-weight: 800; color: #fff; }
.pl-salary-row__range { display: block; font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .1rem; }
.pl-salary-note { text-align: center; font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 1.5rem; }

/* ── Section 4: Role Tabs ─────────────────────────────────── */
.pl-roles { background: var(--pl-light); }
.pl-roles-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    border: 1px solid #cdddc5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
@media (max-width: 768px) { .pl-roles-wrap { grid-template-columns: 1fr; } }

.pl-roles-tabs {
    background: #f0f5ec;
    border-right: 1px solid #cdddc5;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .pl-roles-tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid #cdddc5; }
}
.pl-roles-tab {
    text-align: left;
    padding: 1.1rem 1.2rem;
    font-size: .84rem;
    font-weight: 600;
    color: #444;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    transition: all .18s;
    white-space: nowrap;
}
.pl-roles-tab:hover { background: #e4eede; color: var(--pl-green); }
.pl-roles-tab.is-active { background: #fff; color: var(--pl-green); border-left-color: var(--pl-green); font-weight: 700; }
.pl-roles-tab__arrow { font-size: 1.1rem; opacity: .4; }
.pl-roles-tab.is-active .pl-roles-tab__arrow { opacity: 1; }

.pl-roles-panels { padding: 2rem; }
.pl-roles-panel { display: none; }
.pl-roles-panel.is-active { display: block; }
.pl-roles-panel__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 600px) { .pl-roles-panel__inner { grid-template-columns: 1fr; } }

.pl-roles-panel__heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin: 0 0 .75rem; }
.pl-roles-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.pl-roles-list li { font-size: .87rem; color: #333; padding: .4rem .7rem; border-radius: 8px; background: var(--pl-light); border: 1px solid #dde8d6; }
.pl-roles-list li::before { content: "✓  "; color: var(--pl-green); font-weight: 700; }

.pl-roles-donut-wrap { text-align: center; margin-bottom: 1.5rem; }
.pl-roles-donut { position: relative; width: 120px; height: 120px; margin: 0 auto .5rem; }
.pl-donut-svg { transform: rotate(-90deg); }
.pl-donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pl-donut-pct { font-size: 1.6rem; font-weight: 900; color: var(--pl-green); line-height: 1; }
.pl-donut-sub { font-size: .65rem; color: #888; }
.pl-donut-role { font-size: .84rem; font-weight: 700; color: #333; }

.pl-roles-logos__heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin: 0 0 .5rem; }
.pl-roles-logos__grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.pl-company-pill { font-size: .75rem; padding: .25rem .75rem; background: #fff; border: 1px solid #cdddc5; border-radius: 999px; color: #333; font-weight: 500; }
.pl-roles-panel__note { font-size: .78rem; color: #666; line-height: 1.6; margin-top: 1rem; padding: .75rem 1rem; background: var(--pl-light); border-left: 3px solid var(--pl-green); border-radius: 0 8px 8px 0; }

/* ── Section 5: Career Timeline ───────────────────────────── */
.pl-progression { background: var(--pl-dark); }
.pl-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .pl-timeline { grid-template-columns: 1fr; } }

.pl-timeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 1.5rem; }
.pl-timeline-step__icon {
    font-size: 2.5rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200,150,12,.15);
    border: 2px solid rgba(200,150,12,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}
.pl-timeline-step__connector { display: none; }
.pl-timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -1px;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(200,150,12,.4), transparent);
}
@media (max-width: 768px) {
    .pl-timeline-step:not(:last-child)::after { display: none; }
    .pl-timeline-step { padding: 0 0 2rem; border-left: 2px solid rgba(200,150,12,.25); margin-left: 1rem; padding-left: 1.5rem; align-items: flex-start; text-align: left; }
    .pl-timeline-step__icon { margin-bottom: .75rem; }
}
.pl-timeline-step__year { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pl-gold); border: 1px solid rgba(200,150,12,.35); border-radius: 999px; padding: .2rem .8rem; margin-bottom: .5rem; }
.pl-timeline-step__label { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 .5rem; }
.pl-timeline-step__salary { font-size: 1.3rem; font-weight: 900; color: var(--pl-gold); margin-bottom: .5rem; }
.pl-timeline-step__roles { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; margin-bottom: .5rem; }
.pl-timeline-step__desc { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ── Section 6: Alumni Journeys ───────────────────────────── */
.pl-alumni { background: #fff; }
.pl-alumni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .pl-alumni-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pl-alumni-grid { grid-template-columns: 1fr; } }

.pl-alumni-card { border: 1px solid #e0ead8; border-radius: 16px; overflow: hidden; background: var(--pl-light); display: flex; flex-direction: column; }
.pl-alumni-card__head { display: flex; align-items: center; gap: .85rem; padding: 1.1rem 1.2rem .8rem; }
.pl-alumni-card__photo-wrap { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--pl-green); border: 2px solid #cdddc5; }
.pl-alumni-card__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pl-alumni-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: rgba(255,255,255,.6); }
.pl-alumni-card__name { font-size: .92rem; font-weight: 700; color: #111; margin: 0 0 .1rem; }
.pl-alumni-card__meta { font-size: .72rem; color: #777; margin: 0; }

.pl-alumni-card__journey { display: flex; align-items: center; gap: .5rem; padding: .9rem 1.2rem; background: #fff; border-top: 1px solid #e0ead8; border-bottom: 1px solid #e0ead8; }
.pl-alumni-journey-panel { flex: 1; text-align: center; padding: .6rem .4rem; border-radius: 10px; }
.pl-alumni-journey-panel--before { background: #f0f5ec; border: 1px solid #cdddc5; }
.pl-alumni-journey-panel--after { background: rgba(26,82,0,.08); border: 1px solid rgba(26,82,0,.2); }
.pl-alumni-journey-panel__label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: .25rem; }
.pl-alumni-journey-panel__ctc { font-size: 1rem; font-weight: 900; color: var(--pl-green); line-height: 1.1; }
.pl-alumni-journey-panel--after .pl-alumni-journey-panel__ctc { color: #1A5200; font-size: 1.1rem; }
.pl-alumni-journey-panel__note,
.pl-alumni-journey-panel__role { font-size: .68rem; color: #777; margin-top: .15rem; }
.pl-alumni-journey-arrow { font-size: 1.2rem; color: var(--pl-gold); font-weight: 900; flex-shrink: 0; }
.pl-alumni-card__quote { font-size: .8rem; font-style: italic; color: #555; line-height: 1.55; padding: .8rem 1.2rem; margin: 0; border-bottom: 1px solid #e0ead8; }
.pl-alumni-card__foot { padding: .7rem 1.2rem; display: flex; align-items: center; }
.pl-alumni-card__logo { height: 28px; width: auto; max-width: 90px; object-fit: contain; filter: grayscale(20%); }
.pl-alumni-card__company { font-size: .78rem; font-weight: 700; color: #333; }

/* ── Section 7: Testimonials ──────────────────────────────── */
.pl-testi { background: var(--pl-dark); }
.pl-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .pl-testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pl-testi-grid { grid-template-columns: 1fr; } }

.pl-testi-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.pl-testi-card__stars { color: var(--pl-gold); font-size: 1rem; letter-spacing: .05em; margin-bottom: .5rem; }
.pl-testi-card__quote { font-size: .87rem; color: rgba(255,255,255,.8); line-height: 1.65; font-style: italic; margin: 0; }
.pl-testi-card__foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.1); }
.pl-testi-card__person { display: flex; align-items: center; gap: .7rem; }
.pl-testi-card__photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,.2); }
.pl-testi-card__photo--placeholder { width: 44px; height: 44px; border-radius: 50%; background: var(--pl-green); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; font-weight: 700; flex-shrink: 0; }
.pl-testi-card__name { font-size: .82rem; font-weight: 700; color: #fff; }
.pl-testi-card__course { font-size: .7rem; color: rgba(255,255,255,.5); }
.pl-testi-card__now { font-size: .7rem; color: rgba(200,150,12,.8); }
.pl-testi-card__co-logo { height: 24px; width: auto; max-width: 70px; object-fit: contain; opacity: .65; flex-shrink: 0; }

/* ── Section 8: Employers ─────────────────────────────────── */
.pl-employers { background: #fff; }
.pl-employer-filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.pl-employer-filter { padding: .45rem 1.1rem; border-radius: 999px; border: 1px solid #cdddc5; background: var(--pl-light); font-size: .8rem; font-weight: 600; color: #444; cursor: pointer; transition: all .18s; }
.pl-employer-filter:hover { border-color: var(--pl-green); color: var(--pl-green); }
.pl-employer-filter.is-active { background: var(--pl-green); border-color: var(--pl-green); color: #fff; }
.pl-employer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
.pl-employer-logo { background: #fff; border: 1px solid #e0ead8; border-radius: 10px; padding: .75rem; display: flex; align-items: center; justify-content: center; min-height: 60px; transition: box-shadow .2s, transform .2s; }
.pl-employer-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.pl-employer-logo img { max-height: 36px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(20%); transition: filter .2s; }
.pl-employer-logo:hover img { filter: grayscale(0); }
.pl-employer-logo__text { font-size: .78rem; font-weight: 700; color: #333; text-align: center; }
.pl-employer-logo--text span { font-size: .78rem; font-weight: 700; color: #444; text-align: center; }
.pl-employer-fallback__note { text-align: center; color: #999; font-size: .85rem; margin-bottom: 1.5rem; }

/* ── Section 9: Employer Quotes ───────────────────────────── */
.pl-eq { background: var(--pl-light); }
.pl-eq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .pl-eq-grid { grid-template-columns: 1fr; } }

.pl-eq-card { background: #fff; border: 1px solid #cdddc5; border-radius: 16px; padding: 2rem; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.pl-eq-card__quote-mark { font-size: 5rem; color: var(--pl-green); opacity: .12; position: absolute; top: 1rem; left: 1.5rem; line-height: 1; font-family: Georgia, serif; pointer-events: none; }
.pl-eq-card__quote { font-size: .92rem; line-height: 1.7; color: #333; margin: 0 0 1.25rem; font-style: italic; position: relative; z-index: 1; }
.pl-eq-card__foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px solid #e0ead8; }
.pl-eq-card__person { display: flex; align-items: center; gap: .75rem; }
.pl-eq-card__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #cdddc5; flex-shrink: 0; }
.pl-eq-card__photo--placeholder { width: 48px; height: 48px; border-radius: 50%; background: var(--pl-green); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; font-weight: 700; flex-shrink: 0; }
.pl-eq-card__name { font-size: .88rem; font-weight: 700; color: #111; }
.pl-eq-card__role { font-size: .75rem; color: #888; }
.pl-eq-card__company { font-size: .75rem; color: var(--pl-green); font-weight: 600; }
.pl-eq-card__logo { height: 30px; width: auto; max-width: 80px; object-fit: contain; filter: grayscale(20%); flex-shrink: 0; }

/* ── CTA Banner ───────────────────────────────────────────── */
.pl-cta-banner { background: linear-gradient(135deg, #062500 0%, var(--pl-green) 100%); padding: 4rem 0; }
.pl-cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.pl-cta-banner__text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff; margin: 0 0 .4rem; }
.pl-cta-banner__text p { font-size: .95rem; color: rgba(255,255,255,.7); margin: 0; }
.pl-cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 600px) {
    .pl-cta-banner__inner { flex-direction: column; text-align: center; }
    .pl-cta-banner__actions { justify-content: center; }
}
