/**
 * Laureate SAP Material Management Course Learning Outcomes Stylesheet
 *
 * @package Laureate
 * @version 1.0.0
 */

.evo-mm-learn,
.evo-mm-learn * {
  box-sizing: border-box;
}

.evo-mm-learn {
  --evo-learn-navy: #112f56;
  --evo-learn-text: #55708e;
  --evo-learn-blue: #1769aa;
  --evo-learn-sky: #1687cd;
  --evo-learn-green: #18a96b;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: clamp(78px, 8vw, 112px) 24px;
  background: #fff;
  color: var(--evo-learn-navy);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.evo-mm-learn__decor {
  position: absolute;
  z-index: -1;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.evo-mm-learn__decor--left {
  left: -270px;
  top: 14%;
  background: rgba(56, 189, 248, .07);
}

.evo-mm-learn__decor--right {
  right: -270px;
  bottom: 8%;
  background: rgba(34, 197, 94, .06);
}

.evo-mm-learn__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.evo-mm-learn__header {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(370px, .75fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.evo-mm-learn__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--evo-learn-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.evo-mm-learn__eyebrow svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 6px;
  background: #e8f6ff;
}

.evo-mm-learn__intro h2 {
  margin: 0;
  color: var(--evo-learn-navy);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -.042em;
}

.evo-mm-learn__intro h2 span {
  color: var(--evo-learn-sky);
  background: linear-gradient(100deg, var(--evo-learn-blue), var(--evo-learn-sky) 56%, var(--evo-learn-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.evo-mm-learn__lead {
  max-width: 490px;
  justify-self: end;
  margin: 0 0 3px;
  color: var(--evo-learn-text);
  font-size: 16px;
  line-height: 1.7;
}

.evo-mm-learn__progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 19px 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(23, 105, 170, .10);
  border-radius: 18px;
  background: linear-gradient(100deg, #f7fbfe, #fbfdff 52%, #f7fcfa);
}

.evo-mm-learn__progress-line {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 135, 205, .16), rgba(22, 135, 205, .48), rgba(24, 169, 107, .26));
}

.evo-mm-learn__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.evo-mm-learn__stage-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border: 4px solid #f8fcff;
  border-radius: 50%;
  background: var(--evo-learn-blue);
  color: #fff;
  box-shadow: 0 5px 13px rgba(23, 105, 170, .19);
  font-size: 9px;
  font-weight: 800;
}

.evo-mm-learn__stage:nth-child(5) .evo-mm-learn__stage-number {
  background: var(--evo-learn-green);
}

.evo-mm-learn__stage-copy {
  display: flex;
  flex-direction: column;
}

.evo-mm-learn__stage-copy b {
  color: var(--evo-learn-navy);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.evo-mm-learn__stage-copy small {
  margin-top: 2px;
  color: #7c92a9;
  font-size: 9px;
  font-weight: 550;
}

.evo-mm-learn__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.evo-mm-learn__card {
  position: relative;
  min-width: 0;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 21px 21px 19px;
  border: 1px solid rgba(23, 105, 170, .10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(21, 74, 118, .055);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.evo-mm-learn__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, var(--evo-learn-blue), var(--evo-learn-sky), var(--evo-learn-green));
  transition: opacity .28s ease;
}

.evo-mm-learn__card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -58px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .045);
  transition: transform .35s ease, background .35s ease;
}

.evo-mm-learn__card:hover {
  z-index: 2;
  border-color: rgba(23, 105, 170, .20);
  box-shadow: 0 20px 42px rgba(21, 74, 118, .105);
  transform: translateY(-5px);
}

.evo-mm-learn__card:hover::before {
  opacity: 1;
}

.evo-mm-learn__card:hover::after {
  background: rgba(56, 189, 248, .075);
  transform: scale(1.13);
}

.evo-mm-learn__card--featured {
  border-color: rgba(24, 169, 107, .17);
  background: linear-gradient(145deg, #fafffc, #fff);
}

.evo-mm-learn__card--featured::after {
  background: rgba(34, 197, 94, .065);
}

.evo-mm-learn__card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 17px;
}

.evo-mm-learn__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf7ff;
  color: var(--evo-learn-sky);
}

.evo-mm-learn__icon--green {
  background: #e7f9ef;
  color: var(--evo-learn-green);
}

.evo-mm-learn__icon--violet {
  background: #f0edff;
  color: #6f63cc;
}

.evo-mm-learn__icon--featured {
  background: var(--evo-learn-green);
  color: #fff;
  box-shadow: 0 9px 20px rgba(24, 169, 107, .2);
}

.evo-mm-learn__icon svg {
  width: 24px;
  height: 24px;
}

.evo-mm-learn__card-number {
  color: rgba(17, 47, 86, .12);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.evo-mm-learn__card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--evo-learn-navy);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.evo-mm-learn__card p {
  position: relative;
  z-index: 1;
  margin: 9px 0 17px;
  color: var(--evo-learn-text);
  font-size: 13px;
  font-weight: 420;
  line-height: 1.62;
}

.evo-mm-learn__tag {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  margin-top: auto;
  border-radius: 7px;
  background: #eff8fd;
  color: var(--evo-learn-blue);
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .025em;
}

.evo-mm-learn__tag--green {
  background: #eaf9f1;
  color: #12895a;
}

.evo-mm-learn__tag--violet {
  background: #f2efff;
  color: #6458be;
}

.evo-mm-learn__tag--featured {
  background: var(--evo-learn-green);
  color: #fff;
}

.evo-mm-learn__outcome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 21px 24px;
  margin-top: 22px;
  border: 1px solid rgba(23, 105, 170, .10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 30%, rgba(34, 197, 94, .08), transparent 22%),
    linear-gradient(100deg, #f3faff, #f9fcff 54%, #f7fcfa);
}

.evo-mm-learn__outcome-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--evo-learn-blue), var(--evo-learn-sky));
  color: #fff;
  box-shadow: 0 10px 23px rgba(23, 105, 170, .19);
}

