/* Careers page */

/* Section scaffolding */
.careers-section {
    padding: 100px 0;
    background-color: var(--white);
}

.careers-section--muted {
    background-color: var(--gray-light);
}

.careers-block {
    max-width: 760px;
    margin: 0 auto;
}

/* Section headings with orange underline accent */
.careers-heading {
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.careers-heading::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background-color: var(--orange);
    margin: 1.25rem auto 0;
}

/* Opening intro */
.careers-opening__text {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.careers-opening__text:first-child {
    font-size: 1.3125rem;
    color: var(--black);
    font-weight: 500;
}

.careers-opening__text:last-child {
    margin-bottom: 0;
}

/* Who we're hiring */
.careers-lead {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

.careers-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 2.5rem 0 1rem;
}

.careers-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.careers-text:last-child {
    margin-bottom: 0;
}

/* How we work - stacked principles */
.careers-principles {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
}

.careers-principle {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-medium);
}

.careers-principle:first-child {
    padding-top: 0;
    border-top: none;
}

.careers-principle:last-child {
    padding-bottom: 0;
}

.careers-principle__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.careers-principle__title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    border-radius: 2px;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.careers-principle__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.careers-principle__text:last-child {
    margin-bottom: 0;
}

/* What we offer - benefits with orange quotation-mark markers */
.careers-offer__intro {
    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--black);
    text-align: center;
    margin-bottom: 2.5rem;
}

.careers-benefits {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
}

.careers-benefit {
    position: relative;
    padding-left: 2.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.75rem;
}

.careers-benefit:last-child {
    margin-bottom: 0;
}

.careers-benefit::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--orange);
    font-weight: 700;
}

.careers-benefit__lead {
    color: var(--black);
    font-weight: 600;
}

/* How to apply */
.careers-apply__closing {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 2rem;
}

.careers-apply__cta {
    margin-top: 2.5rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .careers-section {
        padding: 60px 0;
    }

    .careers-principle__title {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .careers-opening__text,
    .careers-lead {
        font-size: 1.0625rem;
    }

    .careers-opening__text:first-child {
        font-size: 1.1875rem;
    }

    .careers-text,
    .careers-principle__text,
    .careers-benefit {
        font-size: 1rem;
    }
}
