/**
 * Careers Page Styles
 */

.careers-page-container {
    padding-top: 0px;
    padding-bottom: 100px;
}

/* Careers Hero */
.careers-hero-image-wrapper {
    width: 100%;
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 24px;
    line-height: 0;
}

.careers-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Intro Section */
.careers-intro {
    margin-bottom: 100px;
}

.careers-page-title {
    font-size: 2.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.careers-description p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.careers-description {
    max-width: 100%;
}

/* Job Portal Section */
.job-portal-section {
    background-color: #F8F9FB;
    /* padding: 80px 40px; */
    /* Increased padding to match mockup airiness */
    margin-top: 60px;
    border-radius: 24px;
}

.job-portal-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    min-height: 900px;
    /* Base height for portal content */
}

.job-portal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.job-portal-placeholder {
    padding: 100px 40px;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .careers-hero-image-wrapper img {
        height: 250px;
    }

    .careers-page-title {
        font-size: 2.25rem;
    }

    .job-portal-section {
        padding: 40px 15px;
    }
}