/* =======================================
   VARIABLES
   ======================================= */


/* =======================================
   IMPORTS
   ======================================= */


/* =======================================
   SIZES
   ======================================= */


/* =======================================
   FONTS
   ======================================= */
@font-face {
  font-family: "Anybody";
  /* font-weight: 400; */
  font-style: normal;
  src: url(../fonts/Font.ttf) format("ttf"),
    url(../fonts/Font.woff) format("woff"),
    url(../fonts/Font.woff2) format("woff2");
}


/* =======================================
   GLOBAL STYLES
   ======================================= */
html,
body {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
}

body * {
  box-sizing: border-box;
}

body {
  font-family: "Anybody", "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
}

body.active {
  overflow-y: hidden;
}

body h1,
body h2,
body h3 {
  font-family: "Anybody", "Helvetica", "Arial", sans-serif;
}

body h1 {
  font-size: 64px;
}

body h2 {
  font-size: 38px;
}

body h3 {
  font-size: 28px;
}

body a {
  color: #131515;
  transition: all 0.2s ease;
}

body .button {
  display: inline-block;
  padding: calc(16px / 2) calc(16px * 2);
  text-decoration: none;
  border: 1px solid;
}

body .button.primary {
  background: #DEDEDE;
  color: #DDC862;
  border-color: #131515;
}

body .button.primary:hover {
  background: #131515;
  border-color: #131515;
  color: #FFFFFF;
}

body .button.secondary {
  background: #FFFFFF;
  color: #131515;
  border-color: #131515;
}

body .button.secondary:hover {
  background: #131515;
  border-color: #131515;
  color: #FFFFFF;
}

body hr.anchor {
  border: none;
  margin: 0;
}

body section {
  padding: 0 16px;
}

/* body section *:first-child {
  margin-top: 0;
} */

/* body section *:last-child {
  margin-bottom: 0;
} */

body section.gray {
  background: #EDEFF0;
}

body section.notop {
  padding-top: 0;
}

body section.nobottom {
  padding-bottom: 0;
}

body section img {
  display: block;
}

body .checklist {
  padding: 0;
  list-style: none;
}

body .checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(16px * 1.5);
  font-weight: 500;
}

body .checklist li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  margin-right: calc(16px / 2);
  margin-top: -2px;
}

body ol,
body ul {
  padding-left: 20px;
}

body ol.two,
body ul.two {
  -moz-columns: 2;
  columns: 2;
}

body ol.three,
body ul.three {
  -moz-columns: 3;
  columns: 3;
}

body .breadcrumbWrapper {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  body .breadcrumbWrapper {
    padding: 0 16px;
  }
}


/* =======================================
   HEADER
   ======================================= */
header#header1 {
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
  background: #00321C;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDC862;
}

#header1 .site-welcome {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #FFF6CA;
  letter-spacing: 1px;
  text-align: center;
}

@media (max-width: 1120px) {
  header#header1 {
    height: 100px;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}


/* =======================================
   HOME PAGE
   ======================================= */
/* Rotating Circle */
.rotating-circle {
  animation: circle-rotate 8s linear infinite;
  transform-origin: center center;
}

@keyframes circle-rotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Main Wrapper */
.front-page-wrapper {
  text-align: center;
  padding: 48px 16px 0;
  background-color: #00321C;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1120px) {
  .front-page-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}

/* Circle Image */
.home-circle {
  margin: 0 auto 20px;
}

/* Main Text */
.home-circle-text {
  font-size: 64px;
  letter-spacing: 1px;
  color: #FFF6CA;
  margin-bottom: 16px;
}

.home-circle-text .main-title {
  font-weight: 600;
}

.home-circle-text .main-subtitle {
  font-weight: 300;
}

/* Subtext */
.home-circle-subtext {
  font-family: "Raleway";
  font-size: 24px;
  font-weight: 500;
  color: #DDC862;
  line-height: 1.6;
  margin-bottom: 32px;
  margin-top: 0;
}

/* Button */
.home-circle-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  gap: 5px;
  padding: 10px 15px 10px 20px;
  border-radius: 35px;
  border: 2px solid #DDC862;
  background-color: #DDC862;
  color: #00321C;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-circle-button .arrow-icon path {
  fill: #00321C;
  transition: fill 0.3s ease;
}

