/* ==============================================
   YCX MASTERCLASS PAGE STYLES
   ============================================== */
.hamburger span {
  background: var(--primary);
}

.mc-page-wrapper {
  color: var(--primary);
  background: var(--white);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media(max-width:720px) {
  .wrap {
    padding: 0 22px;
  }
}

.center {
  text-align: center;
}

.sec-head {
  max-width: 560px;
  margin: 0 auto 46px;
  text-align: center;
}

.sec-head .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.sec-head .eyebrow svg {
  width: 14px;
  height: 14px;
}

/* ================= HERO ================= */
.hero-sec {
  padding: 150px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #ffe8d7 0%, #ffffff 100%);
}

.hero-sec p.lead {
  max-width: 520px;
  margin: 20px auto 32px;
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.65;
}

.hero-check-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 32px;
  flex-wrap: wrap;
  max-width: 900px;
}

.hero-check-row .mc-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(12, 58, 48, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
}

.hero-check-row .mc-check span {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-dark);
}

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.hero-sec .trust {
  display: block;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted-lt);
  font-weight: 600;
}

.mentor-carousel-container {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 56px;
  padding: 10px 0;
}

.mentor-carousel-track {
  display: flex;
  width: calc(240px * 12);
  gap: 20px;
  animation: marquee-scroll 25s linear infinite;
}

.mentor-carousel-track img {
  width: 220px;
  height: 280px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-240px * 6));
  }
}

@media(max-width:720px) {
  .mentor-carousel-track img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
  }

  .mentor-carousel-track {
    width: calc(180px * 12);
    gap: 20px;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-180px * 6));
    }
  }
}

/* ================= MASTERCLASS CARDS ================= */

.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.mc-grid.mc-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
}

.mc-grid.mc-3 .mc-card:last-child {
  grid-column: auto;
  max-width: none;
  margin: 0;
}

.mc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(12, 58, 48, 0.08));
  box-shadow: 0 30px 60px -40px rgba(12, 58, 48, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mc-banner {
  position: relative;
  height: 200px;
  background: var(--banner-color);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 24px 0 0 28px;
  overflow: hidden;
}

.mc-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding-right: 16px;
  padding-bottom: 24px;
}

.mc-banner-content h3 {
  font-size: 24px;
  color: var(--primary-dark);
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.mc-banner-img-wrap {
  width: 170px;
  height: 100%;
  background: var(--banner-bg-dark);
  border-radius: 60px 0 0 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.mc-banner-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.mc-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.mc-mentor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border, rgba(12, 58, 48, 0.08));
}

.mc-mentor-row .m-label {
  font-size: 11px;
  color: var(--muted-lt);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}

.mc-mentor-row .m-name {
  font-size: 16px;
  font-weight: 700;
}

.mc-learn-label {
  font-weight: 700;
  margin-bottom: 10px;
}

.mc-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.mc-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mc-check svg {
  width: 20px;
  height: 20px;
  background-color: #ffd2b1;
  color: var(--primary);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mc-check span {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
}

.mc-btn-row {
  display: flex;
  gap: 10px;
}

.mc-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
}

.mc-btn.outline {
  border: 1.5px solid var(--border, rgba(12, 58, 48, 0.08));
  color: var(--primary);
}

.mc-btn.outline:hover {
  border-color: var(--primary);
}

.mc-btn.solid {
  background: var(--primary);
  color: #fff;
}

.mc-btn.solid:hover {
  background: var(--primary-light);
}

@media(max-width:991px) {

  .mc-grid,
  .mc-grid.mc-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 768px;
  }
}

@media(max-width:720px) {

  .mc-grid,
  .mc-grid.mc-3 {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* ================= TESTIMONIALS ================= */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.filter-pill {
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border, rgba(12, 58, 48, 0.08));
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border, rgba(12, 58, 48, 0.08));
  border-radius: 16px;
  padding: 26px;
}

.testi-quote {
  width: 26px;
  height: 20px;
  margin-bottom: 14px;
  display: block;
}

.testi-quote svg {
  width: 100%;
  height: 100%;
}

.testi-card p.t-text {
  font-size: 13.5px;
  color: var(--primary);
  line-height: 1.65;
  margin-bottom: 20px;
  min-height: 80px;
}

.testi-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-foot .t-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.testi-foot .t-cat {
  font-size: 11px;
  color: var(--muted-lt);
}

.testi-foot .t-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.testi-foot .t-rating svg {
  width: 12px;
  height: 12px;
  color: var(--star, #FFB800);
}

@media(max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */
#faq {
  padding: 100px 0 120px;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border, rgba(12, 58, 48, 0.08));
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  cursor: pointer;
}

.faq-q span.qtext {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.faq-q .fchev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--grey);
}

.faq-item.open .fchev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.7;
  padding: 0 4px 22px;
  max-width: 600px;
}

