.top-viewed-courses > .container-xl,
.recently-watched-courses > .container-xl,
.popular-categories > .container-xl,
.why-mindluster > .container-xl,
.recent-courses > .container-xl,
.career-paths > .container-xl,
.books-summaries > .container-xl,
.testimonials > .container-xl {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.text-button {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  color: #1cb8eb;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: #158ab0;
  text-decoration: none;
}

.text-button__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentcolor;
  -webkit-mask: url("/assets/v2/home/icon-carousel-arrow-right.svg") center/contain no-repeat;
          mask: url("/assets/v2/home/icon-carousel-arrow-right.svg") center/contain no-repeat;
}

@supports (-webkit-mask: url("")) {
  .text-button__icon {
    -webkit-mask: url("/assets/v2/home/icon-carousel-arrow-right.svg") center/contain no-repeat;
  }
}

.home-hero {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 700px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 40px 0 160px;
  background: #fff;
}

.home-hero__background,
.home-hero__background::before,
.home-hero__background::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.home-hero__background {
  inset: 0;
  overflow: hidden;
  background-image: radial-gradient(circle at center, rgba(15, 23, 42, 0.08) 1.2px, transparent 1.2px);
  background-size: 64px 64px;
  opacity: 0.3;
}

.home-hero__background::before {
  inset: -10% 70% 60% -10%;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.5);
  -webkit-filter: blur(32px);
          filter: blur(32px);
}

.home-hero__background::after {
  top: 50%;
  right: -5%;
  bottom: -10%;
  left: 55%;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.5);
  -webkit-filter: blur(32px);
          filter: blur(32px);
}

.home-hero__container {
  position: relative;
  display: flex;
  width: min(100%, 1280px);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  text-align: center;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-hero__badge-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #10b981;
  border-radius: 50%;
}

.home-hero__title {
  display: flex;
  max-width: 896px;
  flex-direction: column;
  align-items: center;
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 72px;
}

.home-hero__title span {
  display: block;
}

