@import url(//use.typekit.net/ziy1jzk.css);

/* ── font utility classes (din-2014 via typekit) ── */
.fw-bold, .fw-demi, .fw-light, .fw-reg, .fw-xtra-bold { font-family: din-2014, sans-serif; font-weight: 300; font-style: normal; }
.fw-bold, .fw-demi, .fw-reg, .fw-xtra-bold { font-weight: 400; }
.fw-bold, .fw-demi, .fw-xtra-bold { font-weight: 600; }
.fw-bold, .fw-xtra-bold { font-weight: 700; }
.fw-xtra-bold { font-weight: 800; }

/* ── hero fills viewport top (transparent header overlaps it) ── */
body.page-template-tpl-join-us #main { padding-top: 0; }


/* ── hero: vertically centered title, left-aligned, not uppercase ── */
body.page-template-tpl-join-us .masthead .masthead-title {
    top: 50%;
    bottom: auto;
    left: 1.5rem;
    right: auto;
    transform: translateY(-50%);
    text-align: left;
    text-transform: none;
    font-size: 28px;
    line-height: 34px;
}
@media (min-width: 768px) {
    body.page-template-tpl-join-us .masthead .masthead-title {
        left: 3rem;
        font-size: 36px;
        line-height: 44px;
    }
}

/* ── body text (right column paragraphs) — matches .section-copy on Culture page ── */
.joinus-body-text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
    font-family: din-2014, sans-serif;
}
.joinus-body-text p { font-size: 15px; line-height: 20px; font-weight: 400; color: #333; margin-bottom: 1rem; }
.joinus-body-text p:last-child { margin-bottom: 0; }


/* ── mosaic image ── */
.joinus-mosaic-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── individual card — entire card is a link (matches col-culture pattern) ── */
.joinus-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
    text-decoration: none;
}

/* card image — fills the column naturally, no fixed height ── */
.joinus-card__img {
    width: 100%;
    height: auto;
    display: block;
}

/* uniform dark overlay — deepens on hover ── */
.joinus-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.35s ease;
}
.joinus-card:hover .joinus-card__overlay {
    background: rgba(0, 0, 0, 0.68);
}

/* card content: absolutely centred over the image, matches .col-culture__meta ── */
.joinus-card__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

/* title — scales with card width across breakpoints ── */
.joinus-card__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.75rem;
    font-family: din-2014, sans-serif;
    text-align: center;
}
/* at md the grid becomes 3 cols — cards are narrow, scale down */
@media (min-width: 768px)  { .joinus-card__title { font-size: 22px; line-height: 26px; } }
@media (min-width: 1200px) { .joinus-card__title { font-size: 32px; line-height: 36px; } }
@media (min-width: 1400px) { .joinus-card__title { font-size: 42px; line-height: 42px; } }

/* description — hidden by default; fades in on hover ── */
.joinus-card__desc {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-family: din-2014, sans-serif;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.40s ease, margin 0.35s ease;
}
.joinus-card:hover .joinus-card__desc {
    opacity: 1;
    max-height: 220px;
    margin-bottom: 1.75rem;
}
@media (min-width: 768px)  { .joinus-card__desc { font-size: 12px; line-height: 16px; font-weight: 500; } }
@media (min-width: 1200px) { .joinus-card__desc { font-size: 16px; line-height: 22px; font-weight: 400; } }
@media (min-width: 1400px) { .joinus-card__desc { font-size: 22px; line-height: 28px; font-weight: 400; } }

/* CTA span ── */
.joinus-card__cta {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    font-family: din-2014, sans-serif;
    flex-shrink: 0;
}
@media (min-width: 768px)  { .joinus-card__cta { font-size: 12px; line-height: 16px; font-weight: 500; } }
@media (min-width: 1200px) { .joinus-card__cta { font-size: 16px; line-height: 22px; font-weight: 400; } }
@media (min-width: 1400px) { .joinus-card__cta { font-size: 22px; line-height: 28px; font-weight: 400; } }


/* ── LLL heading link — inherits heading colour, underlines on hover ── */
.joinus-lll-heading-link {
    color: inherit;
    text-decoration: none;
}
.joinus-lll-heading-link:hover,
.joinus-lll-heading-link:focus { color: inherit; text-decoration: underline; }

/* ── LLL CTA link ── */
.joinus-lll-cta {
    display: inline-block;
    margin-top: 1.75rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    text-decoration: none;
    font-family: din-2014, sans-serif;
}
.joinus-lll-cta:hover,
.joinus-lll-cta:focus { color: #000; text-decoration: underline; }

/* ── horizontal rules ── */
hr {
    background-color: #c8c8c8;
    opacity: 1;
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #c8c8c8;
}
@media (min-width: 768px) { hr { margin: 3rem 0; } }

/* ── footer overrides for this light-background page ── */
.site-footer { color: #000; }
.site-footer a { color: #000; }
.site-footer a:hover, .site-footer a:focus { color: #000; }
.site-footer .footer_linesep { border-color: #000; }
.site-footer .footer__contactus { color: #000; }
.site-footer .footer__navlink { color: #000; }
.site-footer .footer__social a img { filter: none; }

