:root {
    --career-primary: #b21c56;
    /* Pink */
    --career-secondary: #006cb7;
    /* Blue */
    --career-bg-light: #f8f9fa;
    --career-border: #e5e5e5;
    --career-text: #333;
    --career-muted-fg: #666;
    --career-radius: 4px;
}

/* ── CONTAINER ── */
.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── SEARCH ── */
.search-section {
    background: var(--career-secondary);
    padding: 22px 20px;
    display: flex;
    justify-content: center;
}

.search-wrapper {
    display: flex;
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.search-input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.search-btn {
    background: var(--career-primary);
    color: #fff;
    border: none;
    padding: 0 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.search-btn:hover {
    background: #971648;
}

/* ── PAGE HEADER ── */
.career-page-header {
    padding: 32px 24px 16px;
}

.career-page-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.breadcrumbs {
    font-size: 12px;
    color: var(--career-muted-fg);
    margin-bottom: 10px;
}

.breadcrumbs span {
    color: var(--career-primary);
}

/* ── CAREER INTRO ── */
.career-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 24px 24px 40px;
}

.career-intro-text {
    flex: 1;
}

.career-intro-text p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* Vision Image */
.career-intro-chart {
    flex-shrink: 0;
    width: 380px;
    max-width: 100%;
}

/* ── CONTENT SECTIONS ── */
.career-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.cc-section {
    margin-bottom: 36px;
    padding: 0 24px;
}

.cc-section h2 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.cc-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    margin-top: 20px;
}

.cc-section p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 10px;
}

.cc-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
    list-style: disc;
}

.cc-section li {
    font-size: 13.5px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 5px;
}

/* Job role badge */
.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    border: 1px solid #c8e0f5;
    border-radius: var(--career-radius);
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--career-secondary);
    margin: 4px 4px 4px 0;
    cursor: pointer;
    transition: background .15s;
}

.job-badge:hover {
    background: #daeeff;
}

.job-badge .loc {
    color: var(--career-muted-fg);
    font-weight: 400;
    font-size: 11.5px;
}

/* Apply link */
.apply-link {
    color: var(--career-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
    margin-top: 8px;
}

.divider {
    border: none;
    border-top: 1px solid var(--career-border);
    margin: 32px 0;
}

/* ── SLIDER SECTIONS ── */
.slider-section {
    padding: 60px 0;
}

.slider-section.bg-light {
    background: var(--career-bg-light);
}

.slider-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.sec-title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
}

.sec-sub {
    font-size: 14px;
    color: var(--career-muted-fg);
    margin-top: 8px;
}

.sec-sub strong {
    color: var(--career-secondary);
    font-weight: 600;
}

/* Arrows */
.nav-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, opacity .2s;
}

.nav-arrow:hover:not(.disabled) {
    opacity: .85;
}

.nav-arrow.ar {
    background: var(--career-primary);
    color: #fff;
}

.nav-arrow.ab {
    background: var(--career-secondary);
    color: #fff;
}

.nav-arrow.disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    border: none;
    transition: background .25s, transform .2s;
}

.dot.active {
    background: var(--career-secondary);
    transform: scale(1.3);
}

/* Auto badge */
.auto-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--career-muted-fg);
    margin-top: 6px;
}

.auto-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--career-secondary);
    animation: pulse 1.4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

/* Carousel */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    align-items: stretch;
}

/* Review cards */
.review-card {
    background: #fff;
    border: 1px solid var(--career-border);
    padding: 28px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc((100% - 48px)/3);
}

.rqm {
    position: absolute;
    font-size: 60px;
    color: #f0f0f0;
    font-family: serif;
    line-height: 1;
}

.r-text {
    font-size: 13.5px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.65;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}

.r-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.r-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.r-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
    color: #f5c518;
}

/* Video cards */
.video-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc((100% - 48px)/3);
    aspect-ratio: 16/9;
}

.vbg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
}

.vplay {
    width: 52px;
    height: 52px;
    background: var(--career-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background .2s, transform .15s;
}

.vtitle {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 36px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

.vav {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.vav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmore {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    z-index: 2;
    font-size: 18px;
}

/* Spotlight & Awards */
.logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 10px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-brand {
    cursor: pointer;
    transition: transform .15s;
}

.logo-brand:hover {
    transform: scale(1.06);
}

.awards-row {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.award-emoji {
    font-size: 58px;
    line-height: 1;
}

.award-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-align: center;
    max-width: 130px;
    line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .review-card,
    .video-card {
        width: calc((100% - 24px)/2);
    }
}

@media (max-width: 700px) {
    .career-intro {
        flex-direction: column;
    }

    .career-intro-chart {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 500px) {

    .review-card,
    .video-card {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}