/* CareersV2 - Alternative Careers Page Styles */
/* Brand: #3d1a6f (purple), #170a29 (dark), #fdb913 (yellow), #ed174c (red), #7d1d61 (medium purple) */

/* ── Hero ── */
.wv2-hero-simple {
    background: linear-gradient(135deg, #3d1a6f 0%, #170a29 100%);
    color: #fff;
    padding: 7rem 0 4rem;
    text-align: center;
}
.wv2-page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.wv2-accent { color: #fdb913; }
.wv2-page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ── Sections ── */
.cv2-section { padding: 5rem 0; }
.cv2-section-light { background: #f8f7fc; }
.cv2-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #170a29;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.cv2-section-sub {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}
.cv2-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}
.cv2-yellow-rule {
    width: 60px;
    height: 4px;
    background: #fdb913;
    border: none;
    margin: 1rem 0 1.5rem;
}
.cv2-yellow-rule-center {
    margin-left: auto;
    margin-right: auto;
}
.cv2-feature-img {
    max-width: 480px;
    border-radius: 12px;
}

/* ── Benefit Cards ── */
.cv2-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid #ede8f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cv2-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(61,26,111,0.15);
}
.cv2-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: #fff;
}
.cv2-icon-yellow { background: #fdb913; color: #170a29; }
.cv2-icon-red { background: #ed174c; }
.cv2-icon-purple { background: #7d1d61; }
.cv2-benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #170a29;
    margin-bottom: 0.75rem;
}
.cv2-benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── Job Cards ── */
.cv2-job-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #ede8f5;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cv2-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(61,26,111,0.12);
}
.cv2-job-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #170a29;
    margin-bottom: 0.5rem;
}
.cv2-job-summary {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.cv2-job-actions {
    display: flex;
    gap: 0.5rem;
}
.cv2-btn-outline {
    border: 2px solid #3d1a6f;
    color: #3d1a6f;
    background: transparent;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.cv2-btn-outline:hover {
    background: #3d1a6f;
    color: #fff;
    text-decoration: none;
}
.cv2-btn-red {
    border: 2px solid #ed174c;
    color: #fff;
    background: #ed174c;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.cv2-btn-red:hover {
    background: #d1133f;
    border-color: #d1133f;
    text-decoration: none;
    color: #fff;
}

/* ── No Jobs ── */
.cv2-no-jobs {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f7fc;
    border-radius: 12px;
    border: 1px solid #ede8f5;
}
.cv2-no-jobs p {
    font-size: 1.05rem;
    color: #666;
    max-width: 450px;
    margin: 0 auto;
}

/* ── Fancybox mobile override ── */
@media (max-width: 989px) {
    .fancybox-overlay { width: 100% !important; height: 100% !important; }
    .fancybox-opened { width: 100% !important; top: 0 !important; left: 0 !important; height: 100% !important; }
    .fancybox-skin { height: 100% !important; padding: 0 !important; }
    .fancybox-inner { width: 100% !important; height: 100% !important; }
    .fancybox-outer { width: 100% !important; height: 100% !important; }
    .fancybox-close { position: absolute; top: 115px; right: 20px; }
}

/* ── CTA ── */
.hv2-cta {
    background: #fdb913;
    color: #170a29;
    padding: 4rem 0;
    text-align: center;
}
.hv2-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.hv2-cta p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}
.hv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-purple:hover {
    background: #170a29;
    border-color: #170a29;
    color: #fff;
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .wv2-page-title { font-size: 2.25rem; }
    .cv2-section { padding: 3.5rem 0; }
    .cv2-section-heading { font-size: 1.85rem; }
}
@media (max-width: 575px) {
    .wv2-hero-simple { padding: 5rem 0 3rem; }
    .wv2-page-title { font-size: 1.85rem; }
}