.evo-mm-learn__outcome-icon svg {
  width: 26px;
  height: 26px;
}

.evo-mm-learn__outcome-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--evo-learn-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.evo-mm-learn__outcome-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--evo-learn-navy);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.55;
}

.evo-mm-learn__outcome-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.evo-mm-learn__outcome-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #59738e;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}

.evo-mm-learn__outcome-points i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--evo-learn-green);
  box-shadow: 0 0 0 4px rgba(24, 169, 107, .1);
}

@media (max-width: 950px) {
  .evo-mm-learn__header {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .evo-mm-learn__lead {
    max-width: 680px;
    justify-self: start;
  }

  .evo-mm-learn__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evo-mm-learn__progress {
    padding-inline: 16px;
  }

  .evo-mm-learn__stage-copy small {
    display: none;
  }

  .evo-mm-learn__outcome {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .evo-mm-learn__outcome-points {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .evo-mm-learn {
    padding: 66px 16px;
  }

  .evo-mm-learn__header {
    margin-bottom: 27px;
  }

  .evo-mm-learn__eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .evo-mm-learn__intro h2 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1.1;
  }

  .evo-mm-learn__lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .evo-mm-learn__progress {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    padding: 16px 12px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .evo-mm-learn__progress-line {
    display: none;
  }

  .evo-mm-learn__stage {
    justify-content: flex-start;
    padding: 6px 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .74);
  }

  .evo-mm-learn__stage-number {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
    border-width: 3px;
  }

  .evo-mm-learn__stage-copy b {
    font-size: 10px;
  }

  .evo-mm-learn__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .evo-mm-learn__card {
    min-height: 0;
    padding: 18px 18px 17px;
    border-radius: 16px;
  }

  .evo-mm-learn__card-top {
    margin-bottom: 14px;
  }

  .evo-mm-learn__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .evo-mm-learn__icon svg {
    width: 22px;
    height: 22px;
  }

  .evo-mm-learn__card h3 {
    font-size: 16px;
  }

  .evo-mm-learn__card p {
    margin: 8px 0 14px;
    font-size: 12.5px;
  }

  .evo-mm-learn__outcome {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 18px;
    margin-top: 16px;
    border-radius: 16px;
  }

  .evo-mm-learn__outcome-icon {
    width: 43px;
    height: 43px;
    align-self: start;
  }

  .evo-mm-learn__outcome-copy p {
    font-size: 12px;
  }

  .evo-mm-learn__outcome-points {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 9px 13px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 105, 170, .09);
  }

  .evo-mm-learn__outcome-points span {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evo-mm-learn *,
  .evo-mm-learn *::before,
  .evo-mm-learn *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
