/**
 * Lesson Finder Block Styles
 *
 * @package jpmr2025
 */
.block-lesson-finder {
  padding: 24px 0 0;
}
@media only screen and (min-width: 768px) {
  .block-lesson-finder {
    padding: 40px 0 0;
  }
}

.lesson-finder__quiz-container {
  position: relative;
}

.lesson-finder__screen {
  display: none;
  animation: fadeIn 0.3s ease-in;
}
.lesson-finder__screen--active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lesson-finder__heading {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .lesson-finder__heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.lesson-finder__question {
  color: #AA273E;
  font-family: "Dunbar Tall";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .lesson-finder__question {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 40px;
  }
}

.lesson-finder__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.lesson-finder__buttons .btn:not(.btn--red-outline) {
  background-color: #ffffff;
  width: 100%;
  max-width: 496px;
  text-align: left;
  justify-content: flex-start;
  padding: 10px 30px 10px 10px;
  border-radius: 30px;
  font-size: 20px;
  line-height: 1;
}
.lesson-finder__buttons .btn:not(.btn--red-outline) .text-sm {
  display: block;
  color: #000;
  font-family: "Dunbar Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.lesson-finder__buttons .btn:not(.btn--red-outline):hover {
  background-color: #007ACC;
}
.lesson-finder__buttons .btn:not(.btn--red-outline):hover svg path {
  fill: #ffffff;
}
.lesson-finder__buttons .btn:not(.btn--red-outline):hover .text-sm {
  color: #ffffff;
}
.lesson-finder__buttons .btn.btn--red-outline {
  margin-top: 14px;
}
@media only screen and (min-width: 768px) {
  .lesson-finder__buttons .btn.btn--red-outline {
    margin-top: 30px;
  }
}

.lesson-finder__recommendation {
  text-align: center;
}
.lesson-finder__recommendation .lesson-finder__heading span {
  color: #AA273E;
}

.lesson-finder__image {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}
.lesson-finder__image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.lesson-finder__copy {
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}
@media (min-width: 768px) {
  .lesson-finder__copy {
    font-size: 1.125rem;
  }
}
.lesson-finder__copy p {
  margin-bottom: 1rem;
}
.lesson-finder__copy p:last-child {
  margin-bottom: 0;
}
.lesson-finder__copy h3,
.lesson-finder__copy h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.lesson-finder__copy ul,
.lesson-finder__copy ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.lesson-finder__copy ul li,
.lesson-finder__copy ol li {
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=lesson-finder.css.map */