.arrow-icon {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.home-circle-button:hover .arrow-icon {
  transform: translateX(4px);
}

.home-circle-button:hover {
  background-color: #00321C;
  color: #DDC862;
  border-color: #DDC862;
}

.home-circle-button:hover .arrow-icon path {
  fill: #DDC862;
}

/* Button Section */
.home-circle-button-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  padding: 0 16px 40px 16px;
  background-color: #00321C;
  min-height: 200px;
}

.home-circle-cta {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}



/* =======================================
   MOBILE SPECIFIC
   ======================================= */
@media (max-width: 768px) {

  .home-circle-text {
    font-size: 56px;
  }

  .home-circle-subtext {
    font-size: 20px;
    margin-top: 35px;
  }

  /* Button Section */
  .home-circle-button-section {
    background-color: #DDC862;
    padding: 0;
    flex-grow: 0;
    min-height: 100px;
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-circle-cta {
    width: 100%;
    /* margin-top: 24px; */
    display: flex;
    justify-content: center;
  }

  .home-circle-button {
    width: 100%;
    max-width: 330px;
    padding: 10px 20px;
    box-sizing: border-box;

    /* Swap colors on mobile */
    background-color: #00321C;
    color: #DDC862;
    border-color: #DDC862;
  }

  .home-circle-button .arrow-icon path {
    fill: #DDC862;
    transition: none;
  }

  /* Remove hover effects on mobile */
  .home-circle-button:hover,
  .home-circle-button:hover .arrow-icon,
  .home-circle-button:hover .arrow-icon path {
    transform: none;
    background-color: #00321C;
    color: #DDC862;
    fill: #DDC862;
  }

  /* Header */
  header#header1 {
    height: 122px;
    min-height: 0;
  }

  /* Hide footer on mobile */
  footer#footer1 {
    display: none;
  }
}


/* =======================================
   FOOTER
   ======================================= */
footer#footer1 p {
  margin: 0;
  padding-right: 10px;
}

footer#footer1 {
  background: #00321C;
  margin-top: auto;
}

footer#footer1 a {
  color: #DDC862;
  text-decoration: none;
}

footer#footer1 a:hover {
  text-decoration: underline;
  color: #131515;
}

footer#footer1 .bottom {
  background: #00321C;
  color: #DDC862;
  font-size: 12px;
}

footer#footer1 .bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

footer#footer1 .bottom .container .menu-policy-menu-container .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: calc(16px * 3);
  flex-wrap: wrap;
}

footer#footer1 .menu-policy-menu-container .menu li a {
  font-weight: 600;
}

footer#footer1 .bottom .container .menu-policy-menu-container .menu li {
  display: inline-block;
}

footer#footer1 .bottom .container .menu-policy-menu-container .menu li a {
  color: #DDC862;
}

footer#footer1 .bottom .container .menu-policy-menu-container .menu li a:hover {
  color: #DDC862;
}

footer#footer1 .bottom .container .copy-disclaimer {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: #DDC862;
}

@media (min-width: 768px) {
  .career-footer {
    display: none;
  }
}

@media (max-width: 767px) {

  .career-footer {
    background: #00321C;
    border-top: none;
    /* flex-basis: 100%; */

    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .career-footer-inner {
    color: #DDC862;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .career-footer-inner a {
    color: #DDC862;
    text-decoration: none;
    font-weight: 600;
  }

  .career-footer-inner a:hover {
    color: #131515;
    text-decoration: underline;
  }

}

@media (max-width: 1120px) {
  footer#footer1 .bottom .container .menu-policy-menu-container .menu {
    gap: calc(16px * 2);
    margin: 6px 0;
  }

  footer#footer1 .bottom .container {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {

  body:has(.career-path-page) footer#footer1 {
    margin-left: 100px;
    width: calc(100% - 100px);
  }

}

/* =======================================
   FIND YOUR PLACE – HEADER
   ======================================= */

header#header-find-your-place {
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
  background: #00321C;

  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding-bottom: 20px;
  border-bottom: 1px solid #DDC862;
}