.home-hero__title span:last-child {
  color: transparent;
  background: linear-gradient(90deg, #0284c7 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.home-hero__lead {
  width: min(100%, 672px);
  margin: 0;
  color: #64748b;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.home-hero__search-shell {
  --course-search-results-offset: calc(100% - 32px);
  --course-search-results-max-height: min(360px, calc(100vh - 96px));
  width: min(100%, 768px);
  padding: 24px 0 40px;
  z-index: 3;
}

.home-hero__search-shell::before {
  position: absolute;
  top: 20px;
  right: -4px;
  bottom: 36px;
  left: -4px;
  z-index: 0;
  background: linear-gradient(90deg, #0ea5e9 0%, #60a5fa 100%);
  border-radius: 16px;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  opacity: 0.25;
  content: "";
}

.home-hero__search {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 9px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5), 0 8px 10px -6px rgba(226, 232, 240, 0.5);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-hero__search:focus-within {
  border-color: rgba(2, 132, 199, 0.55);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.09), 0 20px 25px -5px rgba(226, 232, 240, 0.5), 0 8px 10px -6px rgba(226, 232, 240, 0.5);
}

.home-hero__search-input {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
}

.home-hero__search-icon {
  display: inline-flex;
  width: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
}

.home-hero__search-icon img {
  width: 18px;
  height: 18px;
}

.home-hero__search input {
  width: 100%;
  min-width: 0;
  padding: 19px 8px 20px;
  color: #0f172a;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  outline: 0;
}

.home-hero__search input::-webkit-input-placeholder {
  color: #94a3b8;
}

.home-hero__search input::-moz-placeholder {
  color: #94a3b8;
}

.home-hero__search input:-ms-input-placeholder {
  color: #94a3b8;
}

.home-hero__search input::-ms-input-placeholder {
  color: #94a3b8;
}

.home-hero__search input::placeholder {
  color: #94a3b8;
}

.home-hero__search-button {
  min-height: 56px;
  gap: 8px;
  padding: 16px 32px;
  background: #0284c7;
  border-color: #0284c7;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2), 0 2px 4px -2px rgba(14, 165, 233, 0.2);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.home-hero__search-button img {
  width: 12.25px;
  height: 14px;
}

.home-hero__search-button:hover,
.home-hero__search-button:focus {
  background: #0369a1;
  border-color: #0369a1;
}

.home-hero__stats {
  display: flex;
  width: min(100%, 896px);
  justify-content: center;
  gap: 64px;
  padding-top: 33px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.home-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.home-hero__stat strong {
  color: #0f172a;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  white-space: nowrap;
}

.home-hero__stat span {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .home-hero {
    min-height: 640px;
    padding: 72px 0 96px;
  }

  .home-hero__title {
    max-width: 720px;
    font-size: 52px;
    line-height: 56px;
  }

  .home-hero__lead {
    max-width: 600px;
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575.98px) {
  .home-hero {
    min-height: 600px;
    padding: 32px 0 64px;
  }

  .home-hero__background {
    background-size: 48px 48px;
    opacity: 0.2;
  }

  .home-hero__background::before {
    inset: -20% 50% 60% -30%;
    background: rgba(224, 242, 254, 0.4);
  }

  .home-hero__background::after {
    top: 70%;
    right: -20%;
    bottom: -20%;
    left: 50%;
    background: rgba(239, 246, 255, 0.4);
  }

  .home-hero__container {
    gap: 16px;
    padding: 0 16px;
  }

  .home-hero__badge {
    padding: 9px 13px;
  }

  .home-hero__badge-dot {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .home-hero__badge-prefix {
    display: none;
  }

  .home-hero__title {
    gap: 3.5px;
    width: 100%;
    margin-top: 7px;
    font-size: 30px;
    line-height: 37.5px;
    white-space: nowrap;
  }

  .home-hero__lead {
    padding: 0 8px;
    font-size: 16px;
    line-height: 26px;
  }

  .home-hero__search-shell {
    --course-search-results-offset: calc(100% - 8px);
    --course-search-results-max-height: min(320px, calc(100vh - 120px));
    width: 100%;
    padding: 16px 0;
  }

  .home-hero__search-shell::before {
    inset: 12px -4px;
    border-radius: 12px;
  }

  .home-hero__search {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 7px;
    border-radius: 12px;
  }

  .home-hero__search-input {
    width: 100%;
  }

  .home-hero__search-icon {
    width: 36px;
    flex-basis: 36px;
  }

  .home-hero__search-icon img {
    width: 16px;
    height: 16px;
  }

  .home-hero__search input {
    padding: 14px 8px;
    font-size: 16px;
  }

  .home-hero__search-button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 8px !important;
  }

  .home-hero__stats {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 25px;
  }

  .home-hero__stat strong {
    font-size: 20px;
    line-height: 28px;
  }

  .home-hero__stat span {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    font-size: 12px;
    line-height: 15px;
    white-space: normal;
  }
}

.v2-ad-slot > .container-xl {
  display: flex;
  justify-content: center;
}

.v2-ad-slot--embedded {
  display: flex;
  justify-content: center;
  margin: 20px 0 24px;
}

.v2-ad-slot__card {
  width: min(100%, 970px);
  padding: 14px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(20, 46, 86, 0.08);
}

.v2-ad-slot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.v2-ad-slot__label {
  color: #7c8da6;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.v2-ad-slot__link {
  color: #118ccf;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
}

.v2-ad-slot__link:hover,
.v2-ad-slot__link:focus-visible {
  color: #0b6596;
  text-decoration: underline;
}

.v2-ad-slot__unit {
  min-height: 90px;
  overflow: hidden;
  border-radius: 6px;
  background: #f7fbff;
}

@media (max-width: 575.98px) {
  .v2-ad-slot__card {
    padding: 12px;
  }

  .v2-ad-slot__header {
    gap: 10px;
  }
}

.popular-categories {
  background: #fff;
}

.popular-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.popular-category-card {
  display: flex;
  height: 161px;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  color: #272727;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.popular-category-card:hover,
.popular-category-card:focus-visible {
  color: #272727;
  background: #f5fdff;
  border-color: #b9e9f9;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.popular-category-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popular-category-card__icon-image {
  display: block;
}

.popular-category-card__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 4px;
}

.popular-category-card__title {
  color: #272727;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.popular-category-card__count {
  color: #575757;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  white-space: nowrap;
}

.popular-category-card--programming .popular-category-card__icon {
  background: rgba(107, 70, 193, 0.1);
}

.popular-category-card--programming .popular-category-card__icon-image {
  width: 20px;
  height: 12px;
}

.popular-category-card--business .popular-category-card__icon {
  background: rgba(59, 130, 246, 0.1);
}

.popular-category-card--business .popular-category-card__icon-image {
  width: 20px;
  height: 19px;
}

.popular-category-card--design .popular-category-card__icon {
  background: rgba(236, 72, 153, 0.1);
}

.popular-category-card--design .popular-category-card__icon-image {
  width: 20px;
  height: 20px;
}

.popular-category-card--marketing .popular-category-card__icon {
  background: rgba(249, 115, 22, 0.1);
}

.popular-category-card--marketing .popular-category-card__icon-image {
  width: 20px;
  height: 16px;
}

.popular-category-card--languages .popular-category-card__icon {
  background: rgba(34, 197, 94, 0.1);
}

.popular-category-card--languages .popular-category-card__icon-image {
  width: 22.1px;
  height: 20px;
}

.popular-category-card--ai .popular-category-card__icon {
  background: rgba(168, 85, 247, 0.1);
}

.popular-category-card--ai .popular-category-card__icon-image {
  width: 18px;
  height: 18px;
}

.popular-category-card--ai .popular-category-card__title {
  color: #0f172a;
}

.premium-promo {
  padding: 80px 0;
  background: #fff;
}

.premium-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  color: #fff;
  background: #022240;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  box-shadow: 0 16px 50px -12px rgba(0, 0, 0, 0.25);
}

.premium-banner::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background: linear-gradient(to left, rgba(91, 19, 236, 0.2), rgba(91, 19, 236, 0));
  content: "";
}

.premium-banner::after {
  position: absolute;
  right: -144.73px;
  bottom: -69.52px;
  width: 256px;
  height: 256px;
  background: rgba(0, 243, 255, 0.2);
  border-radius: 50%;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  content: "";
}

.premium-banner__title,
.premium-banner__lead,
.premium-banner__features,
.premium-banner__checkout {
  position: absolute;
  z-index: 1;
}

.premium-banner__title {
  top: 32px;
  left: 40px;
  margin: 0;
  color: #fff;
  font-family: "Gilroy-ExtraBold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.premium-banner__lead {
  top: 96px;
  left: 40px;
  width: 430px;
  margin: 0;
  color: #fff;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.premium-banner__features {
  top: 192px;
  left: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.premium-banner__feature {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.premium-banner__feature-icon {
  display: block;
  flex: 0 0 auto;
}

.premium-banner__feature-icon--block {
  width: 16px;
  height: 16px;
}

.premium-banner__feature-icon--learning {
  width: 22px;
  height: 18px;
}

.premium-banner__feature-icon--interface {
  width: 24px;
  height: 16px;
}

.premium-banner__checkout {
  top: 45px;
  right: 40px;
  display: flex;
  width: 348px;
  height: 152px;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 33px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.premium-banner__button {
  display: inline-flex;
  width: 282px;
  height: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #fff;
  background: #19a6d4;
  border-radius: 0.25rem;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s linear, box-shadow 0.3s linear;
}

.premium-banner__button:hover,
.premium-banner__button:focus-visible {
  color: #fff;
  background: #158ab0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.premium-banner__note {
  margin: 0;
  color: #fff;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.premium-banner > * {
  z-index: 1;
}

.premium-banner .premium-banner__title::before {
  position: absolute;
  top: -127.48px;
  left: -125px;
  z-index: -1;
  width: 256px;
  height: 256px;
  background: rgba(19, 91, 236, 0.2);
  border-radius: 50%;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  content: "";
}

.why-mindluster {
  background: #f9f9f9;
}

.why-mindluster__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.benefit-card {
  position: relative;
  display: flex;
  height: 228px;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 33px;
  overflow: hidden;
  color: #272727;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.benefit-card--violet .benefit-card__icon {
  background: rgba(91, 19, 236, 0.1);
}

.benefit-card--blue .benefit-card__icon {
  background: rgba(59, 130, 246, 0.1);
}

.benefit-card--green .benefit-card__icon {
  background: rgba(34, 197, 94, 0.1);
}

.benefit-card--orange .benefit-card__icon {
  background: rgba(249, 115, 22, 0.1);
}

.benefit-card__icon-image {
  display: block;
}

.benefit-card__icon-image--certified {
  width: 20px;
  height: 26.25px;
}

.benefit-card__icon-image--instructors {
  width: 23.765px;
  height: 25px;
}

.benefit-card__icon-image--flexible {
  width: 22.5px;
  height: 22.5px;
}

.benefit-card__icon-image--lifetime {
  width: 30px;
  height: 13.75px;
}

.benefit-card__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.benefit-card__title {
  display: block;
  width: 100%;
  color: #272727;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

.benefit-card__description {
  display: block;
  width: 100%;
  color: #575757;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}

.recent-courses {
  background: #fff;
}

.recently-watched-courses {
  background: #fff;
}

.recent-courses__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.recent-courses .course-card {
  width: 100%;
  height: 343px;
  flex: initial;
}

.recent-courses__button {
  align-self: center;
  width: 282px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.25rem;
  background: #19a6d4;
  color: #fff;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.recent-courses__button:hover,
.recent-courses__button:focus-visible {
  background: #158ab0;
  color: #fff;
}

.resume-promo-section {
  padding: 80px 0;
  background: #fff;
}

.resume-promo {
  display: flex;
  min-height: 366px;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 33px 41px;
  background: #f5fdff;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 7px 13.5px rgba(0, 0, 0, 0.08);
  outline: 1px solid #b9e9f9;
  outline-offset: -1px;
}

.resume-promo__content {
  display: flex;
  width: 563px;
  flex: 0 0 563px;
  flex-direction: column;
  gap: 32px;
}

.resume-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resume-promo__title {
  margin: 0;
  color: #272727;
  font-family: "Gilroy-ExtraBold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.resume-promo__description {
  margin: 0;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.resume-promo__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resume-promo__button {
  display: inline-flex;
  width: 282px;
  height: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 0;
  border-radius: 0.25rem;
  background: #19a6d4;
  color: #fff;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.resume-promo__button:hover,
.resume-promo__button:focus-visible {
  background: #158ab0;
  color: #fff;
}

.resume-promo__features {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.resume-promo__feature {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.resume-promo__feature-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.resume-promo__media {
  position: relative;
  width: 462px;
  flex: 0 0 462px;
  padding: 12px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 109, 177, 0.2);
}

.resume-promo__media::after {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  content: "";
  pointer-events: none;
}

.resume-promo__image {
  display: block;
  width: 100%;
  height: 276px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.25rem;
}

.career-paths {
  background: #f9f9f9;
}

.career-card {
  display: flex;
  width: 294px;
  height: 274px;
  flex: 0 0 294px;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  color: #272727;
  background: #fff;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 1px #eee;
  scroll-snap-align: start;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.career-card:hover,
.career-card:focus-visible {
  color: #272727;
  box-shadow: inset 0 0 0 1px #e6e6e6, 0 0 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.career-card__image {
  width: 100%;
  height: 150px;
  flex: 0 0 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

.career-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
}

.career-card__title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #1e1e1e;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.career-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.career-card__meta-item,
.career-card__views {
  display: inline-flex;
  align-items: center;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  white-space: nowrap;
}

.career-card__meta-item img,
.career-card__views img {
  width: 12px;
  height: 12px;
}

.career-card__meta-item {
  gap: 4px;
}

.career-card__views {
  gap: 4px;
  color: #272727;
}

@media (min-width: 1200px) {
  .recent-courses {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .recent-courses__grid {
    row-gap: 36px;
  }
}

.course-carousel {
  position: relative;
  height: 358px;
}

.course-rail {
  display: flex;
  height: 382px;
  gap: 8px;
  margin: -12px;
  padding: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-padding-inline: 12px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.course-rail::-webkit-scrollbar {
  display: none;
}

.carousel-rail--animating,
.course-rail--animating {
  scroll-behavior: auto;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.carousel-rail--animating [data-carousel-item],
.course-rail--animating [data-carousel-item] {
  scroll-snap-align: none;
}

.course-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 47.84px;
  height: 47.84px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #eee;
  border: 1px solid #e6e6e6;
  border-radius: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%);
}

.course-carousel__arrow:hover,
.course-carousel__arrow:focus-visible {
  background: #f4f4f4;
  border-color: #dedede;
  box-shadow: 0 4px 14px rgba(30, 30, 30, 0.14);
  transform: translateY(-50%) scale(1.04);
}

.course-carousel__arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.course-carousel__arrow[hidden] {
  display: none;
}

.course-carousel__arrow img {
  width: 15.84px;
  height: 15.84px;
}

.course-carousel__arrow--prev {
  left: -24px;
}

.course-carousel__arrow--prev img {
  transform: rotate(180deg);
}

.course-carousel__arrow--next {
  right: -24px;
}

.course-carousel.career-paths__carousel {
  height: 274px;
}

.course-rail.career-paths__rail {
  height: 298px;
}

@media (max-width: 1199.98px) {
  .course-carousel--stack-below-xl {
    height: auto;
  }

  .course-carousel--stack-below-xl .course-rail {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-behavior: auto;
    scroll-padding-inline: 0;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }

  .course-carousel--stack-below-xl .course-card {
    width: 100%;
    height: 343px;
    flex: initial;
    scroll-snap-align: initial;
  }

  .course-carousel--stack-below-xl .course-carousel__arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .course-carousel--stack-below-xl .course-rail {
    grid-template-columns: 1fr;
  }
}

.books-summaries .section-heading__subtitle {
  color: #64748b;
}

.book-summary-carousel {
  position: relative;
  height: 464px;
}

.book-summary-rail {
  display: flex;
  height: 488px;
  gap: 8px;
  margin: -10px;
  padding: 10px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-padding-inline: 10px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.book-summary-rail::-webkit-scrollbar {
  display: none;
}

.book-summary-card {
  position: relative;
  display: flex;
  width: 294px;
  height: 468px;
  flex: 0 0 294px;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  color: #272727;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.book-summary-card:hover,
.book-summary-card:focus-visible {
  z-index: 1;
  color: #272727;
  border-color: #e6e6e6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.book-summary-card__image-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  flex: 0 0 320px;
  overflow: hidden;
  border-radius: 2px;
}

.book-summary-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.book-summary-card__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
}

.book-summary-card__title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #1e1e1e;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.book-summary-card__button {
  display: inline-flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #1cb8eb;
  border: 1px solid #b9e9f9;
  border-radius: 0.25rem;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  transition: color 0.3s linear, background-color 0.3s linear, border-color 0.3s linear;
}

.book-summary-card__button:hover {
  color: #fff;
  background: #1cb8eb;
  border-color: #1cb8eb;
}

.book-summary-card:focus-visible .book-summary-card__button {
  color: #fff;
  background: #1cb8eb;
  border-color: #1cb8eb;
}

.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  gap: 24px;
  padding: 29px;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.testimonial-card__quote-icon {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.testimonial-card__author {
  display: flex;
  gap: 16px;
  align-items: center;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__author-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}

.testimonial-card__name {
  color: #272727;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonial-card__rating {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #272727;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.testimonial-card__rating img {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__quote {
  display: -webkit-box;
  min-height: 72px;
  margin: 0;
  overflow: hidden;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.testimonial-card__course {
  display: block;
  color: #1cb8eb;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s linear;
}

.testimonial-card__course:hover,
.testimonial-card__course:focus-visible {
  color: #158ab0;
  text-decoration: none;
}

.instructor-promo-section {
  background: #fff;
}

.instructor-promo {
  display: flex;
  gap: 62px;
  align-items: center;
  justify-content: center;
}

.instructor-promo__media {
  position: relative;
  width: 495px;
  height: 402px;
  flex: 0 0 495px;
  overflow: hidden;
  background: transparent;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.instructor-promo__image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.instructor-promo__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}

.instructor-promo__content {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.instructor-promo__details,
.instructor-promo__copy,
.instructor-promo__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.instructor-promo__details {
  width: 100%;
  gap: 24px;
}

.instructor-promo__copy {
  width: 100%;
  gap: 16px;
}

.instructor-promo__title {
  width: 100%;
  margin: 0;
  color: #272727;
  font-family: "Gilroy-ExtraBold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
}

.instructor-promo__description {
  width: 564px;
  max-width: 100%;
  margin: 0;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.instructor-promo__list {
  width: 100%;
  gap: 12px;
  margin: 0;
  padding: 1px 0 0;
  list-style: none;
}

.instructor-promo__item {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: center;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.instructor-promo__item img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.instructor-promo__button {
  width: 240px;
  height: 48px;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.m3aarf-promo-section {
  scroll-margin-top: 88px;
  padding-bottom: 80px;
  background: #fff;
}

.m3aarf-promo {
  display: flex;
  min-height: 366px;
  gap: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  background: #f5fdff;
  border: 1px solid #b9e9f9;
  border-radius: 0.5rem;
  box-shadow: 0 2px 13.5px rgba(0, 0, 0, 0.12);
}

.m3aarf-promo__content {
  display: flex;
  width: 556px;
  min-width: 0;
  flex: 0 0 556px;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.m3aarf-promo__logo {
  display: block;
  width: 95.454px;
  height: 33.522px;
}

.m3aarf-promo__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.m3aarf-promo__title {
  margin: 0;
  color: #272727;
  font-family: "Gilroy-ExtraBold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.m3aarf-promo__title span {
  color: #ec571a;
}

.m3aarf-promo__description {
  margin: 0;
  color: #737373;
  font-family: "Gilroy-Medium", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.m3aarf-promo__button {
  gap: 4px;
  width: 240px;
  height: 48px;
  min-height: 48px;
  padding: 10px 24px;
  border: 0;
  font-family: "Gilroy-Bold", "Gilroy", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.m3aarf-promo__button img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.m3aarf-promo__media {
  position: relative;
  width: 462px;
  height: 266.18px;
  flex: 0 0 462px;
}

.m3aarf-promo__device {
  position: absolute;
  top: -11.74px;
  left: 0;
  display: block;
  width: 463px;
  max-width: none;
  height: auto;
}

@media (max-width: 1199.98px) {
  .course-carousel {
    overflow: visible;
  }

  .popular-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-banner {
    height: 340px;
  }

  .premium-banner__title {
    top: 28px;
    left: 40px;
    width: auto;
    max-width: calc(100% - 80px);
  }

  .premium-banner__lead {
    top: 116px;
    left: 40px;
    width: 294px;
  }

  .premium-banner__features {
    top: 212px;
    left: 40px;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .premium-banner__checkout {
    top: 143px;
    right: 40px;
    width: 283px;
    height: 140px;
    padding: 27px 16px;
  }

  .premium-banner__button {
    width: 250px;
  }

  .why-mindluster__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-courses__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resume-promo {
    min-height: 682px;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .resume-promo__content {
    flex-basis: auto;
  }

  .resume-promo__media {
    width: 100%;
    flex-basis: auto;
  }

  .career-paths .course-carousel__arrow {
    display: none;
  }

  .books-summaries .book-summary-carousel__arrow {
    display: none;
  }

  .book-summary-carousel,
  .book-summary-rail {
    width: calc(100vw - 24px);
    max-width: none;
  }

  .book-summary-rail {
    margin: -10px 0;
    padding: 10px 0;
    scroll-padding-inline: 0;
  }

  .book-summary-card {
    width: 288px;
    flex-basis: 288px;
  }

  .testimonial-card {
    min-height: 228px;
    padding: 17px;
  }

  .testimonial-card__quote-icon {
    top: 17px;
    right: 17px;
  }

  .testimonial-card__author {
    gap: 8px;
  }

  .testimonial-card__avatar {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .testimonial-card__name {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonial-card__quote {
    min-height: 0;
  }

  .instructor-promo {
    gap: 40px;
  }

  .instructor-promo__media {
    width: 356px;
    height: 409px;
    flex-basis: 356px;
  }

  .instructor-promo__image {
    -o-object-position: center;
       object-position: center;
  }

  .m3aarf-promo {
    min-height: 680px;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 40px;
  }

  .m3aarf-promo__content {
    width: 100%;
    max-width: 624px;
    flex-basis: auto;
  }

  .m3aarf-promo__media {
    width: 462px;
    max-width: 100%;
    height: 266.18px;
    flex-basis: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .m3aarf-promo__content {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .course-carousel.career-paths__carousel,
  .course-rail.career-paths__rail {
    width: calc(100vw - 16px);
    max-width: none;
  }

  .books-summaries {
    padding-bottom: 48px;
  }

  .books-summaries .section-heading__subtitle {
    color: #737373;
  }

  .book-summary-carousel,
  .book-summary-rail {
    width: calc(100vw - 16px);
    max-width: none;
  }

  .book-summary-rail {
    margin: -10px 0;
    padding: 10px 0;
    scroll-padding-inline: 0;
  }

  .book-summary-card {
    width: calc(100vw - 56px);
    max-width: 264px;
    flex-basis: calc(100vw - 56px);
  }

  .book-summary-card__button {
    font-size: 14px;
  }

  .testimonials .section-heading__copy {
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .testimonials .section-heading__subtitle {
    line-height: 24px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonial-card {
    min-height: 207px;
  }

  .testimonial-card__course {
    width: 201px;
    max-width: 100%;
  }

  .career-card {
    width: calc(100vw - 48px);
    max-width: 294px;
    flex-basis: calc(100vw - 48px);
  }

  .course-rail {
    margin: -12px 0;
    padding: 12px 0;
    scroll-padding-inline: 0;
  }

  .course-carousel__arrow {
    display: none;
  }

  .popular-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-category-card {
    height: 177px;
  }

  .popular-category-card__title {
    white-space: normal;
  }

  .instructor-promo {
    flex-direction: column;
    gap: 62px;
    align-items: stretch;
  }

  .instructor-promo__content {
    order: 1;
    width: 100%;
  }

  .instructor-promo__details {
    gap: 20px;
  }

  .instructor-promo__title {
    font-size: 28px;
    line-height: 36px;
  }

  .instructor-promo__description {
    font-size: 14px;
    line-height: 20px;
  }

  .instructor-promo__list {
    gap: 8px;
    padding-top: 0;
  }

  .instructor-promo__item {
    font-size: 14px;
    line-height: 16px;
  }

  .instructor-promo__item img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .instructor-promo__button {
    width: 100%;
    font-size: 14px;
  }

  .instructor-promo__media {
    order: 2;
    width: 100%;
    height: 225px;
    flex: 0 0 225px;
  }

  .m3aarf-promo {
    min-height: 585px;
    gap: 48px;
    padding: 40px 16px;
  }

  .m3aarf-promo__title {
    font-size: 28px;
    line-height: 36px;
  }

  .m3aarf-promo__description {
    font-size: 14px;
    line-height: 20px;
  }

  .m3aarf-promo__button {
    max-width: 100%;
    font-size: 14px;
  }

  .m3aarf-promo__media {
    width: 256px;
    height: 147.49px;
  }

  .m3aarf-promo__device {
    top: -6.5px;
    width: 256px;
  }

  .premium-promo {
    padding-top: 0;
  }

  .premium-banner {
    height: 556px;
  }

  .premium-banner__title {
    top: 40px;
    left: 20px;
    width: 246px;
    max-width: none;
    font-size: 28px;
    line-height: 36px;
    white-space: normal;
  }

  .premium-banner__lead {
    top: 152px;
    left: 20px;
    width: 246px;
    font-size: 14px;
    line-height: 20px;
  }

  .premium-banner__features {
    top: 236px;
    left: 20px;
  }

  .premium-banner__checkout {
    top: 374px;
    right: auto;
    left: 50%;
    width: 246px;
    height: 140px;
    padding: 27px 13px;
    transform: translateX(-50%);
  }

  .premium-banner__button {
    width: 220px;
    font-size: 14px;
  }

  .why-mindluster .section-heading__copy {
    gap: 8px;
  }

  .why-mindluster .section-heading__title {
    font-size: 28px;
  }

  .why-mindluster .section-heading__subtitle {
    width: 246px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .why-mindluster__grid {
    grid-template-columns: 1fr;
  }

  .recent-courses {
    padding-bottom: 80px;
  }

  .recent-courses .section-heading__copy {
    gap: 4px;
  }

  .recent-courses .section-heading__title {
    font-size: 28px;
    line-height: 39px;
  }

  .recent-courses .section-heading__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .recent-courses__grid {
    grid-template-columns: 1fr;
  }

  .recent-courses__button {
    width: 100%;
    font-size: 14px;
  }

  .resume-promo-section {
    padding-top: 80px;
  }

  .resume-promo {
    min-height: 762px;
    gap: 32px;
    padding: 33px 21px;
  }

  .resume-promo__content {
    width: 100%;
    flex-basis: auto;
    gap: 22px;
  }

  .resume-promo__title {
    font-size: 26px;
    line-height: 36px;
  }

  .resume-promo__description {
    font-size: 14px;
    line-height: 20px;
  }

  .resume-promo__actions {
    gap: 16px;
  }

  .resume-promo__button {
    width: 100%;
    font-size: 14px;
  }

  .resume-promo__features {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

