/* CSS Custom Properties */
:root {
  --color-base: #212529;
  --color-primary: #3399ff;
  --color-primary-dark: #1e88e5;
  --color-secondary: #ca6510;
  --color-tertiary: #7a7c7f;
  --color-white: #fff;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #666;
  --color-gray-dark: #444;
  --color-error: #dc3545;
  --border-radius: 4px;
  --border-radius-lg: 12px;
  --transition: 0.2s ease-in-out;
  --transition-long: 0.3s ease-in-out;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}

/* Fade in from left */
.scroll-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.scroll-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* CSS Reset */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-weight: 400;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-base);
  font-weight: normal;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  outline: none;
  border: none;
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.color-white {
  color: var(--color-white);
}
.color-base {
  color: var(--color-base);
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}

/* Main Layout */
.gv-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-inline: auto;
  max-width: 1116px;
  margin-block-start: 2rem;
  @media (min-width: 300px) and (max-width: 991px) {
    padding-inline: 12px;
  }

  @media (min-width: 992px) {
    gap: 4rem;
    margin-block-start: 2rem;
  }
}

/* Welcome Section */
.welcome {
  display: grid;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-template-areas:
    "video"
    "speakers"
    "intro"
    "socials"
    "callout";
  row-gap: 16px;

  @media (min-width: 992px) {
    grid-template-rows: auto auto auto;
    grid-template-columns: 76% 24%;
    grid-template-areas:
      "video callout"
      "speakers speakers"
      "intro socials";
    column-gap: 22px;
    row-gap: 16px;
  }

  .video {
    grid-area: video;
    border-radius: var(--border-radius);
    background: var(--color-white);
    width: 100%;
    height: 100%;
  }

  .speakers {
    grid-area: speakers;
    margin-top: 1rem;
  }

  .intro {
    display: flex;
    grid-area: intro;
    flex-direction: column;
    gap: 1rem;

    h1 {
      font-weight: 400;
      font-size: 1.9375rem;
      line-height: 1.2;
      letter-spacing: -0.05rem;

      @media (min-width: 992px) {
        font-size: 3.0625rem;
        letter-spacing: -0.0625rem;
      }

      span {
        display: block;
        margin-top: 12px;
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 1.2;
      }
    }
  }

  .socials {
    grid-area: socials;

    @media (min-width: 992px) {
      align-self: flex-start;
      justify-self: flex-end;
      transform: translateY(-50%);
      margin-top: 33px;
    }
  }

  .callout {
    display: flex;
    grid-area: callout;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    border-radius: 0.25rem;
    background:
      linear-gradient(
        180deg,
        rgba(196, 196, 196, 0) 11.92%,
        rgba(51, 153, 255, 0.4) 30.64%,
        rgba(42, 119, 200, 0.887271) 48.85%,
        rgba(37, 99, 166, 0.940207) 67.29%,
        #1f4c80 79.07%
      ),
      url(/wp-content/uploads/2025/07/faith-in-action-back-all.webp) left 0% top 65%;
    background-repeat: no-repeat;

    @media (min-width: 768px) and (max-width: 991px) {
      background-size: cover;
    }
    padding: 2rem 1.25rem;
    color: var(--color-white);

    @media (max-width: 992px) {
      margin-block-start: 32px;
    }

    h2 {
      padding-block-start: 109px;
      color: var(--color-white);
      font-weight: 600;
      font-size: 1.75rem;
      line-height: 1.1;
      letter-spacing: -0.0625rem;

      @media (min-width: 992px) {
        padding-block-start: 0;
        max-width: 13ch;
      }
    }

    p {
      font-size: 0.6875rem;
      line-height: 1.5;
    }

    a {
      margin-top: 0.5rem;
      border-radius: 0.1875rem;
      background: var(--color-secondary);
      padding-block: 0.59375rem;
      color: var(--color-white);
      font-size: 1rem;
      line-height: 1;
      text-align: center;
    }
  }
}

