/* ============================================================================
   STUDENT DEVELOPER GUIDE — 5041 TRAINING HUB CSS

   This file controls visual styling. HTML supplies the content; CSS decides how
   that content looks and is arranged.

   IMPORTANT IDEAS FOR STUDENTS
   - A selector such as .dt-card styles every element with class="dt-card".
   - A selector such as #quizResult targets one unique id="quizResult" element.
   - More specific selectors can override less specific selectors.
   - Rules later in a stylesheet can override earlier rules when specificity is
     equal. This is called the CSS cascade.
   - CSS variables such as var(--red) come from a shared :root rule. Reuse them
     instead of hard-coding colors when possible.
   - !important forces a declaration to win many cascade conflicts. Use it only
     when necessary; too many !important rules make future editing difficult.
   - display:grid is used heavily for card layouts. grid-template-columns controls
     the number and size of columns; gap controls spacing between items.
   - max-width and margin: 0 auto are commonly used to keep content readable and
     horizontally centered.
   - Media queries near the bottom of many files adjust layouts for smaller screens.

   WHEN ADDING NEW STYLES
   1. Reuse an existing class if it already creates the appearance you need.
   2. If the style is module-specific, use the module prefix already in this file
      (for example dt-, judge-, media-, safety-) to avoid accidental conflicts.
   3. Put related rules together and add a short section comment.
   4. Test the slide at both large and small browser sizes.
   5. Avoid changing a shared selector unless you intend to change every page that
      uses it.
============================================================================ */
/* 5041 Training Hub stylesheet: FTC-training/modules/inclusion-additions.css
   Organized during cleanup; selectors preserved to maintain module appearance. */

/* 5041 Inclusive and Safe Team Culture module additions */
/* STUDENT NOTE: Typography/spacing rule for `.inclusion-hero h1, .inclusion-hero .cytitle`. These values affect readability and vertical space on slides. */
.inclusion-hero h1,
.inclusion-hero .cytitle {
  max-width: 1080px;
  margin: 0 auto;
}

/* STUDENT NOTE: Styles elements matched by `.hero-subtitle`. Search the HTML for these class/id names before changing a shared rule. */
.hero-subtitle {
  max-width: 850px;
  margin: 0.6rem auto 0;
  font-family: "Droid Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.68em;
  color: var(--gray);
}

/* STUDENT NOTE: Typography/spacing rule for `.inclusion-slide h2, .inclusion-vertical h2, .inclusion-quiz h2`. These values affect readability and vertical space on slides. */
.inclusion-slide h2,
.inclusion-vertical h2,
.inclusion-quiz h2 {
  font-size: 1.45em;
  margin-bottom: 0.45rem;
}

/* STUDENT NOTE: Layout rule for `.inclusion-grid-2, .inclusion-grid-3, .inclusion-grid-4, .quote-image-grid, .inclusion-split, .inclusion-review-grid`. Grid properties here control columns, gaps, and alignment. */
.inclusion-grid-2,
.inclusion-grid-3,
.inclusion-grid-4,
.quote-image-grid,
.inclusion-split,
.inclusion-review-grid {
  display: grid;
  gap: 0.8rem;
  max-width: var(--shared-slide-width, 1120px);
  margin: 0 auto;
}

/* STUDENT NOTE: Layout rule for `.inclusion-grid-2`. Grid properties here control columns, gaps, and alignment. */
.inclusion-grid-2 {
  grid-template-columns: 1fr 1fr;
}

/* STUDENT NOTE: Layout rule for `.inclusion-grid-3`. Grid properties here control columns, gaps, and alignment. */
.inclusion-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* STUDENT NOTE: Layout rule for `.inclusion-grid-4`. Grid properties here control columns, gaps, and alignment. */
.inclusion-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* STUDENT NOTE: Layout rule for `.quote-image-grid`. Grid properties here control columns, gaps, and alignment. */
.quote-image-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-split`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-split {
  grid-template-columns: 1fr 1fr;
}

/* STUDENT NOTE: Image styling for `.inclusion-card, .inclusion-source-card, .quote-image-card, .scenario-card`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.inclusion-card,
.inclusion-source-card,
.quote-image-card,
.scenario-card {
  background: var(--light);
  border-left: 10px solid var(--red);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  text-align: left;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-card.dark, .motto-panel`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-card.dark,
