.component-when-to-signal {
  padding: max(2vw, 1vh);
  /* Checked state styles */
  /* Pseudo-element for custom tick mark */
}
.component-when-to-signal > p {
  color: var(--green);
  font-weight: 900;
  padding: 0 0 max(2vw, 1vh);
}
.component-when-to-signal ul {
  list-style: none;
}
.component-when-to-signal li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 1rem 0;
}
.component-when-to-signal li::before {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  border-radius: 50%;
  text-align: center;
  color: white;
  margin-right: 1rem;
}
.component-when-to-signal li:nth-of-type(1)::before {
  content: "1";
  background-color: var(--orange);
}
.component-when-to-signal li:nth-of-type(2)::before {
  content: "2";
  background-color: var(--bluegreen);
}
.component-when-to-signal li:nth-of-type(3)::before {
  content: "3";
  background-color: var(--pink);
}
.component-when-to-signal li:nth-of-type(4)::before {
  content: "4";
  background-color: var(--yellow);
}
.component-when-to-signal li {
  position: relative;
}
.component-when-to-signal input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) scale(2);
  height: 15px;
  width: 15px;
  border: 1px solid var(--green);
  border-radius: 3px;
  /* Optional: Rounded corners */
  appearance: none;
  /* Remove default styles */
  background-color: transparent;
  /* Transparent by default */
  accent-color: var(--green);
  /* For modern browsers with support */
  cursor: pointer;
  /* Change cursor to indicate interactivity */
  display: flex;
  align-items: center;
  justify-content: center;
}
.component-when-to-signal input:checked {
  background-color: var(--green);
  /* Green background when checked */
  color: var(--ocean-readable);
  /* Text color inside checkbox, if any */
  border: 2px solid var(--green);
  /* Maintain border color */
}
.component-when-to-signal input:checked::after {
  content: "✔";
  /* Tick symbol */
  color: black;
  /* Color of the tick */
}
.component-display-image {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40cqh;
  overflow: hidden;
}
.component-display-image picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.component-display-image picture img {
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
}
.component-host {
  container-name: component-host;
  container-type: inline-size;
  min-width: 300px;
  border-radius: 30px;
  padding: clamp(1rem, 2vw, 2vh);
  margin: 0 0 1rem 0;
}
.component-host img {
  float: left;
  width: clamp(100px, 20vw, 20vh);
  aspect-ratio: 1/1;
  margin: 0 0 1rem 0;
}
.component-host h3,
.component-host h4 {
  margin: 0  ;
  max-width: 80%;
  text-align: left;
  padding: 0 0 min(1vw, 2vh) 0;
}
.component-host p {
  margin: 0;
  max-width: 80%;
  text-align: left;
  padding: 0 0 min(1vw, 2vh) 0;
}
.component-host h4,
.component-host h3 {
  font-weight: 900;
}
.component-host h3 {
  text-align: left;
  color: var(--green);
}
.component-host blockquote {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  min-height: 10vw;
  align-items: center;
  justify-content: center;
}
.component-host .video-link {
  display: inline-block;
  background-image: url("/img/p/video-play-button.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  padding: 0 0 3rem 0;
  background-size: 10%;
}
.component-helmet-correct {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.component-helmet-correct .title {
  text-align: center;
  width: 100%;
}
.component-helmet-correct div {
  position: relative;
  min-height: 600px;
  height: 40vh;
  width: 100%;
}
.component-helmet-correct figure {
  position: absolute;
  height: calc(100% / 1.5);
  width: calc(100% / 3);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.component-helmet-correct figure figcaption {
  text-align: center;
  font-weight: 900;
  color: var(--cyan);
  padding: 1vw 1vw 0;
  line-height: 1.1;
  width: 100%;
}
.component-helmet-correct figure:nth-of-type(1) {
  left: 10px;
  top: 10px;
}
.component-helmet-correct figure:nth-of-type(2) {
  right: 10px;
  top: 10px;
}
.component-helmet-correct figure:nth-of-type(3) {
  top: 150px;
  left: 25%;
  right: 25%;
  margin-inline: auto;
}
.component-helmet-wrong {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 2vw;
  min-width: 350px;
}
.component-helmet-wrong .title {
  color: var(--white);
  flex: 1;
}
.component-helmet-wrong figure:nth-last-of-type(1) {
  margin-right: 10%;
}
.component-helmet-wrong img {
  width: 200px;
}
.component-helmet-wrong figcaption {
  display: none;
}
.component-sign-meaning {
  container-name: component-sign-meaning;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.component-sign-meaning .title {
  line-height: 1;
  width: clamp(160px, 100%, 1600px);
  text-indent: 1rem;
  margin: 0 0 0;
}
.component-sign-meaning figcaption {
  width: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.component-sign-meaning label {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1vw;
}
.component-sign-meaning img {
  width: 100%;
  cursor: pointer;
}
.component-sign-meaning input,
.component-sign-meaning figcaption {
  appearance: none;
  margin: 0;
  display: none;
}
.component-sign-meaning input:checked + label figcaption {
  display: flex;
}
.component-sign-meaning figure:first-child figcaption {
  left: 2vw;
  transform: translateX(0);
}
.component-sign-meaning figure:last-child figcaption {
  right: 2vw;
  transform: translateX(0);
}
.component-safety-messages {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 100%));
  grid-template-rows: repeat(2, minmax(200px, 100%));
  gap: 0;
  margin: 0  ;
  padding: 0;
  width: 100%;
}
.component-safety-messages li {
  position: relative;
  list-style: none;
  outline: 1px solid red;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  height: 100%;
  width: 100%;
}
.component-safety-messages li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background-size: 60%;
}
.component-safety-messages li:nth-child(1) {
  background-image: url("../img/char/bust/pene.svg"), url("../img/p/lesson-4/component-bubbles/responsive.svg");
  background-position: bottom left, 100% 20%;
  background-size: 45%, 60%;
}
.component-safety-messages li:nth-child(2) {
  background-image: url("../img/char/bust/jing.svg"), url("../img/p/lesson-4/component-bubbles/careful.svg");
  background-position: bottom right, 6% 20%;
  background-size: 45%, 60%;
}
.component-safety-messages li:nth-child(3) {
  background-image: url("../img/char/bust/holly.svg"), url("../img/p/lesson-4/component-bubbles/safe.svg");
  background-position: 0 50%, 100% 10%;
  background-size: 45%, 60%;
}
.component-safety-messages li:nth-child(4) {
  background-image: url("../img/char/bust/charlie.svg"), url("../img/p/lesson-4/component-bubbles/aware.svg");
  background-position: bottom right, 20% 60%;
}
.component-walt,
.walt-col {
  background-color: var(--walt-bg-color);
  border-radius: var(--s3);
  width: 30vw;
  min-width: 25ch;
  max-width: 35ch;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1ch 0;
  margin: min(2vw, 2vh) auto;
}
.component-walt h2,
.walt-col h2,
.component-walt h3,
.walt-col h3,
.component-walt h4,
.walt-col h4,
.component-walt li,
.walt-col li,
.component-walt p,
.walt-col p {
  text-shadow: none;
  font-size: 0.8em;
}
.component-walt h2,
.walt-col h2 {
  text-align: center;
  max-width: 40ch;
}
.component-walt h3,
.walt-col h3 {
  text-align: center;
  max-width: 40ch;
}
.component-walt h4,
.walt-col h4 {
  padding-block-end: 1rem;
  white-space: nowrap;
}
.component-walt .icon,
.walt-col .icon {
  width: 1.7em;
  height: 1.7em;
  transform: translate(0, 25%);
}
.component-walt h4:nth-of-type(3) .icon,
.walt-col h4:nth-of-type(3) .icon {
  width: 1.7em;
  height: 1.7em;
  transform: translate(0, 25%) rotate(45deg);
}
.component-walt hr,
.walt-col hr {
  border: none;
  border-top-width: 2px;
  border-top-style: solid;
  border-top: 2px solid var(--ocean);
  width: 50%;
  margin: min(1vw, 2vh) auto;
}
.component-walt p,
.walt-col p,
.component-walt li,
.walt-col li {
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}
.component-walt p,
.walt-col p {
  text-align: center;
  padding-block-start: 0;
  padding-block-end: 1rem;
}
.component-walt ul,
.walt-col ul {
  padding-block-end: 0;
  width: 90%;
  list-style-position: inside;
}
.component-hand-signals {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  container-name: hand-signals;
  container-type: inline-size;
  padding: max(2vw, 1vh);
}
.component-hand-signals p {
  padding: 2rem;
  text-align: center;
  text-wrap: pretty;
}
.component-hand-signals div {
  display: flex;
  flex-direction: row;
}
.component-hand-signals figure {
  margin: 0;
  padding: 0;
  width: 33.33cqw;
  height: 100%;
}
/* Images within Each Figure */
.component-hand-signals figure img {
  width: 300%;
  max-height: none;
  max-width: none;
  top: 50%;
  left: 0;
  object-fit: contain;
}
.component-hand-signals figure:nth-child(2) img {
  visibility: hidden;
}
.component-hand-signals figure:nth-child(3) img {
  visibility: hidden;
}
/* Captions for Each Figure */
.component-hand-signals figure figcaption {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  white-space: nowrap;
  height: 4cqh;
}
.component-stop-look-listen {
  padding-top: 5vw;
}
.component-stop-look-listen figure img {
  display: block;
  margin: 0 auto;
  height: 600px;
  width: 500px;
}
.component-quick-check {
  padding: max(2vw, 1vh);
}
.component-quick-check h3 {
  line-height: 2;
}
.component-quick-check div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.component-quick-check h4 {
  line-height: 1;
  padding-right: 2vw;
  white-space: nowrap;
  font-weight: 900;
  color: var(--red);
}
.component-quick-check div:nth-of-type(2) h4 {
  color: var(--green);
}
.component-quick-check div:nth-of-type(3) h4 {
  color: var(--dark-cyan);
}
.component-quick-check div:nth-of-type(4) h4 {
  color: var(--pink);
}
.component-quick-check div:nth-of-type(5) h4 {
  color: var(--orange);
}
.component-quick-check div:nth-of-type(6) h4 {
  color: var(--dark-yellow);
}
.component-quick-check div:nth-of-type(7) h4 {
  color: var(--bluegreen);
}
.component-notepad {
  --lined-height: clamp(var(--s1), 3vh, var(--s3));
  width: 90%;
  margin: 1rem auto;
  box-shadow: var(--shadow-3);
  position: relative;
  padding-inline: 4ch;
  padding-block-start: calc(var(--lined-height) * 0.2);
  background-color: #ffe;
  background-image: linear-gradient(#eee 0, #eee 1px, transparent 1px);
  background-size: 100% calc(var(--lined-height)*0.985);
}
.component-notepad p {
  margin: 0;
  padding: 0;
  padding-block-end: var(--lined-height);
  text-align: left;
  line-height: var(--lined-height);
  font-size: calc(var(--lined-height) * 0.7);
  font-family: var(--font-monospace-slab-serif);
}
.component-notepad::before,
.component-notepad::after {
  position: absolute;
  content: "";
  display: block;
  width: 89px;
  height: 31px;
  background-image: url("/img/p/lesson-4/piece-of-tape-yellow.svg");
}
.component-notepad::before {
  top: 0;
  right: 0;
  transform: translateX(30%) translateY(30%) rotate(45deg);
}
.component-notepad::after {
  bottom: 0;
  left: 0;
  transform: translateX(-30%) translateY(-30%) rotate(45deg);
}
.component-quiz {
  width: 100vw;
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.component-quiz .question-box {
  margin-bottom: 1.5rem;
}
.component-quiz img {
  max-width: 100%;
  max-height: 100%;
}
.component-quiz .answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.component-quiz .answer {
  padding: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #ffffff;
}
.component-quiz #answer1 {
  background-color: #ff6384;
}
.component-quiz #answer2 {
  background-color: #36a2eb;
}
.component-quiz #answer3 {
  background-color: #ffce56;
}
.component-quiz #answer4 {
  background-color: #4bc0c0;
}
.component-quiz .answer:hover {
  opacity: 0.8;
}
.component-quiz .answer:active {
  transform: scale(0.95);
}
.component-success-criteria {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.component-success-criteria .the-field-of-dreams {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 20vh;
  background: url("/img/bg/grass-meadow.png") center top / cover repeat-x;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: white;
}
.component-success-criteria h4 {
  margin-bottom: 30px;
}
.component-success-criteria p {
  margin: 0;
  line-height: 2;
}
.component-success-criteria ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}
.component-success-criteria li {
  margin: 0;
  padding: max(1vw, 1vh);
  text-align: left;
  display: flex;
  align-items: center;
}
.component-success-criteria li .component {
  display: flex;
  max-width: 150px;
  margin: 0 2vw 0 0;
}
.component-success-criteria li img {
  min-width: 75px;
  width: 75px;
  transition: background-color 0.3s ease;
}
.component-success-criteria li img:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}
.component-success-criteria .host-success {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 3;
}
.component-success-criteria .bust {
  width: 200px;
  margin: 0 2vw 1rem 0;
}
.component-success-criteria .full img {
  position: absolute;
  right: 5vw;
  bottom: 18vh;
  height: min(50vh, 50vw);
  z-index: 2;
}
.component-score {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  max-width: 80%;
  background-color: var(--yellow);
  margin: 0 auto;
}
.component-score p {
  min-width: auto;
  max-width: 100%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  word-break: break-word;
  /* Forces text to break within container */
  hyphens: auto;
  /* Adds hyphens for long words if needed */
}
.component-flex-strip {
  width: 100%;
  height: 100%;
  display: flex;
  container-type: inline-size;
  container-name: component-flex-strip;
}
.component-flex-strip > picture,
.component-flex-strip > figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 100px;
  min-width: 100px;
}
.component-flex-strip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.component-flex-strip > .text,
.component-flex-strip .quiz {
  flex: 2;
  height: 100%;
  font-size: clamp(1rem, 2vw, 2.5vh);
  padding: max(2vh, 2vw);
  text-align: left;
}
.component-pre-quiz {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.component-pre-quiz .top,
.component-pre-quiz .message2 {
  flex-direction: column;
}
.component-pre-quiz div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.component-pre-quiz div picture {
  width: 100%;
  height: 100%;
  max-width: 50%;
}
.component-pre-quiz div p,
.component-pre-quiz div h2,
.component-pre-quiz div h3,
.component-pre-quiz div h4 {
  width: 80%;
  padding: 0 0 1vh 0;
  margin: 0;
  text-align: center;
}
.component-pre-quiz div img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.component-pre-quiz .top {
  flex: 1;
  padding: max(2vw, 2vh);
}
.component-pre-quiz .middle img {
  position: relative;
  z-index: 3;
  margin-bottom: max(-2vw, -2vh);
}
.component-pre-quiz .bottom picture {
  max-width: none;
}
.component-pre-quiz .bottom picture img {
  object-fit: cover;
  width: 100%;
}
.component-weather-events .draggable-word {
  font-size: 0.8em;
}
table.component-weather-events-table {
  table-layout: fixed;
  width: 100%;
  margin: var(--s1);
  border-collapse: collapse;
  background-color: var(--faded-cyan);
}
table.component-weather-events-table thead tr {
  background-color: var(--cyan);
  color: var(--white);
}
table.component-weather-events-table tbody tr th {
  background-color: var(--yellow);
  color: var(--white);
  font-family: var(--title-font);
  font-weight: var(--font-weight-black);
}
table.component-weather-events-table tbody tr:first-of-type th {
  background-color: var(--red);
}
table.component-weather-events-table th,
table.component-weather-events-table td {
  text-align: center;
  padding: var(--s0);
  border: 2px solid var(--white);
}
table.component-weather-events-table td {
  vertical-align: top;
  font-size: 0.8em;
}
.component-human-chemical-makeup {
  width: 100%;
  height: 100%;
}
.component-human-chemical-makeup picture {
  overflow: hidden;
}
.component-human-chemical-makeup img {
  max-width: 100%;
  height: 1000px;
}
.component-navdown {
  position: relative;
}
.component-navdown ul {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  height: auto;
  z-index: 100;
  background-color: var(--ocean);
  padding: 0;
  padding-top: var(--s0);
}
.component-navdown ul a:not([href]) {
  text-decoration-line: line-through;
}
.component-navdown:hover ul,
.component-navdown:focus-within ul,
.component-navdown ul:hover,
.component-navdown ul:focus-within {
  display: block;
}
.component-navdown ul li {
  font-weight: 600;
  align-items: start;
  white-space: nowrap;
  margin-inline-start: -1ch;
  border-top-left-radius: var(--s-1);
  border-bottom-left-radius: var(--s-1);
  transition: background-color 0.2s, opacity 0.2s;
}
.component-navdown ul li:hover {
  color: var(--ocean);
  background-color: var(--fg-color);
  box-shadow: rgba(0, 0, 0, 0.5) -2px 0px 10px;
  cursor: pointer;
  transition: none;
}
.component-activity-1-1 {
  width: 100%;
  padding: var(--s2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.component-activity-1-1 figcaption {
  text-align: center;
  font-weight: 800;
  padding: 1ch;
  width: 13ch;
  line-height: clamp(0.5lh, 2vmin, 2lh);
  overflow-wrap: normal;
}
.component-activity-1-1 details summary::marker,
.component-activity-1-1 details summary::-webkit-details-marker {
  display: none;
}
.component-activity-1-1 summary {
  display: contents;
}
.component-activity-1-1 details {
  display: none;
}
.component-activity-1-1 details:first-of-type,
.component-activity-1-1 details[open] + details {
  display: contents;
}
.component-activity-1-1 li {
  list-style: none;
}
.component-activity-1-1 figure {
  padding: 0;
}
.component-activity-1-1 ul.grp {
  padding: var(--s0);
  border-radius: var(--s0);
  background-color: var(--gray-6);
}
.component-activity-1-1 ul,
.component-activity-1-1 figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.component-activity-1-1 ul.h {
  flex-direction: row;
  min-width: 70%;
}
.component-activity-1-1 ul.h > details > li {
  min-height: 40vh;
  padding-block-start: 10vh;
}
.component-activity-1-1 ul.ha > li:nth-child(odd) > figure {
  flex-direction: row;
}
.component-activity-1-1 ul.ha > li:nth-child(odd) > figure figcaption {
  text-align: left;
}
.component-activity-1-1 ul.ha > li:nth-child(even) > figure {
  flex-direction: row-reverse;
}
.component-activity-1-1 ul.ha > li:nth-child(even) > figure figcaption {
  text-align: right;
}
.component-activity-1-1 img {
  object-fit: contain;
  width: clamp(10px, 12vmin, 150px);
  height: clamp(10px, 12vmin, 150px);
}
.component-activity-1-1 img.arrow {
  width: 5vmin;
  height: 5vmin;
  margin-block: auto;
  padding-inline-end: 0.5ch;
}
.lesson_1 .slide_1 .wrapper {
  background-image: url(/img/p/lesson-1/house-in-storm-illustration.svg), url(/img/p/lesson-1/nuclear-chimney.svg), url(/img/p/lesson-1/nuclear-chimney.svg), url(/img/p/lesson-1/sun-only-illustration.svg);
  background-repeat: no-repeat, no-repeat;
  background-position-x: 0%, 65%, 100%, 30%;
  /* Left for the first image, right for the second */
  background-position-y: 100%, 100%, 100%, 50%;
  /* Bottom alignment for both */
  background-size: 50%, 35%, 33%, 15%;
}
.composite-L4S12-holly-charlie {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(2vw, 2vh);
  width: 50%;
}
.composite-L4S12-holly-charlie img {
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
  width: 60%;
  margin: 0 -2vw;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px black;
  border-radius: 50%;
}
.composite-L4S12-holly-charlie img:first-child,
.composite-L4S12-holly-charlie img:last-child {
  max-height: 260px;
  width: 20%;
  z-index: 2;
  box-shadow: none;
  border-radius: 0;
}
.composite-image-jing-dev-bike {
  height: 100%;
  position: relative;
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
  background-image: url("/img/char/full/jing.svg"), /* Character 1 */ url("/img/char/full/dev.svg"), /* Character 2 */ url("/img/p/background-options/houses+trees.svg"), /* Houses and trees */ url("/img/p/lesson-4/road-with-pedestrian-crossing.svg"), /* Main background */ url("/img/p/background-options/sun.svg");
  /* Sun */
  background-position: center bottom 167px, /* Character 1 position */ left 80px bottom 169px, /* Character 2 position (adjusted for horizontal placement) */ center bottom 171px, /* Houses and trees position */ center bottom, /* Main background */ right 100px top 50px;
  /* Sun position */
  background-size: 30px, /* Character 1 size */ 100px, /* Character 2 size */ contain, /* Houses and trees */ 600px, /* Main background */ 100px;
  /* Sun size */
  background-repeat: no-repeat;
}
.interactive-stop-look-listen {
  padding: 1rem;
}
.interactive-stop-look-listen ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  /* Checked state styles */
  /* Pseudo-element for custom tick mark */
}
.interactive-stop-look-listen ul li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-right: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.interactive-stop-look-listen ul li:nth-child(even) {
  color: var(--green);
}
.interactive-stop-look-listen ul span {
  visibility: hidden;
  opacity: 0;
  display: block;
}
.interactive-stop-look-listen ul input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) scale(2);
  height: 15px;
  width: 15px;
  border: 1px solid var(--green);
  border-radius: 3px;
  /* Optional: Rounded corners */
  appearance: none;
  /* Remove default styles */
  background-color: transparent;
  /* Transparent by default */
  accent-color: var(--green);
  /* For modern browsers with support */
  cursor: pointer;
  /* Change cursor to indicate interactivity */
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-stop-look-listen ul input:checked {
  background-color: var(--green);
  /* Green background when checked */
  color: var(--ocean-readable);
  /* Text color inside checkbox, if any */
  border: 2px solid var(--green);
  /* Maintain border color */
}
.interactive-stop-look-listen ul input:checked::after {
  content: "✔";
  /* Tick symbol */
  color: var(--ocean-readable);
  /* Color of the tick */
}
.interactive-stop-look-listen ul > li.visible span {
  visibility: visible;
  opacity: 1;
}
.interactive-stop-look-listen ul > li.visible:nth-child(odd) span {
  animation: var(--animation-shake-y), var(--animation-fade-in), var(--animation-slide-in-left);
}
.interactive-stop-look-listen ul > li.visible:nth-child(even) span {
  animation: var(--animation-shake-y), var(--animation-fade-in), var(--animation-slide-in-right);
}
.interactive-draggable-safe-words {
  height: 100%;
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 by 3 grid layout */
  gap: 1vw;
  place-items: center;
}
.interactive-draggable-safe-words li {
  color: white;
  border-radius: 10px;
  text-align: center;
  padding: 1vw;
  line-height: 1.5;
  width: 100%;
  cursor: pointer;
}
.interactive-draggable-safe-words #item1 {
  background-color: var(--bluegreen);
}
.interactive-draggable-safe-words #item2 {
  background-color: var(--orange);
}
.interactive-draggable-safe-words #item3 {
  background-color: var(--pink);
}
.interactive-draggable-safe-words #item4 {
  background-color: var(--cyan);
}
.interactive-draggable-safe-words #item5 {
  background-color: var(--green);
}
.interactive-draggable-safe-words #item6 {
  background-color: var(--purple);
}
.interactive-droppable-safe-words li {
  list-style-type: none;
  line-height: 1.2;
  padding: 1vw;
}
.interactive-droppable-safe-words .item1 {
  color: var(--bluegreen);
}
.interactive-droppable-safe-words .item2 {
  color: var(--orange);
}
.interactive-droppable-safe-words .item3 {
  color: var(--pink);
}
.interactive-droppable-safe-words .item4 {
  color: var(--cyan);
}
.interactive-droppable-safe-words .item5 {
  color: var(--green);
}
.interactive-droppable-safe-words .item6 {
  color: var(--purple);
}
.interactive-draggable-disasters {
  width: 100%;
  height: 100%;
  padding: 1vw 2vw;
}
.interactive-draggable-disasters ul,
.interactive-draggable-disasters li {
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-draggable-disasters li {
  width: calc(100% / 6);
  padding: 1vw;
}
.interactive-draggable-disasters picture {
  cursor: move;
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  background-color: white;
  box-shadow: 0 0 0 0 #444;
}
.interactive-draggable-disasters picture:hover {
  animation: boxShadowIn 1s forwards;
  /* Animation to add shadow */
}
.interactive-draggable-disasters picture img {
  max-width: 100%;
  max-height: 100%;
}
/* Keyframes for box shadow animation */
@keyframes boxShadowIn {
  from {
    box-shadow: 0 0 0 0 #444;
    /* No shadow initially */
  }
  to {
    box-shadow: 0 0 1vw 0.1vw #444;
    /* Full shadow at end */
  }
}
.clickable-reveal {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.clickable-reveal label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-indent: -10000px;
}
.clickable-reveal input {
  display: none;
}
.clickable-reveal h3 {
  text-align: center;
  height: 30%;
}
.clickable-reveal label:hover + .picture {
  animation: boxShadowIn 1s forwards;
}
.clickable-reveal .picture picture:nth-child(1) img {
  display: inline-block;
}
.clickable-reveal .picture picture:nth-child(2) img {
  display: none;
}
.clickable-reveal :checked ~ .picture picture:nth-child(1) img {
  display: none;
}
.clickable-reveal :checked ~ .picture picture:nth-child(2) img {
  display: inline-block;
}
.clickable-reveal .picture {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: contain;
  background-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.clickable-reveal :checked ~ picture {
  background-size: 100%;
}
.clickable-reveal img {
  aspect-ratio: 1/1;
}
.clickable-reveal figcaption {
  display: none;
}
.interactive-missing-words .missing {
  color: transparent;
  border: 2px dashed #666;
  border-radius: 10px;
  padding-inline: 5px;
  transition: all 0.3s;
}
.interactive-missing-words .missing.active {
  background-color: var(--faded-ocean);
  border-style: solid;
}
.interactive-missing-words .missing.filled {
  border-color: transparent;
  color: inherit;
  animation: correctAnswer 0.5s ease-out;
}
.interactive-missing-words .missing.filled[data-index="0"] {
  color: var(--orange);
  background-color: var(--faded-orange);
}
.interactive-missing-words .missing.filled[data-index="1"] {
  color: var(--cyan);
  background-color: var(--faded-cyan);
}
.interactive-missing-words .missing.filled[data-index="2"] {
  color: var(--pink);
  background-color: var(--faded-pink);
}
.interactive-missing-words .missing.filled[data-index="3"] {
  color: var(--green);
  background-color: var(--faded-green);
}
.interactive-missing-words .missing.filled[data-index="4"] {
  color: var(--purple);
  background-color: var(--faded-purple);
}
.interactive-missing-words .missing.filled[data-index="5"] {
  color: var(--bluegreen);
  background-color: var(--faded-bluegreen);
}
@keyframes correctAnswer {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.interactive-missing-words-container .word-bank {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
}
.interactive-missing-words-container .draggable-word {
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: move;
  user-select: none;
  transition: all 0.2s;
}
.interactive-missing-words-container .draggable-word[data-index="0"] {
  background-color: var(--orange);
}
.interactive-missing-words-container .draggable-word[data-index="1"] {
  background-color: var(--cyan);
}
.interactive-missing-words-container .draggable-word[data-index="2"] {
  background-color: var(--pink);
}
.interactive-missing-words-container .draggable-word[data-index="3"] {
  background-color: var(--green);
}
.interactive-missing-words-container .draggable-word[data-index="4"] {
  background-color: var(--purple);
}
.interactive-missing-words-container .draggable-word[data-index="5"] {
  background-color: var(--bluegreen);
}
.interactive-missing-words-container .draggable-word:hover {
  transform: scale(1.1);
  animation: var(--animation-shake-z);
}
.interactive-missing-words-container .draggable-word.dragging {
  opacity: 0.5;
}
.interactive-missing-words-container .success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--faded-cyan);
  border-radius: 8px;
  color: var(--ocean);
  animation: successPulse 2s infinite;
}
.interactive-greenhouse-gasses {
  position: relative;
  width: 100vw;
  height: calc(100vh - var(--header-height) - var(--footer-height));
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-greenhouse-gasses h2 {
  font-weight: 700;
  text-align: center;
}
.interactive-greenhouse-gasses svg {
  width: 100%;
  height: 100%;
}
.interactive-greenhouse-gasses .toggle {
  position: absolute;
  width: clamp(30px, 32vw, 400px);
  aspect-ratio: 5/3;
  opacity: 0.8;
  z-index: 1;
  cursor: pointer;
}
.interactive-greenhouse-gasses .toggle:hover {
  z-index: 11 !important;
  opacity: 1;
}
.interactive-greenhouse-gasses .toggle .initial {
  opacity: 0.7;
}
.interactive-greenhouse-gasses .toggle .reveal {
  display: none;
}
.interactive-greenhouse-gasses .toggle input {
  display: none;
}
.interactive-greenhouse-gasses .toggle input:checked ~ .initial {
  display: none;
}
.interactive-greenhouse-gasses .toggle input:checked ~ .reveal {
  display: block;
  animation: var(--animation-shake-z);
}
.interactive-greenhouse-gasses .toggle:has(input:checked) {
  animation: scale-up-down 2s forwards;
  z-index: 10;
  opacity: 1;
}
@keyframes scale-up-down {
  0%,
  75% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
/*# sourceMappingURL=components.css.map */