/* CTAs Section */
.ctas {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  gap: 1rem;

  @media (min-width: 992px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  h3 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 0.96;
    letter-spacing: -0.075rem;
    text-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  }

  .cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.825rem;
    transition: background-color var(--transition);
    border-radius: var(--border-radius);
    background: var(--color-primary);
    padding: 22px 20px;
    width: 100%;
    color: var(--color-white);
    &:hover {
      text-decoration: none;
    }
    p{
      margin-block-end:0;
    }
    .cta-content {
      display: grid;
      grid-template-columns: 1fr 39px;
      align-items: center;
      width: 100%;

      @media (min-width: 992px) {
        gap: 1rem;
        max-width: 248px;
      }

      @media (max-width: 991px) {
        p {
          max-width: 240px;
        }
      }
    }

    svg {
      width: 39px;
      height: 39px;
    }

    &.app {
      display: grid;
      position: relative;
      grid-template-rows: auto auto auto;
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "title title"
        "description description"
        "apple android";
      gap: 1rem;
      background: url(/wp-content/uploads/2025/07/cta-app-back.webp) center / 100% 100%;

      h3 {
        grid-area: title;
      }

      p {
        grid-area: description;
        padding-inline-end: 80px;
      }

      .apple {
        grid-area: apple;

        justify-self: flex-end;
      }

      .android {
        grid-area: android;
      }
      @media (min-width: 992px) and (max-width: 1199px) {
        p{
          padding-inline-end:0;
          margin-bottom:0;
        }
      }
    }

    &.youtube {
      background:
              url(/wp-content/uploads/2025/07/cta-youtube-Kenneth-Copeland.webp) right bottom / contain,
      url(/wp-content/uploads/2025/07/cta-youtube.webp) center / 100% 100%,
        #0a58ca;
      background-repeat: no-repeat;

      .cta-content p {
        max-width: 240px;
        @media (min-width: 992px) {
          max-width: 193px;
        }
      }
    }

    &.partner {
      background: #6fb1d3 url(/wp-content/uploads/2025/07/cta-partner.webp) center / 100% 100%;
      @media (min-width: 992px) and (max-width: 1199px) {
        br{display:none;}
      }
      .cta-content p {
        max-width: 251px;
        @media (min-width: 992px) {
          max-width: 216px;
        }
      }
    }

    h3 {
      color: var(--color-white);
      font-weight: 800;
      font-size: 2rem;
      line-height: 0.96;
      letter-spacing: -1.2px;
      text-shadow: 0px 1px 1px 0px #0000001a;
    }

    p {
      font-weight: 400;
      font-size: 0.8125rem;
      line-height: 1.25;
      @media (min-width: 992px) {
        line-height: 1.2;
      }
    }
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    & > div {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
}

/* Social Media */
.socials {
  display: flex;
  align-items: center;
  gap: 1rem;

  @media (min-width: 992px) {
    gap: 0.75rem;
  }

  a {
    display: flex;
    align-items: center;
    transition: opacity var(--transition);

    &:hover {
      opacity: 0.8;
    }
  }
}

/* Speakers Section */
.speakers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-long);
  border-radius: 0.5rem;

  .speaker-circles {
    display: flex;
    align-items: center;
    transition: all var(--transition-long);

    &.speakers-transitioning {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &.expanding {
      animation: expandSpeakers 0.3s ease-out;
    }

    &.collapsing {
      animation: collapseSpeakers 0.3s ease-in;
    }
  }

  .speaker-group {
    display: flex;
    align-items: center;
    gap: 0;
    transition: all var(--transition-long);
    margin-inline-end: 0.5rem;

    /* Smooth transitions for speaker elements */
    .speaker {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
  }

  .speakers-label {
    transition: opacity var(--transition), color var(--transition);
    cursor: pointer;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.6875rem;
    line-height: 1.2;

    @media (min-width: 992px) {
      font-size: 0.8125rem;
      line-height: 1.5;
    }

    &:hover {
      opacity: 0.8;
    }
  }

  .assistance-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition);
    color: var(--color-tertiary);
    font-weight: 700;
    font-size: 0.625rem;
    line-height: 1.5;
    text-decoration: none;

    @media (min-width: 992px) {
      font-size: 1rem;
    }

    &:hover {
      color: var(--color-primary);
      .question-icon {
        background: var(--color-primary-dark);
      }
    }

    .question-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: var(--color-gray-dark);
      width: 20px;
      height: 20px;
      color: var(--color-white);
      font-weight: bold;
      font-size: 0.8rem;
    }
  }

  /* Hide assistance link on mobile when speakers are expanded */
  &.speakers-expanded .assistance-link {
    @media (max-width: 991px) {
      display: none;
    }
  }

  .speaker {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    transition: all var(--transition-long);
    margin-left: -0.825rem;
    width: 38px;
    height: 38px;
    overflow: hidden;

    @media (min-width: 992px) {
      width: 48px;
      height: 48px;
    }

    &:first-child {
      margin-left: 0;
    }

    &:hover {
      transform: scale(1.1);
      z-index: 10;
    }

    img {
      transition: opacity var(--transition);
      border: 2px solid var(--color-white);
      border-radius: 50%;
      background: #060606;
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    &.more {
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color var(--transition);
      cursor: pointer;
      border: 2px solid var(--color-white);
      border-radius: 50%;
      background: var(--color-primary);
      color: var(--color-white);
      font-weight: 700;
      font-size: 0.825rem;
      line-height: 1.25rem;
      letter-spacing: -0.05rem;
      text-transform: uppercase;

      &:hover {
        background: var(--color-primary-dark);
      }

      .more-count {
        line-height: 1;
      }
    }

    &.collapse {
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color var(--transition);
      cursor: pointer;
      background: var(--color-primary);
      color: var(--color-white);
      font-weight: bold;
      font-size: 1.5rem;

      &:hover {
        background: var(--color-primary-dark);
      }

      .collapse-icon {
        line-height: 1;
      }
    }

    .speaker-fallback {
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--color-primary);
      width: 100%;
      height: 100%;
      color: var(--color-white);
      font-weight: bold;
      font-size: 1.5rem;
      text-transform: uppercase;
    }
  }
}