.motto-panel {
  background: var(--black);
  color: var(--white);
}

/* STUDENT NOTE: Typography/spacing rule for `.inclusion-card.dark h3, .inclusion-card.dark p, .inclusion-card.dark li, .motto-panel h3, .motto-panel p`. These values affect readability and vertical space on slides. */
.inclusion-card.dark h3,
.inclusion-card.dark p,
.inclusion-card.dark li,
.motto-panel h3,
.motto-panel p {
  color: var(--white);
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-card.good`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-card.good {
  border-left-color: #2e7d32;
  background: #e6f4ea;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-card.risk`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-card.risk {
  border-left-color: #b00020;
  background: #fdecea;
}

/* STUDENT NOTE: Image styling for `.inclusion-card h3, .inclusion-source-card h3, .quote-image-card h3, .scenario-card h3`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.inclusion-card h3,
.inclusion-source-card h3,
.quote-image-card h3,
.scenario-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.72em;
}

/* STUDENT NOTE: Typography/spacing rule for `.inclusion-card p, .inclusion-source-card p, .scenario-card p`. These values affect readability and vertical space on slides. */
.inclusion-card p,
.inclusion-source-card p,
.scenario-card p {
  margin: 0;
  font-size: 0.45em;
  line-height: 1.25;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-card li, .inclusion-source-card li`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-card li,
.inclusion-source-card li {
  font-size: 0.5em;
  line-height: 1.22;
  margin-bottom: 0.16rem;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-card ul`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-card ul {
  margin: 0.2rem 0 0;
  padding-left: 0.85em;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-callout`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-callout {
  max-width: 950px;
  margin: 0.8rem auto 0;
  padding: 0.6rem 0.8rem;
  background: var(--white);
  border-left: 10px solid var(--red);
  border-radius: 8px;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-callout.gray`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-callout.gray {
  border-left-color: var(--gray);
}

/* STUDENT NOTE: Typography/spacing rule for `.inclusion-callout p`. These values affect readability and vertical space on slides. */
.inclusion-callout p {
  margin: 0;
  font-size: 0.56em;
  line-height: 1.25;
}

/* STUDENT NOTE: Styles elements matched by `.motto-panel`. Search the HTML for these class/id names before changing a shared rule. */
.motto-panel {
  max-width: 950px;
  margin: 0 auto 0.8rem;
  padding: 0.85rem 1rem;
  border-left: 16px solid var(--red);
  border-radius: 8px;
  text-align: center;
}

/* STUDENT NOTE: Typography/spacing rule for `.motto-panel h3`. These values affect readability and vertical space on slides. */
.motto-panel h3 {
  margin: 0 0 0.35rem;
  font-family: "Audiowide", "Droid Sans", Arial, sans-serif;
  font-size: 1.05em;
}

/* STUDENT NOTE: Typography/spacing rule for `.motto-panel p`. These values affect readability and vertical space on slides. */
.motto-panel p {
  margin: 0;
  font-size: 0.55em;
  line-height: 1.25;
}

/* STUDENT NOTE: Styles elements matched by `.compact-cards .inclusion-card`. Search the HTML for these class/id names before changing a shared rule. */
.compact-cards .inclusion-card {
  min-height: 130px;
}

/* STUDENT NOTE: Image styling for `.source-img`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.source-img {
  width: 100%;
  height: 285px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  display: block;
  margin-bottom: 0.35rem;
}

/* STUDENT NOTE: Image styling for `.quote-image-card`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.quote-image-card {
  margin: 0;
  background: var(--white);
  padding: 0.35rem;
}

/* STUDENT NOTE: Image styling for `.quote-image-card img`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.quote-image-card img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  display: block;
  background: var(--white);
  border-radius: 6px;
}

/* STUDENT NOTE: Image styling for `.quote-image-card figcaption`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
.quote-image-card figcaption {
  margin: 0.35rem 0 0;
  font-size: 0.38em;
  text-align: center;
  font-weight: 700;
  font-family: "Droid Sans", Arial, sans-serif;
  color: var(--black);
}

/* STUDENT NOTE: Styles elements matched by `.culture-list-large li`. Search the HTML for these class/id names before changing a shared rule. */
.culture-list-large li {
  font-size: 0.55em;
  line-height: 1.25;
  margin-bottom: 0.22rem;
}

/* Sort activity styling follows existing shared class names */
/* STUDENT NOTE: Styles elements matched by `.inclusion-sort-slide .sort-bank, .inclusion-sort-slide .sort-targets`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-sort-slide .sort-bank,
.inclusion-sort-slide .sort-targets {
  max-width: var(--shared-slide-width, 1120px);
  margin-left: auto;
  margin-right: auto;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-sort-slide .sort-bank`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-sort-slide .sort-bank {
  max-height: 150px;
  overflow-y: auto;
}

/* STUDENT NOTE: Styles elements matched by `.inclusion-sort-slide .sort-zone`. Search the HTML for these class/id names before changing a shared rule. */
.inclusion-sort-slide .sort-zone {
  min-height: 225px;
}

/* Scenario interaction */
/* STUDENT NOTE: Styles elements matched by `.scenario-card`. Search the HTML for these class/id names before changing a shared rule. */
.scenario-card {
  max-width: 1000px;
  margin: 0 auto;
}

/* STUDENT NOTE: Typography/spacing rule for `.scenario-card p`. These values affect readability and vertical space on slides. */
.scenario-card p {
  font-size: 0.52em;
  margin-bottom: 0.5rem;
}

/* STUDENT NOTE: Styles elements matched by `.scenario-options`. Search the HTML for these class/id names before changing a shared rule. */
.scenario-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

/* STUDENT NOTE: Button styling for `.scenario-options button`. Keep hover/selected/correct states visually consistent with the base button. */
.scenario-options button {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  color: var(--black);
  font-size: 0.42em;
  font-family: "Droid Sans", Arial, sans-serif;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

/* STUDENT NOTE: Button styling for `.scenario-options button:hover, .scenario-options button:focus`. Keep hover/selected/correct states visually consistent with the base button. */
.scenario-options button:hover,
.scenario-options button:focus {
  background: var(--red);
  color: var(--white);
}

/* STUDENT NOTE: Button styling for `.scenario-options button.correct`. Keep hover/selected/correct states visually consistent with the base button. */
.scenario-options button.correct {
  border-color: #2e7d32;
  background: #e6f4ea;
  color: var(--black);
}

/* STUDENT NOTE: Button styling for `.scenario-options button.incorrect`. Keep hover/selected/correct states visually consistent with the base button. */
.scenario-options button.incorrect {
  border-color: #b00020;
  background: #fdecea;
  color: var(--black);
}

/* STUDENT NOTE: Styles elements matched by `.scenario-feedback`. Search the HTML for these class/id names before changing a shared rule. */
.scenario-feedback {
  margin-top: 0.45rem !important;
  font-weight: 700;
}

/* Review checklist */
/* STUDENT NOTE: Layout rule for `.inclusion-review-grid`. Grid properties here control columns, gaps, and alignment. */
.inclusion-review-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
}

/* STUDENT NOTE: Styles elements matched by `.review-item`. Search the HTML for these class/id names before changing a shared rule. */
.review-item {
  background: var(--white);
  border: 2px solid #cccccc;
  border-left: 8px solid var(--gray);
  border-radius: 8px;
  padding: 0.5rem;
  font-size: 0.42em;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

/* STUDENT NOTE: Styles elements matched by `.review-item.reviewed`. Search the HTML for these class/id names before changing a shared rule. */
.review-item.reviewed {
  border-left-color: #2e7d32;
  background: #e6f4ea;
}

/* STUDENT NOTE: Styles elements matched by `.review-feedback`. Search the HTML for these class/id names before changing a shared rule. */
.review-feedback {
  margin: 0.45rem auto 0;
  font-size: 0.42em;
  font-weight: 700;
  text-align: center;
}

/* Certificate button fixes */
/* STUDENT NOTE: Styles elements matched by `.reveal .slides section#quiz-results .quiz-actions`. Search the HTML for these class/id names before changing a shared rule. */
.reveal .slides section#quiz-results .quiz-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 720px;
  margin: 0.8rem auto;
}

/* STUDENT NOTE: Button styling for `.reveal .slides section#quiz-results .quiz-actions .quiz-button`. Keep hover/selected/correct states visually consistent with the base button. */
.reveal .slides section#quiz-results .quiz-actions .quiz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
}

/* STUDENT NOTE: Responsive breakpoint. Rules inside this block apply only when the screen matches this condition. */
@media (max-width: 900px) {
  /* STUDENT NOTE: Layout rule for `.inclusion-grid-3, .inclusion-grid-4, .quote-image-grid, .inclusion-review-grid`. Grid properties here control columns, gaps, and alignment. */
  .inclusion-grid-3,
  .inclusion-grid-4,
  .quote-image-grid,
  .inclusion-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* STUDENT NOTE: Image styling for `.source-img, .quote-image-card img`. max-width/max-height/object-fit are commonly used to keep images inside the slide. */
  .source-img,
  .quote-image-card img {
    height: 270px;
  }
/* STUDENT NOTE: Styles elements matched by `} .reveal .inclusion-sort-slide`. Search the HTML for these class/id names before changing a shared rule. */
}

/* Compact layout for inclusion sort slide */
.reveal .inclusion-sort-slide {
  /* STUDENT NOTE: Typography/spacing rule for `height: 100%; } .reveal .inclusion-sort-slide h2`. These values affect readability and vertical space on slides. */
  height: 100%;
}

.reveal .inclusion-sort-slide h2 {
  /* STUDENT NOTE: Styles elements matched by `margin-bottom: 0.3rem; } .reveal .inclusion-sort-slide .sort-bank`. Search the HTML for these class/id names before changing a shared rule. */
  margin-bottom: 0.3rem;
}

/* Top draggable bank */
.reveal .inclusion-sort-slide .sort-bank {
  /* STUDENT NOTE: Typography/spacing rule for `display: flex; flex-wrap: wrap; gap: 0.28rem; max-width: var(--shared-slide-width, 1120px); max-height: 135px; min-height: 80px; overflow-y: auto; margin: 0 auto 0.45rem; padding: 0.35rem; background: var(--light); border: 3px dashed var(--gray); border-radius: 8px; } .reveal .inclusion-sort-slide .sort-chip`. These values affect readability and vertical space on slides. */
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  max-width: var(--shared-slide-width, 1120px);
  max-height: 135px;
  min-height: 80px;
  overflow-y: auto;
  margin: 0 auto 0.45rem;
  padding: 0.35rem;
  background: var(--light);
  border: 3px dashed var(--gray);
  border-radius: 8px;
}

/* Smaller chips so 12 items fit */
.reveal .inclusion-sort-slide .sort-chip {
  /* STUDENT NOTE: Typography/spacing rule for `font-size: 0.34em; line-height: 1.08; padding: 0.22rem 0.38rem; background: var(--white); border: 2px solid var(--red); border-radius: 7px; font-weight: 700; cursor: grab; } .reveal .inclusion-sort-slide .sort-targets`. These values affect readability and vertical space on slides. */
  font-size: 0.34em;
  line-height: 1.08;
  padding: 0.22rem 0.38rem;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 7px;
  font-weight: 700;
  cursor: grab;
}

/* Two target columns */
.reveal .inclusion-sort-slide .sort-targets {
  /* STUDENT NOTE: Layout rule for `display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; max-width: var(--shared-slide-width, 1120px); margin: 0 auto; } .reveal .inclusion-sort-slide .sort-zone`. Grid properties here control columns, gaps, and alignment. */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: var(--shared-slide-width, 1120px);
  margin: 0 auto;
}

.reveal .inclusion-sort-slide .sort-zone {
  /* STUDENT NOTE: Typography/spacing rule for `min-height: 235px; max-height: 255px; overflow-y: auto; background: var(--light); border-left: 10px solid var(--red); border-radius: 8px; padding: 0.45rem; } .reveal .inclusion-sort-slide .sort-zone h3`. These values affect readability and vertical space on slides. */
  min-height: 235px;
  max-height: 255px;
  overflow-y: auto;
  background: var(--light);
  border-left: 10px solid var(--red);
  border-radius: 8px;
  padding: 0.45rem;
}

.reveal .inclusion-sort-slide .sort-zone h3 {
  /* STUDENT NOTE: Styles elements matched by `font-size: 0.58em; text-align: center; margin: 0 0 0.25rem; } .reveal .inclusion-sort-slide .sort-list`. Search the HTML for these class/id names before changing a shared rule. */
  font-size: 0.58em;
  text-align: center;
  margin: 0 0 0.25rem;
}

.reveal .inclusion-sort-slide .sort-list {
  /* STUDENT NOTE: Styles elements matched by `display: flex; flex-direction: column; gap: 0.2rem; min-height: 155px; } .reveal .inclusion-sort-slide .activity-controls`. Search the HTML for these class/id names before changing a shared rule. */
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 155px;
}

/* Bottom buttons */
.reveal .inclusion-sort-slide .activity-controls {
  /* STUDENT NOTE: Styles elements matched by `display: flex; justify-content: center; align-items: center; gap: 0.6rem; max-width: var(--shared-slide-width, 1120px); margin: 0.45rem auto 0; } .reveal .inclusion-sort-slide .activity-feedback`. Search the HTML for these class/id names before changing a shared rule. */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  max-width: var(--shared-slide-width, 1120px);
  margin: 0.45rem auto 0;
}

.reveal .inclusion-sort-slide .activity-feedback {
  /* STUDENT NOTE: Styles elements matched by `min-width: 240px; margin: 0; font-size: 0.38em; font-weight: 700; } .reveal .gp-slide .inclusion-intro`. Search the HTML for these class/id names before changing a shared rule. */
  min-width: 240px;
  margin: 0;
  font-size: 0.38em;
  font-weight: 700;
}

/* Gracious Professionalism slides */
.reveal .gp-slide .inclusion-intro {
  /* STUDENT NOTE: Layout rule for `max-width: var(--shared-slide-width, 1120px); margin: 0 auto 0.8rem; font-size: 0.62em; line-height: 1.25; } .reveal .gp-scenario-grid`. Grid properties here control columns, gaps, and alignment. */
  max-width: var(--shared-slide-width, 1120px);
  margin: 0 auto 0.8rem;
  font-size: 0.62em;
  line-height: 1.25;
}

.reveal .gp-scenario-grid {
  /* STUDENT NOTE: Layout rule for `display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; max-width: var(--shared-slide-width, 1120px); margin: 0 auto; } .reveal .gp-scenario-card, .reveal .gp-check-card`. Grid properties here control columns, gaps, and alignment. */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: var(--shared-slide-width, 1120px);
  margin: 0 auto;
}

.reveal .gp-scenario-card,
.reveal .gp-check-card {
  /* STUDENT NOTE: Typography/spacing rule for `background: var(--light); border-left: 10px solid var(--red); border-radius: 8px; padding: 0.75rem 0.85rem; text-align: left; } .reveal .gp-scenario-card h3`. These values affect readability and vertical space on slides. */
  background: var(--light);
  border-left: 10px solid var(--red);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  text-align: left;
}

.reveal .gp-scenario-card h3 {
  /* STUDENT NOTE: Typography/spacing rule for `margin: 0 0 0.35rem; font-size: 0.68em; } .reveal .gp-scenario-card p, .reveal .gp-check-card p`. These values affect readability and vertical space on slides. */
  margin: 0 0 0.35rem;
  font-size: 0.68em;
}

.reveal .gp-scenario-card p,
.reveal .gp-check-card p {
  /* STUDENT NOTE: Styles elements matched by `margin: 0 0 0.45rem; font-size: 0.45em; line-height: 1.25; } .reveal .bad-response`. Search the HTML for these class/id names before changing a shared rule. */
  margin: 0 0 0.45rem;
  font-size: 0.45em;
  line-height: 1.25;
}

.reveal .bad-response {
  /* STUDENT NOTE: Typography/spacing rule for `border-left: 6px solid #b00020; padding-left: 0.45rem; } .reveal .good-response`. These values affect readability and vertical space on slides. */
  border-left: 6px solid #b00020;
  padding-left: 0.45rem;
}

.reveal .good-response {
  /* STUDENT NOTE: Typography/spacing rule for `border-left: 6px solid #2e7d32; padding-left: 0.45rem; } .reveal .gp-check-card`. These values affect readability and vertical space on slides. */
  border-left: 6px solid #2e7d32;
  padding-left: 0.45rem;
}

.reveal .gp-check-card {
  /* STUDENT NOTE: Styles elements matched by `max-width: 950px; margin: 0 auto; } .reveal .gp-check-options`. Search the HTML for these class/id names before changing a shared rule. */
  max-width: 950px;
  margin: 0 auto;
}

.reveal .gp-check-options {
  /* STUDENT NOTE: Layout rule for `display: grid; gap: 0.45rem; margin-top: 0.6rem; } .reveal .gp-check-option`. Grid properties here control columns, gaps, and alignment. */
  display: grid;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.reveal .gp-check-option {
  /* STUDENT NOTE: Typography/spacing rule for `background: var(--white); border: 2px solid var(--red); border-left: 10px solid var(--red); border-radius: 8px; padding: 0.45rem 0.6rem; color: var(--black); font-family: "", Arial, sans-serif; font-size: 0.42em; font-weight: 700; text-align: left; cursor: pointer; } .reveal .gp-check-option:hover, .reveal .gp-check-option:focus`. These values affect readability and vertical space on slides. */
  background: var(--white);
  border: 2px solid var(--red);
  border-left: 10px solid var(--red);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  color: var(--black);
  font-family: "Droid Sans", Arial, sans-serif;
  font-size: 0.42em;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.reveal .gp-check-option:hover,
.reveal .gp-check-option:focus {
  /* STUDENT NOTE: Interaction state for `outline: 4px solid var(--red); outline-offset: 2px; } .reveal .gp-check-option.correct`. JavaScript may add/remove this class to provide visual feedback or control access. */
  outline: 4px solid var(--red);
  outline-offset: 2px;
}

.reveal .gp-check-option.correct {
  /* STUDENT NOTE: Interaction state for `border-color: #2e7d32; border-left-color: #2e7d32; background: #e6f4ea; } .reveal .gp-check-option.incorrect`. JavaScript may add/remove this class to provide visual feedback or control access. */
  border-color: #2e7d32;
  border-left-color: #2e7d32;
  background: #e6f4ea;
}

.reveal .gp-check-option.incorrect {
  /* STUDENT NOTE: Styles elements matched by `border-color: #b00020; border-left-color: #b00020; background: #fdecea; } .reveal .gp-check-feedback`. Search the HTML for these class/id names before changing a shared rule. */
  border-color: #b00020;
  border-left-color: #b00020;
  background: #fdecea;
}

.reveal .gp-check-feedback {
  /* STUDENT NOTE: Styles elements matched by `margin-top: 0.55rem !important; font-weight: 700; text-align: center; } @media (max-width: 900px)`. Search the HTML for these class/id names before changing a shared rule. */
  margin-top: 0.55rem !important;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  /* STUDENT NOTE: Layout rule for `.reveal .gp-scenario-grid`. Grid properties here control columns, gaps, and alignment. */
  .reveal .gp-scenario-grid {
    grid-template-columns: 1fr;
  }
/* STUDENT NOTE: Styles elements matched by `} .text-red`. Search the HTML for these class/id names before changing a shared rule. */
}

.text-red {
  color: var(--red);
}