#header-find-your-place .find-welcome {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #FFF6CA;
  letter-spacing: 1px;
  text-align: center;
}

/* logo */
#header-find-your-place .find-your-place-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px
}

@media (max-width: 1120px) {
  header#header-find-your-place {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.find-welcome a {
  color: inherit;
  text-decoration: none;
}

/* =======================================
   FIND YOUR PLACE – CONTENT
   ======================================= */

/* Wrapper fills full viewport */
.find-your-place-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Circle Section */
.circle-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 40px 16px;
  box-sizing: border-box;
  background-color: #FFF6CA;
  min-height: 0;
}

/* Container for circle layout */
.circle-container {
  position: relative;
  width: 511px;
  height: 568px;
}

/* Each image + name wrapper */
.circle-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;

  /* needed for the background circle */
  z-index: 1;
}

.circle-item img {
  width: 120px;
  height: 120px;
  /* border-radius: 50%; */
  /* object-fit: cover; */
}

@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.circle-image-wrap {
  position: relative;
  display: inline-flex;
}

.circle-item:not(.is-selected) .circle-image-wrap {
  animation: spin-ccw 12s linear infinite;
}

.circle-image-wrap img {
  position: relative;
  z-index: 1;
}

.circle-item.is-selected img {
  position: relative;
  z-index: 2;
}

.circle-item.is-selected .circle-name {
  font-weight: 600;
}

.circle-item.is-selected .circle-image-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  background: #DDC862;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  box-shadow: -6px 0 10px rgba(0, 0, 0, 0.18);
}

.circle-name {
  margin-top: 12px;
  color: #00321C;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform-origin: top left;
}

/* Position each image around the circle */
.image1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.image2 {
  top: 25%;
  right: 0;
  transform: translateY(-35%);
}

.image3 {
  bottom: 25%;
  right: 0;
  transform: translateY(35%);
}

.image4 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.image5 {
  bottom: 25%;
  left: 0;
  transform: translateY(35%);
}

.image6 {
  top: 25%;
  left: 0;
  transform: translateY(-35%);
}

.circle-center-button {
  padding: 12px 28px;
  border-radius: 35px;

  border: 2px solid rgba(0, 50, 28, 0.35);
  background-color: transparent;
  color: rgba(0, 50, 28, 0.35);

  font-weight: 600;
  text-decoration: none;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  cursor: not-allowed;
  pointer-events: none;

  transition: all 0.3s ease;
}

.circle-center-button .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, fill 0.3s ease;
  fill: rgba(0, 50, 28, 0.35);
}

.circle-center-button.is-active:hover {
  background-color: #DDC862;
  color: #00321C;
  border-color: #00321C;
}

.circle-center-button.is-active:hover .arrow-icon {
  fill: #00321C;
  transform: translateX(4px);
}

.circle-center-button.is-active {
  border-color: #00321C;
  background-color: #00321C;
  color: #DDC862;
  cursor: pointer;
  pointer-events: auto;
}

.circle-center-button.is-active .arrow-icon {
  fill: #DDC862;
}

