/* Frontend Styles for Learning Modules */
@font-face {
  font-family: "ProximaNova-Light";
  src: url("../fonts/ProximaNova-Light.woff2") format("woff2"), url("../fonts/ProximaNova-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova-Semibold";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BwDariusDemo-Light";
  src: url("../fonts/BwDariusDEMO-Light.woff2") format("woff2"), url("../fonts/BwDariusDEMO-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.learning-module-viewer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.learning-module-viewer.is-fullscreen {
  max-width: none;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #111;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learning-module-viewer.is-fullscreen .module-slides-container {
  max-width: 95vw;
  max-height: 95vh;
  margin: 0 auto;
}
.learning-module-viewer.is-fullscreen .lm-fullscreen-toggle {
  background: rgba(220, 53, 69, 0.9);
}
.learning-module-viewer.is-fullscreen .lm-fullscreen-toggle:hover, .learning-module-viewer.is-fullscreen .lm-fullscreen-toggle:focus {
  background: rgba(200, 35, 53, 0.95);
}

.lm-fullscreen-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #43bca0;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease;
}
.lm-fullscreen-toggle:hover, .lm-fullscreen-toggle:focus {
  background: rgba(19, 94, 150, 0.95);
  outline: none;
}

.module-slides-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.module-slide {
  height: 100%;
  box-sizing: border-box;
}
.module-slide.has-bg-image {
  position: relative;
}
.module-slide.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.module-slide.has-bg-image > * {
  z-index: 1;
}
.module-slide.has-bg-image .slide-decoration-arc {
  mix-blend-mode: none;
}

.slide-inner.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  height: 100%;
}

.slide-left {
  position: relative;
  z-index: 2;
}

.slide-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8e8e8;
}

.slide-title {
  margin: 0;
  font-size: 2em;
  color: #333;
}

.slide-progress {
  font-size: 1.2em;
  color: #666;
  font-weight: 600;
}

.bg-left-purple-right-green .slide-content {
  color: #fff;
}

.slide-content {
  position: relative;
  height: 100%;
  line-height: 1.8;
  color: #444;
}
.slide-content p,
.slide-content li {
  font-size: 1.5rem;
}
.bg-rightgreen .slide-content p, .bg-rightpeach .slide-content p,
.bg-rightgreen .slide-content li,
.bg-rightpeach .slide-content li {
  font-size: 1.5rem;
}
.bg-rightgreen .slide-content p em, .bg-rightpeach .slide-content p em,
.bg-rightgreen .slide-content li em,
.bg-rightpeach .slide-content li em {
  display: block;
  margin-top: 0.5em;
}
.slide-content ol {
  counter-reset: lmCounter;
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
}
.slide-content ol li {
  counter-increment: lmCounter;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 4px;
  line-height: 1.2em;
}
.slide-content ol li::before {
  content: counter(lmCounter);
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  flex: 0 0 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 22px;
  border-radius: 50%;
  background: #f9a5ba;
  color: #3c307a;
}
.slide-content > .slide-quiz {
  margin-top: 30px;
}
.slide-content > .slide-quiz:first-child {
  margin-top: 0;
}

.slide-foreground-media {
  margin: 0;
  position: relative;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-foreground-media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  filter: grayscale(100%);
}

.slide-image {
  margin: 30px 0;
  text-align: center;
}
.slide-image img {
  max-width: 50vw;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}

.slide-audio {
  margin: 30px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}
.slide-audio audio {
  width: 100%;
}

.slide-background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  max-width: 150px;
}
.slide-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.slide-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.slide-logo.logo-color-green svg *,
.slide-logo.logo-color-green svg [fill] {
  fill: #43bca0 !important;
}
.slide-logo.logo-color-peach svg *,
.slide-logo.logo-color-peach svg [fill] {
  fill: #fa9377 !important;
}
.slide-logo.logo-color-pink svg *,
.slide-logo.logo-color-pink svg [fill] {
  fill: #f9a5ba !important;
}
.slide-logo.logo-color-purple svg *,
.slide-logo.logo-color-purple svg [fill] {
  fill: #3c307a !important;
}
.slide-logo.logo-color-grey svg *,
.slide-logo.logo-color-grey svg [fill] {
  fill: #65676f !important;
}
.slide-logo.logo-color-light svg *,
.slide-logo.logo-color-light svg [fill] {
  fill: #3c307a !important;
}

.slide-module-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
  font-size: 14px;
}

.slide-decoration-arc {
  position: absolute;
  top: 0;
  right: -150px;
  bottom: 0;
  width: 480px;
  height: 480px;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  z-index: 1;
  animation: spinAround 12s linear 0s infinite;
  transform-origin: center center;
}

