.quote-slider {
  width: 1240px;
  margin: 64px auto;
  border-radius: 16px;
  overflow: hidden;
}

.qs-viewport {
  position: relative;
  background: #0f0f0f; /* black panel behind right column */
  border-radius: 16px;
}

.qs-track {
  position: relative;
}

.qs-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #000;
}

.qs-slide.is-active {
  display: grid;
}

.qs-col {
  min-height: 595px;
}

.qs-col--image {
  background: #000;
}

.qs-col--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qs-col--copy {
  color: #fff;
  padding: 60px;
  position: relative;
}

.qs-quote-eyebrow {
  width: 56px;
  height: 43px;
  margin-bottom: 24px;
  background: url("../img/icons/quote_marks.svg") no-repeat center/contain;
}

.qs-quote-text {
  margin-bottom: 40px;
}

.qs-quote-text p {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
}

.qs-cta {
  color: var(--500-Yellow, #ffc845);
  margin-top: 40px;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
  text-transform: uppercase;
}

.qs-rule {
  border: 0;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  margin: 40px 0;
}

.card-bottom {
  display: grid;
  grid-template-columns: 1fr 132px;
  align-items: center;
}

.qs-cite__name {
  color: var(--500-Yellow, #ffc845);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
  margin-bottom: 5px;
}

.qs-cite__role {
  color: var(--Light-Blue, #eafafc);
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}

.qs-nav {
  display: flex;
  gap: 12px;
}

.qs-btn {
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #000;
  padding: 0;
  padding-inline: 0;
  border-width: 0;
  border-style: outset;
  border-color: buttonborder;
  border-image: initial;
}

.icon-quote-left {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url("../img/icons/nav_left.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

.icon-quote-right {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url("../img/icons/nav_right.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

@media (max-width: 980px) {
  .qs-slide {
    grid-template-columns: 1fr;
  }
  .qs-col--image {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .qs-col--copy {
    color: #fff;
    padding: 14px;
    position: relative;
  }
  .quote-slider {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px;
    margin: 0;
  }
  .card-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .qs-nav {
    gap: 32px;
    padding: 0;
    opacity: 1;
    display: flex;
    width: 100%;
    margin-top: 32px;
    padding-bottom: 30px;
  }
  .qs-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: #000;
    padding: 0;
    padding-inline: 0;
    border-width: 0;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
  }

  .qs-quote-text p {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0px;
  }
  .qs-cta {
    color: var(--500-Yellow, #ffc845);
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .qs-col {
    min-height: auto;
  }
}