/* MOBILE LAYOUT */
/* FIND YOUR PLACE */
@media (max-width: 768px) {

  #header-find-your-place .find-your-place-logo {
    width: 40px;
    height: 40px;
  }

  /* Make container a grid with two columns */
  .circle-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 2px 10px;
    width: 100%;
    margin-bottom: 120px;
    box-sizing: border-box;
  }

  /* Selected background circle */
  .circle-item.is-selected .circle-image-wrap::before {
    width: 120px;
    height: 120px;
    background: #00321C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.18);
  }

  /* Each image/text wrapper */
  .circle-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: 0;
  }

  /* Stagger right column for offset */
  .circle-item:nth-child(2n) {
    margin-top: 50px;
  }

  /* Images inside each item */
  .circle-item img {
    width: 120px;
    height: 120px;
    /* margin-bottom: 8px; */
  }

  /* .circle-item.is-selected img {
    width: 102px;
    height: 102px;
    margin-bottom: 8px
  } */

  /* Text inside each item */
  .circle-item .circle-name {
    font-size: 14px;
    font-weight: 500;
    color: #00321C;
  }

  .circle-section {
    padding-bottom: 100px;
    /* Add space so content doesn't hide behind fixed button */
  }

  /* Continue button BELOW the grid */
  .circle-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    background: #00321C;
    padding: 24px 30px;
    z-index: 50;
  }


  .circle-center-button {
    width: 80%;
    max-width: 300px;
    /* display: inline-block; */
    text-align: center;
    align-items: center;
    /* ← vertical align fix */
    justify-content: center;
  }

  .circle-center-button svg {
    position: relative;
    /* top: 5px; */
  }

  .circle-button-wrapper .circle-center-button {
    border-color: #DDC862;
    color: #DDC862;
  }

  .circle-button-wrapper .circle-center-button .arrow-icon {
    fill: #DDC862;
  }

  /* Active state on dark bar */
  .circle-button-wrapper .circle-center-button.is-active {
    background-color: transparent;
    border-color: #DDC862;
    color: #DDC862;
  }

  .circle-button-wrapper .circle-center-button.is-active .arrow-icon {
    fill: #DDC862;
  }

  /* keep disabled state on mobile */
  .circle-center-button:not(.is-active) {
    border-color: rgba(221, 200, 98, 0.35);
    color: rgba(221, 200, 98, 0.35);
    background: transparent;
    cursor: not-allowed;
    pointer-events: none;
  }

  .circle-center-button:not(.is-active) .arrow-icon {
    fill: rgba(221, 200, 98, 0.35);
  }

}



@media (min-width: 769px) {
  .circle-button-wrapper {
    position: absolute;
    top: 430px;
    left: calc(50% - 80px);
  }
}


/* =======================================
   CAREER PATH – CONTENT
   ======================================= */

/* Page Layout */
.career-path-page {
  display: flex;
  min-height: calc(100vh - 130px);
  flex: 1;
  background-color: #00321C;
  color: #DDC862;
  font-family: "Anybody", sans-serif;
}

/* Left Sidebar */
.career-sidebar {
  width: 200px;
  border-right: 2px solid #DDC862;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.career-sidebar .circle-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* margin-top: 0; */
  margin-bottom: 24px;
  cursor: pointer;
  background: none;
  border: 0;
}

.career-sidebar .circle-item .circle-image-wrap {
  position: relative;
  display: inline-flex;
}

.career-sidebar .circle-item img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.career-sidebar .circle-item .circle-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.career-sidebar .circle-item .circle-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #FFF6CA;
}

.career-sidebar .circle-item.is-selected .circle-image-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  background: #DDC862;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  box-shadow: -6px 0 10px rgba(0, 0, 0, 0.18);
}

/* Right Content (Cards) */
.career-cards-wrapper {
  padding: 24px;
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(265px, 265px));

  column-gap: 20px;
  row-gap: 20px;

  grid-auto-rows: max-content;
  align-items: start;
  flex-grow: 1;
}

.career-card {
  background-color: #FFF6CA;
  color: #00321C;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 265px;
  height: 125px;
  border-radius: 10px;
}

.career-card-image {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 125px;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.career-card-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right,
      #FFF6CA 0px,
      #FFF6CA 120px,
      rgba(255, 246, 202, 0.95) 160px,
      rgba(255, 246, 202, 0.7) 200px,
      rgba(255, 246, 202, 0.4) 230px,
      rgba(255, 246, 202, 0.0) 265px);
}

.career-card-inner {
  width: 265px;
  height: 125px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}

.career-card-title {
  font-weight: 600;
  color: #00321C;
  position: relative;
  z-index: 2;
  padding-left: 12px;
  max-width: 191px;
  line-height: 120%
}


