.repairs-highlight {
  position: relative;
  padding: 42px 24px 92px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(61, 184, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #071f39, #0b4a80 72%, #0d63a9);
  overflow: hidden;
}

.repairs-highlight::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 121, 207, 0.2), transparent 70%);
  pointer-events: none;
}

.repairs-highlight__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 34px;
}

.repairs-highlight .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.repairs-highlight__media {
  display: grid;
  gap: 14px;
}

.repairs-highlight__media-frame {
  min-height: 280px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 48px rgba(6, 24, 44, 0.18);
}

.repairs-highlight__media p {
  color: rgba(255, 255, 255, 0.8);
}

.repairs-highlight .eyebrow,
.repairs-highlight h2,
.repairs-highlight .section-copy {
  color: var(--color-white);
}

.repairs-highlight .section-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 48rem;
}

.repairs-highlight__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 2px 8px;
  margin-right: -4px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.repairs-highlight__grid::-webkit-scrollbar {
  display: none;
}

.repair-card {
  flex: 0 0 82%;
  position: relative;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  user-select: none;
}

.repair-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(146, 219, 255, 0.9), rgba(255, 255, 255, 0.16));
}

.repair-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  margin-bottom: 12px;
}

.repair-card__top h3,
.repair-card p {
  color: var(--color-white);
}

.repair-card__top h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.9rem);
}

@media (max-width: 767px) {
  .repair-card,
  .repair-card * {
    -webkit-user-select: none;
    user-select: none;
  }

  .repair-card__top,
  .repair-card__top h3,
  .repair-card__top span,
  .repair-card > p {
    pointer-events: none;
  }

  .repair-card > a {
    pointer-events: auto;
  }
}

.repair-card__top span {
  color: #92dbff;
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.96rem;
  line-height: 1.3;
  text-align: right;
}

.repair-card p {
  color: rgba(255, 255, 255, 0.8);
}

.repair-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-white);
  font-weight: 700;
}

.repairs-highlight__grid.is-draggable {
  cursor: grab;
}

.repairs-highlight__grid.is-dragging {
  cursor: grabbing;
}

@media (min-width: 860px) {
  .repairs-highlight__intro {
    grid-template-columns: minmax(0, 1.08fr) 360px;
    align-items: end;
  }
}

@media (max-width: 767px) {
  .repairs-highlight__grid {
    padding-right: 20px;
  }

  .repair-card {
    flex-basis: 86%;
  }

  .repair-card__top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .repair-card__top h3 {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .repair-card__top span {
    display: inline-flex;
    justify-self: start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(146, 219, 255, 0.14);
    line-height: 1.1;
    text-align: left;
  }
}

@media (min-width: 700px) {
  .repairs-highlight__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin-right: 0;
  }

  .repair-card {
    min-width: 0;
    flex-basis: auto;
  }
}

@media (min-width: 1101px) {
  .repairs-highlight__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
