/* 
 * CAREERS PAGE STYLES
 */

.careers-page-wrapper {
    background-color: #042E3D;
    /* Theme dark navy */
    color: #fff;
}

.bg-dark {
    background-color: #042E3D;
}

.bg-navy-light {
    background-color: #164658;
}

/* SECTION 1: HERO */
.careers-hero {
    background-color: #042E3D;
    background-size: cover;
    background-position: bottom center;
    padding: 180px 20px 120px;
    /* Taller padding, accommodates absolute header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.careers-hero .hero-quote {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
}

.careers-hero .hero-author {
    font-size: 1.1rem;
    color: #b3c5c8;
}

/* SECTION 2: INTRO (Careers at SyncLync) */
.careers-intro-section {
    padding: 30px 0 60px;
}

/* SECTION 2b: ABOUT PARENT COMPANY */
.careers-parent-section {
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image-col {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.intro-image-col img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.intro-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    color: #fff;
}

.intro-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
}

/* SECTION 3: WHAT WE PRIORITIZE */
.careers-priorities-section {
    padding: 80px 0;
}

.priorities-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.priority-card {
    background-color: #B2B2DC;
    /* Signature light purple from design */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: #1a1a1a;
    /* Dark text for contrast */
}

.priority-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.priority-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* SECTION 4: OUR BENEFITS */
.careers-benefits-section {
    padding: 60px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FF5E1E;
    /* Primary orange */
    margin-bottom: 15px;
}

.benefits-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    max-width: 900px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-desc {
    font-size: 0.95rem;
    color: #cbd5d8;
    line-height: 1.5;
}

/* Styled bullets inside WYSIWYG for benefits */
.styled-bullets ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
}

.styled-bullets ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.styled-bullets ul li::before {
    content: "\2022";
    /* Bullet character */
    color: #FF5E1E;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 8px;
}

/* SECTION 5: CTA BOTTOM */
.careers-cta-section {
    background-color: #fff;
    padding: 80px 20px;
    background-image: url('../images/elevate_bg.png');
    background-size: cover;
    background-position: center;
    color: #1a1a1a;
}

.careers-cta-section .cta-inner-box {
    /* Removed max-width and auto-margin to match left alignment of page */
}

.careers-cta-section .cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0d2c38;
}

.careers-cta-section .cta-text {
    padding: 30px 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #042E3D;
    margin-bottom: 30px;
}

.btn-orange {
    background-color: #FF5E1E;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

.btn-orange:hover {
    background-color: #e5531a;
    color: #fff;
}


/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .priorities-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .careers-hero .hero-quote {
        font-size: 1.8rem;
    }
}