.slide-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 14px;
  z-index: 10;
}
.slide-controls .nav-btn {
  padding: 6px 20px;
  border: none;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fa9377;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.slide-controls .nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}
.slide-controls .nav-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
.slide-controls .finish-module {
  color: #28a745;
}

.slide-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e8e8e8;
}
.slide-navigation .button {
  padding: 12px 30px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #2271b1;
  color: #fff;
}
.slide-navigation .button:hover {
  background: #135e96;
}
.slide-navigation .prev-slide {
  background: #666;
}
.slide-navigation .prev-slide:hover {
  background: #555;
}
.slide-navigation .finish-module {
  background: #28a745;
}
.slide-navigation .finish-module:hover {
  background: #218838;
}

.slide-quiz {
  margin: 40px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #2271b1;
}
.slide-quiz h3 {
  margin-top: 0;
  color: #2271b1;
}

.quiz-question {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
}

.question-text {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quiz-option:hover {
  background: #e8e8e8;
}
.quiz-option input[type=radio] {
  margin-right: 12px;
  cursor: pointer;
}
.quiz-option span {
  flex-grow: 1;
}
.quiz-option.correct {
  background: #d4edda;
  border-left: 4px solid #28a745;
}
.quiz-option.incorrect {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.quiz-feedback {
  margin-top: 15px;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
}
.quiz-feedback.correct {
  background: #d4edda;
  color: #155724;
}
.quiz-feedback.incorrect {
  background: #f8d7da;
  color: #721c24;
}

.module-completion-message {
  text-align: center;
  padding: 60px 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
.module-completion-message h2 {
  color: #28a745;
  font-size: 2.5em;
  margin-bottom: 20px;
}
.module-completion-message p {
  font-size: 1.3em;
  color: #666;
}

@media (max-width: 1000px) {
  .slide-inner.layout-split {
    grid-template-columns: 1fr;
  }
  .slide-right {
    display: none;
  }
  .slide-controls {
    right: 12px;
    bottom: 12px;
  }
}
@media (max-width: 768px) {
  .learning-module-viewer {
    padding: 10px;
  }
  .module-slide {
    padding: 20px;
  }
  .slide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .slide-title {
    font-size: 1.5em;
  }
  .slide-navigation {
    flex-direction: column;
    gap: 15px;
  }
  .slide-navigation .button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .slide-controls .nav-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .slide-content ol li {
    margin-bottom: 16px;
  }
  .slide-content ol li::before {
    flex: 0 0 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }
}
body {
  font-family: "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1 {
  display: none;
}

.bg-toppurple .slide-content {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  text-align: center;
}
.bg-toppurple .slide-content .wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained {
  align-self: end;
}
.bg-toppurple .slide-content h2.wp-block-heading {
  margin: 0 0 8px;
  font-family: "BwDariusDemo-Light", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 1vw, 72px);
  color: #65676f;
  width: 100%;
}
.bg-toppurple .slide-content h3 {
  margin: 0;
  padding: 0;
  color: #43bca0;
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bg-toppurple .slide-module-name {
  color: #3c307a;
}

.bg-toppurple .slide-logo svg *,
.bg-toppurple .slide-logo svg [fill] {
  fill: #fff !important;
}

.bg-rightgreen .slide-module-name {
  color: #43bca0;
}

.bg-rightgreen .wp-block-group {
  color: #65676f;
}

.slide-content * {
  margin: 0;
}

.wp-block-group.is-layout-grid {
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.bg-topgreen .wp-block-group.is-layout-grid {
  grid-template-columns: 1fr 1fr 1fr;
}
.wp-block-group.is-layout-grid .wp-block-image img {
  width: 60%;
  vertical-align: bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}
.bg-rightpeach .wp-block-group.is-layout-grid .wp-block-image img {
  width: 50%;
}

body .is-layout-grid {
  display: grid;
  align-items: center;
}

h2.wp-block-heading {
  font-family: "BwDariusDemo-Light", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 38px;
}

p.quote::before {
  display: block;
  content: "";
  width: 100%;
  height: 34px;
  background: left top url("../img/quote.svg") no-repeat;
  height: 100px;
  background: right center url(../img/quote.svg) no-repeat;
  background-size: contain;
}

.smcr {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 200px;
  align-self: center;
  justify-self: center;
  transform: translateY(-5rem);
}
.smcr figure {
  text-align: center;
}
.smcr img {
  position: relative;
}
.smcr .fadein {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}
.smcr .spin {
  position: absolute;
  transform: scale(200%);
  opacity: 0;
  animation: fadeIn 1s ease-in forwards, spinAround 8s linear 1s infinite;
  transform-origin: center center;
}

/* Fade-in sequence utilities */
.lm-fade-seq {
  display: contents;
}

/* Apply fade-in to all direct children of a sequence container */
.lm-fade-seq > * {
  opacity: 0;
  animation: lmFadeIn 1s ease-in forwards;
  animation-delay: var(--fade-delay, 0s);
}

@keyframes lmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
figure.cards {
  margin: 4rem;
}
figure.cards svg {
  width: 100%;
  height: auto;
}

.bg-rightpeach .slide-content {
  color: #65676f;
}
.bg-rightpeach .slide-module-name {
  color: #fa9377;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spinAround {
  from {
    transform: scale(200%) rotate(0deg);
  }
  to {
    transform: scale(200%) rotate(360deg);
  }
}
.lm-quiz-question {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  align-items: center;
}
.lm-quiz-question .lm-quiz-question-text h3 {
  font-family: "BwDariusDemo-Light", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgb(52.4056603774, 53.4433962264, 57.5943396226);
  font-size: 28px;
  line-height: 1.4em;
}
.lm-quiz-question .lm-quiz-ui {
  margin-left: 60px;
}
.lm-quiz-question .lm-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lm-quiz-question .lm-quiz-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.lm-quiz-question .lm-quiz-option .lm-quiz-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 32px;
  height: 32px;
  border: 3px solid rgb(134, 120.8, 202.2);
  border-radius: 50%;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  background-color: rgb(233, 230.6, 245.4);
  transition: all 0.3s ease;
}
.lm-quiz-question .lm-quiz-option .lm-quiz-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e8a598;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lm-quiz-question .lm-quiz-option .lm-quiz-radio:checked {
  border-color: #3c307a;
  border-width: 3px;
}
.lm-quiz-question .lm-quiz-option .lm-quiz-radio:checked::before {
  opacity: 1;
}
.lm-quiz-question .lm-quiz-option .lm-quiz-option-text {
  font-family: "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: #2f2c54;
}
.lm-quiz-question .lm-quiz-option:hover .lm-quiz-radio {
  border-color: #2f2c54;
}

/* Buttons */
.btn, button.lm-quiz-submit-btn,
.lm-quiz-submit-btn {
  --btn-radius: 8px;
  --btn-padding-y: 22px;
  --btn-padding-x: 22px;
  --btn-font: "Proxima Nova", system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --btn-shadow-soft: 0 6px 0px rgba(0, 0, 0, 0.08);
  --btn-shadow-strong: 0 10px 0px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  border: none;
  font-family: var(--btn-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Label (default) */
.btn, button.lm-quiz-submit-btn,
.btn--label {
  background: #f0f0f2;
  color: #3c307a; /* purple */
  box-shadow: var(--btn-shadow-soft);
  font-size: 18px;
}

/* Hover */
.btn:hover,
.lm-quiz-submit-btn:hover,
.btn--hover {
  background: #ffffff;
  color: #6b2bc6;
  box-shadow: var(--btn-shadow-strong);
}

/* Pressed */
.btn:active,
.lm-quiz-submit-btn:active,
.btn--pressed {
  background: linear-gradient(180deg, #ffa78b 0%, #ff7d61 100%);
  color: #4c1a99; /* deeper purple for text */
  box-shadow: var(--btn-shadow-strong);
  transform: translateY(1px);
}

/* Disabled */
.btn:disabled,
.lm-quiz-submit-btn:disabled,
.btn.btn--disabled,
button.btn--disabled.lm-quiz-submit-btn {
  background: #e8e7ee;
  color: #b9a6df; /* muted purple */
  box-shadow: var(--btn-shadow-soft);
  cursor: not-allowed;
  opacity: 0.9;
}

/* Warning */
.btn--warning, button.lm-quiz-submit-btn.is-incorrect {
  background: linear-gradient(180deg, #bb5a5a 0%, #9a4646 100%);
  color: #ffffff;
  box-shadow: var(--btn-shadow-strong);
}

/* Success */
.btn--success, button.lm-quiz-submit-btn.is-correct {
  background: linear-gradient(180deg, #31c09b 0%, #1ea482 100%);
  color: #ffffff;
  box-shadow: var(--btn-shadow-strong);
}

/* Optional: size variants */
.btn--sm {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 1.05rem;
}

/* Optional: icon alignment */
.btn .icon, button.lm-quiz-submit-btn .icon {
  display: inline-block;
  line-height: 0;
}

.lm-quiz-ui {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.bg-toppurple .slide-content p {
  color: #fff;
}

.postid-64 .bg-toppurple .wp-block-group.is-layout-grid .wp-block-image img {
  position: relative;
  width: 80%;
  transform: translate(60px, -60px);
}

.bg-topgreen .slide-content {
  align-content: center;
  justify-content: center;
}
.bg-topgreen .slide-content h2 {
  text-align: center;
  width: 100%;
  align-self: flex-end;
  transform: translateY(80px);
  font-size: 64px;
}

.wp-block-group.panels {
  height: auto;
  margin: 40px;
  align-items: stretch;
}
.wp-block-group.panels > div {
  background-color: #eae8ef;
  border-radius: 1rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 2rem 1.5rem;
}
.wp-block-group.panels > div h3 {
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-align: center;
}
.wp-block-group.panels > div h3::first-letter {
  color: #43bca0;
}
.wp-block-group.panels > div p {
  line-height: 1.1em;
  text-align: center;
}

.slide-content p {
  line-height: 1.2em;
  margin: 0.25em 0 0.5em;
}

.slide-content h3.wp-block-heading {
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 1rem;
}

.bg-rightgreen .wp-block-group.is-layout-grid .wp-block-image img {
  width: 55%;
}

.bg-toppurple .slide-content ol {
  margin: 5rem 2rem 0;
  color: #fff;
}

.two-column-text {
  -moz-columns: 2;
       columns: 2; /* Defines the number of columns */
  -moz-column-gap: 20px;
       column-gap: 20px; /* Sets the space between columns */
}

.bg-toppurple .slide-content ol li::before {
  background: #43bca0;
  color: #fff;
}

.bg-light .slide-content figure.wp-block-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.bg-light .slide-content figure.wp-block-image img {
  width: 60%;
  left: 0;
}
.bg-light .slide-content > .wp-block-group {
  gap: 0;
}
.bg-light .slide-content .wp-block-group {
  position: relative;
  height: 100%;
}
.bg-light .slide-content .wp-block-group h2,
.bg-light .slide-content .wp-block-group h4 {
  margin-top: 100px;
}
.bg-light .slide-content .wp-block-group h4 {
  margin-bottom: 0.5em;
}
.bg-light .slide-content h4 {
  font-size: 24px;
}
.bg-light .slide-content h5 {
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #43bca0;
  letter-spacing: 0.02em;
  margin-top: 0.5em;
}
.bg-light .slide-content p {
  font-size: 16px;
}

/* Progress Tracking Styles */
.lm-user-progress-overview,
.lm-module-progress {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.lm-user-progress-overview h2,
.lm-user-progress-overview h3,
.lm-module-progress h2,
.lm-module-progress h3 {
  color: #3c307a;
  margin-bottom: 1.5rem;
}

.lm-module-progress-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e7ee;
}
.lm-module-progress-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.lm-module-progress-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #3c307a;
}

.lm-progress-bar {
  width: 100%;
  height: 24px;
  background: #f0f0f2;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}

.lm-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #43bca0 0%, rgb(53.6, 150.4, 128) 100%);
  border-radius: 12px;
  transition: width 0.6s ease;
  position: relative;
}
.lm-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.lm-progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.lm-progress-stats span:last-child {
  font-weight: 600;
  color: #43bca0;
}

.lm-progress-details {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9f9fb;
  border-radius: 6px;
}
.lm-progress-details p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #444;
}
.lm-progress-details p strong {
  color: #3c307a;
}

.lm-last-viewed {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Login Required Prompt */
.lm-login-required {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem;
  background: linear-gradient(135deg, #f6f7f9 0%, #e9ecef 100%);
  border-radius: 12px;
  margin: 2rem 0;
}

.lm-login-box {
  max-width: 450px;
  width: 100%;
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.lm-login-box .lm-lock-icon {
  color: #3c307a;
  margin: 0 auto 1.5rem;
  display: block;
}
.lm-login-box h2 {
  font-size: 1.75rem;
  color: #3c307a;
  margin-bottom: 1rem;
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.lm-login-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.lm-login-box .lm-login-button {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, #3c307a 0%, rgb(42, 33.6, 85.4) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "ProximaNova-Semibold", "ProximaNova-Light", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(60, 48, 122, 0.3);
}
.lm-login-box .lm-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 48, 122, 0.4);
  text-decoration: none;
  color: #fff;
}
.lm-login-box .lm-login-button:active {
  transform: translateY(0);
}
.lm-login-box .lm-register-link {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #888;
}
.lm-login-box .lm-register-link a {
  color: #3c307a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.lm-login-box .lm-register-link a:hover {
  color: rgb(42, 33.6, 85.4);
  text-decoration: underline;
}/*# sourceMappingURL=frontend.css.map */