/* Video Gate Styles */
.video-gate {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide gate during initial load to prevent flicker */
.video-gate.gate-loading {
  opacity: 0;
  visibility: hidden;
}

/* Hide video gate when access is granted */
.video-gate.gate-hidden {
  display: none;
}

/* Show video player when access is granted */
.video-player {
  display: block;
}

.video-player.gate-hidden {
  display: none;
}

.gate-content {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);
  background: var(--color-white);
  padding: 2rem;
  width: 90%;
  max-width: 400px;
}

.gate-content h2 {
  margin-bottom: 0.5rem;
  color: var(--color-base);
  font-weight: 600;
  font-size: 1.5rem;
  text-wrap: balance;
}

.gate-content p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-medium);
  font-size: 0.9rem;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  &:first-child {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
  }

  &:first-child input {
    flex: 1;
    width: 100%;
    min-width: 0;
  }
}

.form-group input,
.form-group select {
  transition: border-color var(--transition);
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  background: var(--color-white);
  padding: 0.75rem;
  font-size: 1rem;

  &:focus {
    outline: none;
    border-color: var(--color-primary);
  }

  &.error {
    border-color: var(--color-error);
  }
}

.error-message {
  margin-top: 0.5rem;
  color: var(--color-error);
  font-size: 0.875rem;
  text-align: center;
}

.checkbox-group {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  cursor: pointer;
  color: var(--color-gray-medium);
  font-size: 0.85rem;
  line-height: 1.4;

  input[type="checkbox"] {
    cursor: pointer;
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
  }

  &:hover {
    color: #333;
  }
}

.form-group button {
  transition: background-color var(--transition);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background: var(--color-primary);
  padding: 0.75rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;

  &:hover {
    background: var(--color-primary-dark);
  }

  &:disabled {
    cursor: not-allowed;
    background: #ccc;
  }
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.spinner {
  animation: spin 1s linear infinite;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Video Components */
.video-container {
  grid-area: video;
  border-radius: var(--border-radius);
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;

  @media (min-width: 992px) {
    height: 500px;
  }
}

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.video-player .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}



.intro p {
  max-width: 655px;
  color: var(--color-base);
}

/* Schedule Styles */
.schedule {
  margin-block-start: 2rem;
  margin-block-end: 4rem;

  @media (min-width: 992px) {
    margin-block-start: 0;
  }

  .intro {
    display: flex;
    flex-direction: column;
    gap: 1.454545454545455rem;
    margin-bottom: 3rem;

    h3 {
      font-weight: 400;
      font-size: 3.0625rem;
      line-height: 1.2;
      letter-spacing: -1px;
      color: var(--color-base);
    }

    p {
      margin-inline: auto;
      width: 85%;
      text-align: center;

      @media (min-width: 992px) {
        margin-inline: 0;
        width: 100%;
        max-width: 665px;
        text-align: left;
      }
    }
  }
}

.schedule-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.schedule-item {
  border-radius: 20px;
  background-color: #f8f9fa;
  padding: 1rem clamp(1.56rem, 1.118rem + 1.8133vw, 2.75rem);
  width: 100%;

  summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-base);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    list-style: none;

    @media (min-width: 768px) {
      font-size: 2rem;
    }
  }

  summary::-webkit-details-marker,
  summary::marker {
    display: none;
  }

  .date-text {
    flex: 1;
    color: #141514;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    @media (min-width: 992px) {
      font-size: 25px;
      letter-spacing: -0.5px;
    }
  }

  .icon-plus,
  .icon-minus {
    transition: all var(--transition-long);
    width: 29px;
    height: 30px;
    color: var(--color-base);
  }

  .icon-minus {
    display: none;
    transform: scale(0.8);
    opacity: 0;
    width: 15px;
    height: 3px;
  }

  &[open] {
    .icon-plus {
      display: none;
      transform: scale(0.8);
      opacity: 0;
    }

    .icon-minus {
      display: block;
      transform: scale(1);
      opacity: 1;
    }

    .sessions {
      opacity: 1;
      max-height: 2000px;
    }
  }

  .sessions {
    opacity: 0;
    transition: all var(--transition-long);
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
  }
}