/* Mobile */
/* Mobile */
@media (max-width: 768px) {

  .career-path-page {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: hidden;
    /* prevents push-off */
  }

  /* Left Sidebar */
  .career-sidebar {
    justify-content: start;
    width: 100px;
    padding: 20px 0;
    flex-shrink: 0;
    gap: 20px
  }

  .career-sidebar .circle-item {
    margin: 0;
  }

  .career-sidebar .circle-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
  }

  .career-sidebar .circle-item.is-selected .circle-image-wrap::before {
    width: 60px;
    height: 60px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .career-sidebar .circle-item .circle-name {
    font-size: 12px;
    margin-top: 6px;
  }

  /* Right Cards – single column */

  .career-cards-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    padding: 16px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    box-sizing: border-box;
  }

  .career-card {
    height: 80px;
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: center;

    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .career-card-image {
    width: auto;
    height: 80px;
  }

  .career-card-inner {
    width: 100%;
    height: 100%;
    padding: 0 8px;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: none;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 10px;
    position: relative;

    box-sizing: border-box;
  }

  .career-card-title {
    font-weight: 600;
    color: #00321C;
    z-index: 1;
  }

}


/*  */
/* CAREER MODAL */
.career-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.career-modal {
  background: #FFF6CA;
  max-width: 840px;
  height: 700px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.career-modal-header {
  background: #00321C;
  color: white;
  position: relative;
  padding: 20px;
  text-align: center;
}

.career-modal-header h2 {
  color: var(--circle-cream, #FFF6CA);
  text-align: center;
  font-family: "Anybody";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28.8px;
}

.career-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  color: #DDC862;
  font-size: 28px;
  cursor: pointer;
}

.career-modal-close svg {
  width: 24px;
  height: 24px;
}

.career-modal-content {
  display: flex;
  flex: 1;
  overflow-y: auto;
  gap: 30px;
  padding: 30px 30px 90px 30px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  color: var(--circle-deep-green, #00321C);
  font-family: "Raleway";
  font-size: 16px;
  font-style: normal;
  line-height: 19.2px;
  letter-spacing: 0.32px;

  /* min-height: 0; */
}

.career-modal-left {
  flex: 1;
  max-width: 430px;
  /* min-height: 0; */
}

.career-modal-right img {
  max-width: 325px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.career-modal-footer {
  display: flex;
  width: 840px;
  max-width: 100%;
  height: 66px;
  background: #00321C;
  color: #DDC862;
  font-size: 14px;
  text-align: center;
  padding: 15px 10px;
  font-weight: 700;
  line-height: 18.20px;
  letter-spacing: 0.84px;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.career-modal-footer .footer-label {
  font-size: 14px;
  font-weight: 700;
}

.career-modal-footer .footer-text {
  font-size: 14px;
  font-weight: 400;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-header {
  cursor: pointer;
  padding: 16px 0;
  position: relative;
  font-size: 16px;
  font-family: "Anybody";
  font-weight: 700;
  line-height: 19.20px;
  letter-spacing: 0.32px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  padding-bottom: 0;
  box-sizing: border-box;
}

.accordion-content.is-open {
  padding-bottom: 16px;
}

.accordion-content ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

.accordion-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
}

.accordion-content li:last-child {
  margin-bottom: 0;
}

.accordion-content li::before {
  content: "";
  position: absolute;
  left: 0;
  /* top: 0.35em; */

  width: 24px;
  height: 24px;

  background-image: url("/wp-content/themes/flint-component-library/img/check-circle-broken.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.accordion-content.inside-role {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inside-role-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  flex-shrink: 0;
  line-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.inside-role-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.inside-role-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 10px;

}

.inside-role-text p {
  margin: 0 0;
}

.accordion-header::after {
  content: "";
  width: 24px;
  height: 24px;

  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;

  /* plus icon */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 5V19M5 12H19' stroke='%2300321C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* MINUS (active) */
.accordion-header.active::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12H19' stroke='%2300321C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Responsive */
@media (max-width: 768px) {
  .career-modal {
    height: 100%
  }

  .career-modal-overlay {
    padding: 20px;
  }

  .career-modal-content {
    flex-direction: column;
  }

  .career-modal-left {
    width: 100%;
    max-width: 100%;
  }

  .accordion-header {
    width: 100%;
  }

  .career-modal-header h2 {
    margin: 0 auto;
    max-width: 200px;
    text-align: center;
    padding-top: 28px;
  }

  .career-modal-right {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin-bottom: 20px; */
  }

  .career-modal-right img {
    max-width: 320px;
    width: 100%;
    /* height: 100px; */
    border-radius: 10px;
    display: block;
  }
}


/*# sourceMappingURL=styles.css.map */