/* ================= BOTTOM CTA ================= */
.cta-sky {
  position: relative;
  padding: 100px 0 0;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(255, 210, 177, 0.4) 60%, rgba(255, 210, 177, 0.7) 100%);
  overflow: hidden;
}

.cta-sky h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.16;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-sky .made {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.cta-sky p.sub {
  font-size: 14.5px;
  color: var(--grey);
  margin-bottom: 34px;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.store-badge .sb-top {
  font-size: 9.5px;
  opacity: 0.7;
  display: block;
  text-align: left;
}

.store-badge .sb-bottom {
  font-size: 14px;
  font-weight: 700;
}

.store-badge:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.mountain-wrap {
  position: relative;
  line-height: 0;
  margin-top: -2px;
}

.mountain-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= FAQ SECTION (INTERNSHIP STYLE) ================= */
.faq-section {
  padding: 100px 0;
  background: var(--white) !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(12, 58, 48, 0.14);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  background: transparent;
  border: none;
  width: 100%;
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  transition: transform .25s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-bottom: 26px;
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.65;
  text-align: left;
  margin-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

@media(max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ================= EXPERIENCE SECTION (CREAM THEME) ================= */
.experience-sec {
  background: #fffaf4;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1.15fr 2.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.exp-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.exp-left p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card {
  border-radius: 20px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border, rgba(12, 58, 48, 0.08));
  text-align: left;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(12, 58, 48, 0.08);
}

.exp-card-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 75%;
}

.exp-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.exp-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  margin: 0;
}

.exp-card-graphic {
  width: 90px;
  height: 90px;
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.exp-card:hover .exp-card-graphic {
  transform: scale(1.1) rotate(-5deg);
}

/* Light Card Tint Gradients for Cream Background */
.tint-green {
  background: linear-gradient(135deg, #F0F7F4 0%, #ffffff 100%);
  color: #0e4429;
}

.tint-blue {
  background: linear-gradient(135deg, #F0F4F8 0%, #ffffff 100%);
  color: #10346c;
}

.tint-teal {
  background: linear-gradient(135deg, #EBF5F5 0%, #ffffff 100%);
  color: #0c4a4a;
}

.tint-purple {
  background: linear-gradient(135deg, #F3F0F8 0%, #ffffff 100%);
  color: #3b185f;
}

.tint-orange {
  background: linear-gradient(135deg, #FAF2EC 0%, #ffffff 100%);
  color: #6c2b10;
}

.tint-yellow {
  background: linear-gradient(135deg, #FAF6EB 0%, #ffffff 100%);
  color: #7a5f13;
}

.tint-green .exp-card-graphic {
  color: #0e4429;
  opacity: 0.18;
}

.tint-blue .exp-card-graphic {
  color: #10346c;
  opacity: 0.18;
}

.tint-teal .exp-card-graphic {
  color: #0c4a4a;
  opacity: 0.18;
}

.tint-purple .exp-card-graphic {
  color: #3b185f;
  opacity: 0.18;
}

.tint-orange .exp-card-graphic {
  color: #6c2b10;
  opacity: 0.18;
}

.tint-yellow .exp-card-graphic {
  color: #7a5f13;
  opacity: 0.18;
}

.tint-green:hover .exp-card-graphic {
  opacity: 0.28;
}

.tint-blue:hover .exp-card-graphic {
  opacity: 0.28;
}

.tint-teal:hover .exp-card-graphic {
  opacity: 0.28;
}

.tint-purple:hover .exp-card-graphic {
  opacity: 0.28;
}

.tint-orange:hover .exp-card-graphic {
  opacity: 0.28;
}

.tint-yellow:hover .exp-card-graphic {
  opacity: 0.28;
}

/* Responsive tweaks */
@media(max-width: 1200px) {
  .exp-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-left {
    text-align: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media(max-width: 900px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 580px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CTA BANNER ================= */
.mc-page-wrapper #cta-banner {
  padding: 100px 0;
  background: var(--hero-gradient);
  border-bottom: 1px solid rgba(12, 58, 48, 0.08);
}

.mc-page-wrapper #cta-banner.career-cta-bg {
  background:
    linear-gradient(180deg, rgb(8 40 33 / 75%) 0%, rgba(8, 40, 33, 0.6) 55%, rgba(8, 40, 33, 0.95) 100%),
    url('/images/media/master-classes/Masterclasses-cta.webp') no-repeat center center !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}

.mc-page-wrapper #cta-banner.career-cta-bg h2 {
  color: #ffffff !important;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -1px;
  line-height: 1.16;
  margin-bottom: 16px;
}

.mc-page-wrapper #cta-banner.career-cta-bg p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mc-page-wrapper #cta-banner.career-cta-bg .kicker {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffd2b1 !important;
  margin-bottom: 12px;
}

.mc-page-wrapper #cta-banner .btn-orange {
  display: inline-block;
  background: #ffca95;
  color: #071f1a;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mc-page-wrapper #cta-banner .btn-orange:hover {
  transform: translateY(-2px);
}