
/********* ******** ABOUT US » CAREERS ******** ********/
/* These styles are exclusive to the CAREERS page and only need loaded there */


/******** PAGE GLOBALS ********/
div.careers + div {
  margin-top: 64px;
}

div.careers > h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

div.careers > h2 + p {
  font-size: 20px;
  line-height: 24px;
  margin-top: 16px;
  text-align: center;
}

div.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  span.line-break {
    display: block;
  }
}


/******** H1 BANNER ********/
div.h1-banner {
  align-items: center;
  background-image: url(/uploads/img/hr__h1-bg.jpg);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 496px;
  justify-content: center;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  div.h1-banner {
    background-position: -72px;
  }
}

div.h1-banner h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 24px;
  text-align: center;
}

div.h1-banner .careers__button {
  background-color: #64ccc9;
  border: 2px solid #64ccc9;
  padding: 8px 24px;
}
div.h1-banner .careers__button:hover {
  background-color: #329996;
  border: 2px solid #329996;
}


/********* BEST CHRISTIAN WORKPLACE (BCW) and VIDEO ********/
@media screen and (min-width: 1024px) {
  .bcw-video-container {
    display: flex;
  }
}

/* BCW */
div.bcw-container {
  align-items: center;
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .bcw-container {
    margin-bottom: 24px;
  }
}

.bcw-copy {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.bcw-seal {
  background-image: url(/uploads/img/best-christian-workplace-seal-2026.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 176px;
  width: 176px;
}

/* VIDEO EMBED */
div.video-container {
  flex: 0 0 50%;
}

.video {
  padding: 56.25% 0 0 0;
  position: relative;
}

.video__iframe {
  border-radius: 8px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


/******** EMPLOYEE QUOTES ********/
/* faux carousel */
@media screen and (min-width: 1024px) {
  .employee-quotes {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center;
  }

  div.employee-quotes-container {
    align-items: center;
    display: flex;
    gap: 48px;
    justify-content: center;
    transition: transform 0.3s ease;
  }
}

.quote {
  background-color: #595478;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 480px;
  max-width: 400px;
  transition: all 0.4s ease;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .quote:not(:last-of-type) {
    margin-bottom: 48px;
  }
}

.quote--image {
  border-radius: 8px 8px 0 0;
  height: 66.666%;
  width: 100%;
}

.quote--headline {
  border-bottom: 1px solid #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}

.quote--copy {
  font-size: 14px;
  padding: 24px 32px 40px 32px;
}

@media screen and (min-width: 1024px) {
  .quote.featured {
    transform: scale(1.1);
  }
}

/* INDICATOR DOTS */
@media screen and (min-width: 1024px) {
  div.quote-indicator-container {
    display: flex;
    gap: 16px;
  }
  .dot {
    border: 1px solid #595478;
    border-radius: 50%;
    cursor: pointer;
    height: 16px;
    transition: all 0.5s ease-in-out;
    width: 16px;
  }
  .dot.active {
    background-color: #595478;
  }
}
@media screen and (max-width: 1023px) {
  div.quote-indicator-container {
    display: none;
  }
}


/******** CAREER LOCATIONS ********/
div.career__locations-container {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  div.career__locations-container {
    display: flex;
    gap: 80px;
  }
}

@media screen and (max-width: 767px) {
  div.location:not(:first-of-type) {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  div.location {
    width: calc(50% - 24px);
  }
}

.location-image {
  border-radius: 8px;
  height: 400px;
}

.location p {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  text-align: center;
}


/******** CAREER BENEFITS ********/
div.benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin: 64px auto;
}

.benefit {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .benefit {
    width: calc(50% - 24px);
  }
}

.benefit--icon {
  height: 48px;
  width: 48px;
}

div.benefit--copy {
  width: calc(100% - 16px - 48px);
}

.benefit--copy h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}

.benefit--copy p {
  font-size: 18px;
  line-height: 24px;
}


/******** CAREER SNAPSHOTS ********/
/* LAYOUT */
.image-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .image-row {
    gap: 24px;
  }
}

.column1 {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .column1 {
    gap: 24px;
  }
}

.column2 {
  align-items: center;
  display: flex;
}

/* IMAGE SPECIFICATIONS */
.image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}

/* SIZE 600x400 */
.image1 {
  background-image: url('/uploads/img/hr-snapshot__01.jpg');
  aspect-ratio: 3 / 2;
  height: clamp(120px, 27vw, 400px);
}
@media screen and (max-width: 767px) {
  .image1 {
    height: clamp(80px, 34vw, 144px);
  }
}

 /* SIZE 400x400 */
.image2 {
  background-image: url('/uploads/img/hr-snapshot__02.jpg');
  aspect-ratio: 1 / 1;
  height: clamp(120px, 27vw, 400px);
}
@media screen and (max-width: 767px) {
  .image2 {
    height: clamp(80px, 34vw, 144px);
  }
}

 /* SIZE 400x600 */
.image3 {
  background-image: url('/uploads/img/hr-snapshot__03.jpg');
  aspect-ratio: 2 / 3;
  height: clamp(180px, 40vw, 600px);
}
@media screen and (max-width: 767px) {
  .image3 {
    height: clamp(144px, 50vw, 200px);
  }
}


/******** CAREERS HIRING PROCESS ********/
@media screen and (max-width: 767px) {
  div.section-container {
    padding-left: 72px;
  }
}

div.section-container > div:not(:first-of-type) {
  margin-top: 96px;
}

/* COPY */
div.section {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.section {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  div.section {
    gap: 128px;
  }
}

div.section > h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  div.section > h3 {
    text-align: right;
    width: calc(50% - 64px);
  }
}

div.section > p {
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  div.section > p {
    width: calc(50% - 64px);
  }
}

/* DOT INDICATORS */
div.section div.marker-container {
  position: absolute;
  top: -14px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  div.section div.marker-container {
    left: -72px;
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  div.section div.marker-container {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* VERTICAL BAR */
div.section div.bar-through {
  background-color: #cccccc;
  position: absolute;
  top: 24px;
  transform: translateX(-50%);
  height: calc(100% + 88px);
  width: 8px;
  z-index: -100;
}
@media screen and (max-width: 767px) {
  div.section div.bar-through {
    left: -48px;
  }
}
@media screen and (min-width: 768px) {
  div.section div.bar-through {
    left: 50%;
  }
}

/* MARKERS */
.marker {
  align-items: center;
  background-color: #595478;
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.highlighter {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(100,204,201,0);
  transition: background-color 0.5s, transform 0.5s;
  cursor: pointer;
}

.highlighter.active {
  background: rgba(100,204,201,1);
  transform: scale(1.3);
}

/* FOOTNOTE */
div.footnote {
  margin-top: 64px;
}

div.footnote > p {
  font-size: 12px;
  text-align: center;
}