/*
 * Banerjeeoli's (pId 67477) — /apply careers page.
 * Reuses the brand-wide tokens/classes from ../67477.css
 * (.title, .span-two, .common-para, .primary-button) and adds
 * the heading/list/step styles this page needs on top of them.
 */

.apply-page {
    max-width: 780px;
}

.apply-lead {
    text-align: center;
    font-size: 17px;
    margin-bottom: 10px;
}

.apply-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 28px 0 12px;
}

/* Sample application video — inline with step 1 of How To Apply */
.apply-video {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    margin: 12px 0 4px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px #00000029;
}

.apply-video__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.apply-list,
.apply-steps {
    margin: 0 0 20px;
    padding-left: 20px;
}

.apply-list li,
.apply-steps li {
    font-size: 15px;
    color: #201c1d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.apply-list__note {
    list-style: none;
    margin-left: -20px;
    color: #4a4a4a;
}

.apply-steps__pending {
    display: inline-block;
    color: var(--main-bg-color);
    font-style: italic;
}

/* Contact Us — inline mention inside step 3 */
.apply-link {
    color: var(--main-bg-color);
    font-weight: 700;
    text-decoration: underline;
}

/* Contact Us — final call-to-action block */
.apply-cta {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--main-bg-color);
    border-radius: 12px;
    background: color-mix(in srgb, var(--main-bg-color) 6%, #fff);
}

.apply-heading--cta {
    margin-top: 0;
}

/*
 * .primary-button (67477.css) is scoped to `.contact-form form .primary-button`,
 * so it doesn't paint outside the contact form. Give the CTA its own complete
 * filled-button look here rather than relying on that scoped rule.
 */
.apply-cta__btn {
    display: inline-block;
    background: var(--main-bg-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 5px;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 0 20px #00000029;
    margin-top: 8px;
    transition: opacity 0.2s ease;
}

.apply-cta__btn:hover,
.apply-cta__btn:focus-visible {
    opacity: 0.9;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .apply-heading {
        font-size: 18px;
    }
    .apply-lead {
        font-size: 16px;
    }
    .apply-cta {
        padding: 20px 16px;
    }
    .apply-cta__btn {
        width: 100%;
    }
}