.event {
  display: flex;
  row-gap: 8px;
  flex-direction: column;
  align-items: start;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.4s ease-out forwards;
  animation-delay: calc(var(--event-index, 0) * 0.1s);
  margin-bottom: 1rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--color-white);
  padding: 16px;

  @media (min-width: 992px) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-inline: 48px;
    padding-block: 38px;
  }

  &:last-child {
    margin-bottom: 0;
  }

  .time {
    margin: 0;
    color: #002e77;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 24px;
    text-align: left;

    @media (min-width: 992px) {
      font-size: 25px;
      line-height: 28px;
    }
  }

  .title {
    vertical-align: middle;
    margin: 0;
    color: #141514;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: left;

    @media (min-width: 992px) {
      font-size: 25px;
      line-height: 28px;
    }
  }

  .description {
    vertical-align: middle;
    margin: 0;
    color: #9f9f9f;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: left;

    @media (min-width: 992px) {
      font-size: 16px;
      line-height: 24px;
    }
  }
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.schedule-loading {
  padding: 2rem;
  color: var(--color-gray-medium);
  text-align: center;
}

.schedule-error {
  padding: 2rem;
  color: var(--color-error);
  text-align: center;
}

@media (max-width: 992px) {
  .schedule-list {
    gap: 32px;
    max-width: 100%;
  }

  .schedule-item {
    padding: 24px 1rem;
  }

  .schedule .intro h3 {
    font-weight: 400;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;

    @media (min-width: 992px) {
      font-size: 49px;
      letter-spacing: -1px;
      text-align: left;
    }
  }

  .schedule-item .day-name {
    font-size: 1rem;
  }

  .schedule-item .day-date {
    font-size: 0.8rem;
  }
}

/* Speaker Animation Keyframes */
@keyframes expandSpeakers {
  0% {
    transform: scale(0.98);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes collapseSpeakers {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.8;
  }
}

/* Assistance Modal Styles */
.assistance-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2000;
  transition: opacity var(--transition-long);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;

  &.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;

    .modal-content {
      transform: scale(1);
      max-width: 700px;
    }
  }
}

.modal-content {
  transform: scale(0.7);
  transition: transform var(--transition-long);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);
  background: var(--color-white);
  width: 650px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #e1e5e9;
  padding: 1.5rem 1.5rem 1rem;

  h2 {
    margin: 0;
    color: var(--color-base);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.05rem;
  }
}

.modal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--transition);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: none;
  padding: 0;
  width: 30px;
  height: 30px;
  color: var(--color-gray-medium);
  font-size: 1.5rem;

  @media (min-width: 992px) {
    font-size: 2rem;
  }
}

.modal-body {
  padding: 1.5rem;

  p {
    margin-bottom: 1rem;
    color: var(--color-base);
    font-size: 0.875rem;
    line-height: 1.5;

    @media (min-width: 992px) {
      font-size: 1rem;
    }

    &.chrome-note {
      padding-inline: 0.5rem;
      font-size: 0.8125rem;
      line-height: 1.25;
    }
  }

  ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
  }

  li {
    margin-bottom: 0.75rem;
    color: var(--color-base);
    font-size: 0.875rem;
    line-height: 1.5;

    @media (min-width: 992px) {
      font-size: 1rem;
    }
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 1rem 1rem 0.75rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.05rem;
  }

  .modal-body {
    padding: 1rem;
  }
}
