

/* Start:/local/components/mm/career.cards/templates/.default/style.css?17703717664401*/
/* ====== Career cards (Monetka) ====== */
.career-line{
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100px;
  background-color: var(--lime);
}

.career-path-wrapper{
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  padding: 80px 0 100px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.career-title-main{
  color: #ED6B06;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}

.career-scroll{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  padding: 0 60px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.career-card{
  scroll-snap-align: start;
  flex: 0 0 260px;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

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

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

.card-upper:hover .card-inner{
  transform: rotateY(180deg);
}

.card-front, .card-back{
  position: absolute;
  width: 100%;
  height: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  backface-visibility: hidden;
}

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

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

.career-sticker{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 3;
  box-sizing: border-box;
}

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

.card-back{
  color: #fff;
  text-align: center;
  padding: 20px;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.career-bottom{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.career-title{
  background-color: var(--color);
  color: #fff;
  padding: 18px 16px;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.career-btn{
  background: #ED6B06;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
  margin: 12px 16px 16px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.career-btn:hover{ background: #e34d2c; }

.green  { --color: #B3D449; }
.purple { --color: #A98BD3; }
.orange { --color: #FBB03B; }
.pink   { --color: #F27C9C; }

.green  .card-back { background-color: #B3D449; }
.purple .card-back { background-color: #A98BD3; }
.orange .card-back { background-color: #FBB03B; }
.pink   .card-back { background-color: #F27C9C; }

@media (max-width: 600px){
  .career-scroll{ gap: 16px; padding: 20px; }
  .career-card{ flex: 0 0 80%; }
}

/* =========================
   MOBILE FIX (<= 430px)
========================= */
@media (max-width: 430px){
  html, body{ overflow-x: hidden; }

  .career-line{
    width: 100vw;
    height: 56px;
    margin-left: 50%;
    transform: translateX(-50%);
    left: 0;
  }

  .career-path-wrapper{
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 16px 32px;
    text-align: center;
  }

  .career-title-main{
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .career-scroll{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .career-card{
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    flex: none;
  }

  /* disable flip */
  .card-upper{ height: auto; perspective: none; }
  .card-inner{ transform: none !important; }
  .card-back{ display: none; }

  .card-front, .card-front img{
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .career-title{ text-align: center; padding: 14px 16px; }

  .career-btn{
    width: calc(100% - 32px);
    margin: 12px 16px 18px;
    border-radius: 24px;
    font-size: 1rem;
    display: block;
  }
}

/* End */


/* Start:/local/components/mm/faq.accordion/templates/.default/style.css?1770373220959*/

.faq-section{max-width:960px;margin:0 auto;padding:60px 20px;font-family:'Montserrat',sans-serif}
.faq-section h2{text-align:center;font-size:2rem;margin-bottom:20px;color:#3A3A3A}
.faq-categories{display:flex;justify-content:center;gap:12px;margin-bottom:40px;flex-wrap:wrap}
.faq-category-btn{padding:8px 16px;border:2px solid #B3D449;background:#F9F9F9;color:#3A3A3A;border-radius:30px;font-weight:600;cursor:pointer}
.faq-category-btn.active,.faq-category-btn:hover{background:#B3D449;color:#fff}
.faq-subtitle{font-size:1.5rem;font-weight:700;margin:40px 0 20px;color:#ED6B06}
.faq-item{border-bottom:1px solid #eee}
.faq-question{padding:16px;font-weight:600;cursor:pointer;position:relative}
.faq-question::after{content:"+";position:absolute;right:20px;font-size:1.2rem;transition:.3s}
.faq-item.active .faq-question::after{transform:rotate(45deg)}
.faq-answer{padding:0 16px 16px;display:none;color:#555}
.faq-item.active .faq-answer{display:block}

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