

/* Start:/local/components/mm/career.cards/templates/.default/style.css?17860969825330*/
/* Career cards: youth page visual refresh */
.career-path-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: #fff;
  padding: 78px 0 88px;
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.career-path-wrapper::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(36vw, 520px);
  height: 100%;
  background: linear-gradient(90deg, rgba(237, 107, 6, 0.08), rgba(237, 107, 6, 0));
  pointer-events: none;
}

.career-title-main {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 34px;
  padding: 0 24px;
  color: #2F363A;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.05;
  font-weight: 900;
  text-align: left;
}

.career-title-main::after {
  content: "";
  display: block;
  width: 74px;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: #B3D449;
}

.career-scroll {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  box-sizing: border-box;
}

.career-card {
  min-width: 0;
  border: 1px solid rgba(47, 54, 58, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(47, 54, 58, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-upper {
  position: relative;
  height: 280px;
  perspective: 1000px;
  background: #F6F7F2;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card-upper:hover .card-inner {
    transform: rotateY(180deg);
  }
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
}

.card-front {
  z-index: 2;
}

.card-front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-sticker {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(47, 54, 58, 0.14);
  z-index: 3;
  box-sizing: border-box;
}

.career-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-back {
  padding: 22px;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.48;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

.career-bottom {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  box-sizing: border-box;
}

.career-title {
  color: #2F363A;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.25;
}

.career-text-mobile {
  display: none;
}

.career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ED6B06;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 0.96rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.career-btn:hover,
.career-btn:focus {
  background: #B3D449;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

.green  { --color: #B3D449; }
.purple { --color: #8E6BC5; }
.orange { --color: #ED6B06; }
.pink   { --color: #E96A95; }

.green  .card-back { background: #B3D449; }
.purple .card-back { background: #8E6BC5; }
.orange .card-back { background: #ED6B06; }
.pink   .card-back { background: #E96A95; }

.green  .career-title { color: #5F7400; }
.purple .career-title { color: #6E4AAD; }
.orange .career-title { color: #ED6B06; }
.pink   .career-title { color: #D95782; }

@media (max-width: 1080px) {
  .career-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .career-path-wrapper {
    width: 100%;
    left: auto;
    margin-left: 0;
    padding: 44px 0 48px;
  }

  .career-title-main {
    margin-bottom: 24px;
    padding: 0 16px;
    font-size: 2rem;
  }

  .career-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .career-scroll::-webkit-scrollbar {
    display: none;
  }

  .career-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .card-upper {
    height: 220px;
    perspective: none;
  }

  .card-inner {
    transform: none !important;
  }

  .card-front,
  .card-back {
    position: relative;
    height: 100%;
    transform: none;
    backface-visibility: visible;
  }

  .card-front {
    height: 220px;
  }

  .card-back {
    display: none;
  }

  .career-bottom {
    min-height: 138px;
    padding: 16px;
  }

  .career-title {
    font-size: 1rem;
  }

  .career-text-mobile {
    display: block;
    margin-top: 8px;
    color: #5F686D;
    font-size: 0.9rem;
    line-height: 1.42;
    font-weight: 600;
  }

  .career-btn {
    min-height: 44px;
    margin-top: 14px;
  }
}

@media (max-width: 430px) {
  .career-card {
    flex-basis: 82%;
  }
}

/* End */


/* Start:/local/components/mm/faq.accordion/templates/.default/style.css?17860960143660*/
/* FAQ accordion: youth page visual refresh */
.faq-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 24px;
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #2F363A;
  box-sizing: border-box;
}

.faq-section h2 {
  margin: 0 0 24px;
  color: #2F363A;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
  text-align: left;
}

.faq-section h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: #ED6B06;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.faq-category-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(47, 54, 58, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #2F363A;
  font: 800 0.96rem/1 Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(47, 54, 58, 0.06);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-category-btn.active,
.faq-category-btn:hover,
.faq-category-btn:focus {
  border-color: #B3D449;
  background: #B3D449;
  color: #fff;
  transform: translateY(-1px);
}

.faq-subtitle {
  margin: 34px 0 14px;
  color: #ED6B06;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 900;
}

.faq-subtitle:first-child {
  margin-top: 0;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid rgba(47, 54, 58, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(47, 54, 58, 0.07);
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 62px;
  padding: 18px 58px 18px 20px;
  border: 0;
  background: transparent;
  color: #2F363A;
  font: 900 1rem/1.35 Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #F6F7F2;
  color: #ED6B06;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
  background: #B3D449;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #5F686D;
  font-size: 0.98rem;
  line-height: 1.58;
  transition: max-height 0.24s ease, padding-bottom 0.24s ease;
}

.faq-item.active .faq-answer {
  max-height: 420px;
  padding-bottom: 20px;
}

.faq-answer a {
  color: #ED6B06;
  font-weight: 800;
}

@media (max-width: 760px) {
  .faq-section {
    padding: 48px 16px;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -16px;
    padding: 0 16px 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .faq-categories::-webkit-scrollbar {
    display: none;
  }

  .faq-category-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .faq-subtitle {
    margin-top: 28px;
    font-size: 1.1rem;
  }

  .faq-question {
    min-height: 58px;
    padding: 16px 52px 16px 16px;
    font-size: 0.96rem;
  }

  .faq-question::after {
    right: 16px;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }
}

/* End */
/* /local/components/mm/career.cards/templates/.default/style.css?17860969825330 */
/* /local/components/mm/faq.accordion/templates/.default/style.css?17860960143660 */
