/**
 * Gerllish Vehicle Catalog — front-end styles.
 * All selectors are scoped with the gvc- prefix to avoid theme conflicts.
 */

.gvc-catalog {
  --gvc-accent: #c62828;
  --gvc-accent-contrast: #fff;
  --gvc-text: #1f2933;
  --gvc-muted: #475467;
  --gvc-border: #e4e7ec;
  --gvc-surface: #fff;
  --gvc-surface-alt: #f7f8fa;
  --gvc-focus: #2563eb;
  --gvc-radius: 8px;
  --gvc-shadow: 0 18px 48px rgb(15 23 42 / 16%);
  position: relative;
  color: var(--gvc-text);
  font: inherit;
}

.gvc-catalog *,
.gvc-catalog *::before,
.gvc-catalog *::after {
  box-sizing: border-box;
}

.gvc-catalog [hidden] {
  display: none !important;
}

.gvc-catalog__toggle,
.gvc-catalog__close,
.gvc-catalog__accordion,
.gvc-option__toggle,
.gvc-selector__submit {
  appearance: none;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.gvc-catalog__toggle,
.gvc-catalog__close,
.gvc-catalog__accordion,
.gvc-option,
.gvc-option__toggle,
.gvc-product,
.gvc-selector__submit {
  -webkit-tap-highlight-color: transparent;
}

.gvc-catalog__toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gvc-border);
  border-radius: var(--gvc-radius);
  background: var(--gvc-surface);
  color: var(--gvc-text);
  cursor: pointer;
  font-weight: 650;
}

.gvc-catalog.gvc-has-toggle .gvc-catalog__toggle {
  display: inline-flex;
}

.gvc-catalog__toggle:hover {
  border-color: var(--gvc-accent);
  border-color: color-mix(in srgb, var(--gvc-accent) 55%, var(--gvc-border));
  color: var(--gvc-accent);
}

.gvc-catalog__panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gvc-border);
  border-radius: var(--gvc-radius);
  background: var(--gvc-surface);
  box-shadow: var(--gvc-shadow);
}

.gvc-catalog--mega .gvc-catalog__panel {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: min(1120px, calc(100vw - 2rem));
}

.gvc-catalog__bar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--gvc-border);
}

.gvc-catalog__title,
.gvc-catalog__heading {
  margin: 0;
  color: var(--gvc-text);
  font: inherit;
  font-weight: 700;
}

.gvc-catalog__title {
  font-size: 1.05rem;
}

.gvc-catalog__close {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: var(--gvc-text);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.gvc-catalog__close:hover {
  background: var(--gvc-surface-alt);
}

.gvc-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 360px;
}

.gvc-catalog__column {
  min-width: 0;
  padding: 1rem;
  border-inline-end: 1px solid var(--gvc-border);
}

.gvc-catalog__column:last-child {
  border-inline-end: 0;
}

.gvc-catalog__column-head {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.gvc-catalog__heading {
  color: var(--gvc-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gvc-catalog__accordion {
  display: none;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gvc-surface);
  color: var(--gvc-text);
  cursor: pointer;
  text-align: start;
  font-weight: 700;
}

.gvc-catalog__accordion::after,
.gvc-option__toggle::after {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.gvc-catalog__accordion[aria-expanded="true"]::after,
.gvc-option__toggle[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.gvc-list {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvc-list__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.gvc-option-wrap {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
}

.gvc-option-wrap:hover,
.gvc-option-wrap:focus-within,
.gvc-option-wrap.gvc-is-active {
  background: var(--gvc-surface-alt);
}

.gvc-option {
  display: flex;
  min-width: 0;
  min-height: 42px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  color: var(--gvc-text);
  line-height: 1.35;
  text-decoration: none;
}

button.gvc-option {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: start;
}

.gvc-option:hover,
.gvc-option:focus-visible,
.gvc-option.gvc-is-active,
.gvc-option[aria-current="true"] {
  color: var(--gvc-accent);
  text-decoration: none;
}

.gvc-option.gvc-is-active,
.gvc-option[aria-current="true"] {
  background: var(--gvc-surface-alt);
  font-weight: 650;
}

.gvc-option__label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.gvc-option__meta,
.gvc-option__count {
  flex: 0 0 auto;
  color: var(--gvc-muted);
  font-size: 0.78rem;
}

.gvc-option__count {
  min-width: 1.55rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #eef0f3;
  text-align: center;
}

.gvc-option__toggle {
  display: none;
  width: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gvc-muted);
  cursor: pointer;
}

.gvc-group {
  min-width: 0;
}

.gvc-empty {
  margin: 0.75rem 0;
  color: var(--gvc-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.gvc-products {
  display: grid;
  gap: 0.6rem;
}

.gvc-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--gvc-text);
  text-decoration: none;
}

.gvc-product:hover,
.gvc-product:focus-visible {
  border-color: var(--gvc-border);
  background: var(--gvc-surface-alt);
  color: var(--gvc-accent);
  text-decoration: none;
}

.gvc-product__image {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  background: #eef0f3;
  object-fit: contain;
}

.gvc-product__body {
  min-width: 0;
}

.gvc-product__name {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.gvc-product__meta {
  display: block;
  margin-top: 0.25rem;
  color: var(--gvc-muted);
  font-size: 0.76rem;
}

.gvc-view-all {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--gvc-accent);
  font-weight: 650;
  text-decoration: none;
}

.gvc-view-all:hover,
.gvc-view-all:focus-visible {
  text-decoration: underline;
}

.gvc-selector {
  --gvc-accent: #c62828;
  --gvc-accent-contrast: #fff;
  --gvc-text: #1f2933;
  --gvc-muted: #475467;
  --gvc-border: #e4e7ec;
  --gvc-surface: #fff;
  --gvc-surface-alt: #f7f8fa;
  --gvc-focus: #2563eb;
  --gvc-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--gvc-border);
  border-radius: var(--gvc-radius);
  background: var(--gvc-surface);
  color: var(--gvc-text);
  font: inherit;
}

.gvc-selector *,
.gvc-selector *::before,
.gvc-selector *::after {
  box-sizing: border-box;
}

.gvc-selector-heading {
  margin-bottom: 0.9rem;
}

.gvc-selector-heading strong {
  font-size: 1rem;
}

.gvc-selector-heading p {
  margin: 0.25rem 0 0;
  color: var(--gvc-muted);
  font-size: 0.88rem;
}

.gvc-selector__field {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
  margin: 0;
  color: var(--gvc-text);
  font-size: 0.8rem;
  font-weight: 650;
}

.gvc-selector__label {
  color: var(--gvc-text);
  font-size: 0.8rem;
  font-weight: 650;
}

.gvc-selector select {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 2.25rem 0.55rem 0.7rem;
  border: 1px solid var(--gvc-border);
  border-radius: 6px;
  background-color: var(--gvc-surface);
  color: var(--gvc-text);
  font: inherit;
}

.gvc-selector select:disabled {
  background: var(--gvc-surface-alt);
  color: var(--gvc-muted);
  cursor: not-allowed;
}

.gvc-selector__submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  background: var(--gvc-accent);
  color: var(--gvc-accent-contrast);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.gvc-selector__submit:hover {
  filter: brightness(0.92);
}

.gvc-selector-result:not(:empty) {
  margin-top: 0.85rem;
  padding: 0.75rem;
  border-radius: 6px;
  line-height: 1.5;
}

.gvc-selector-result p {
  margin: 0;
  font-weight: 650;
}

.gvc-selector-result small {
  display: block;
  margin-top: 0.3rem;
}

.gvc-result--success {
  border: 1px solid #86c59b;
  background: #effaf2;
  color: #176235;
}

.gvc-result--warning {
  border: 1px solid #e3b75b;
  background: #fff8e7;
  color: #6b4600;
}

.gvc-catalog__toggle:focus-visible,
.gvc-catalog__close:focus-visible,
.gvc-catalog__accordion:focus-visible,
.gvc-option:focus-visible,
.gvc-option__toggle:focus-visible,
.gvc-product:focus-visible,
.gvc-view-all:focus-visible,
.gvc-selector select:focus-visible,
.gvc-selector__submit:focus-visible {
  outline: 3px solid var(--gvc-focus);
  outline-offset: 2px;
}

.gvc-catalog__backdrop {
  display: none;
}

.gvc-status {
  margin: 0;
  padding: 0.65rem 1rem;
  color: var(--gvc-muted, #475467);
  font-size: 0.85rem;
}

.gvc-status:empty {
  display: none;
}

.gvc-catalog.gvc-is-loading {
  cursor: progress;
}

.gvc-catalog.gvc-is-loading .gvc-catalog__grid,
.gvc-catalog.gvc-is-loading .gvc-selector {
  opacity: 0.62;
  pointer-events: none;
}

@media (min-width: 900px) {
  .gvc-catalog__bar .gvc-catalog__close {
    display: none;
  }

  .gvc-catalog--mega.gvc-has-toggle.gvc-is-enhanced:not(.gvc-is-open) .gvc-catalog__panel {
    display: none;
  }

}

@media (max-width: 899px) {
  body.gvc-scroll-locked {
    overflow: hidden;
  }

  .gvc-catalog__bar {
    padding-top: calc(0.8rem + env(safe-area-inset-top));
  }

  .gvc-catalog--mega .gvc-catalog__panel,
  .gvc-catalog__panel {
    position: fixed;
    z-index: 100002;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: min(92vw, 420px);
    min-width: 0;
    overflow: auto;
    padding-bottom: env(safe-area-inset-bottom);
    border: 0;
    border-radius: 0;
    box-shadow: 10px 0 34px rgb(15 23 42 / 22%);
    overscroll-behavior: contain;
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  [dir="rtl"] .gvc-catalog--mega .gvc-catalog__panel,
  [dir="rtl"] .gvc-catalog__panel {
    right: 0;
    left: auto;
    transform: translateX(105%);
  }

  .gvc-catalog.gvc-is-open .gvc-catalog__panel {
    transform: translateX(0);
    visibility: visible;
  }

  .gvc-catalog.gvc-is-enhanced:not(.gvc-has-toggle) .gvc-catalog__panel {
    position: static;
    width: 100%;
    overflow: visible;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .gvc-catalog__backdrop {
    position: fixed;
    z-index: 100001;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    display: block;
    border: 0;
    background: rgb(15 23 42 / 55%);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .gvc-catalog.gvc-is-open .gvc-catalog__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .gvc-catalog.gvc-is-enhanced:not(.gvc-has-toggle) .gvc-catalog__backdrop,
  .gvc-catalog.gvc-is-enhanced:not(.gvc-has-toggle) .gvc-catalog__close {
    display: none;
  }

  .gvc-catalog__grid {
    display: block;
    min-height: 0;
  }

  .gvc-catalog__column {
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--gvc-border);
  }

  .gvc-catalog__column-head {
    display: none;
  }

  .gvc-catalog__accordion {
    display: flex;
  }

  .gvc-catalog__column-body {
    padding: 0.45rem 0.7rem 0.8rem;
  }

  .gvc-option {
    min-height: 46px;
  }

  .gvc-option__toggle {
    display: none;
  }

  .gvc-catalog.gvc-is-enhanced .gvc-option__toggle {
    display: inline-flex;
  }

  .gvc-catalog.gvc-is-enhanced.gvc-has-toggle .gvc-catalog__close {
    display: inline-grid;
  }

  .gvc-products {
    gap: 0.4rem;
  }

  .gvc-product {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .gvc-product__image {
    width: 52px;
    height: 52px;
  }

  .gvc-selector {
    grid-template-columns: 1fr;
  }

  .gvc-selector__submit {
    width: 100%;
  }

  /* The full catalog remains reachable when JavaScript is unavailable. */
  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__toggle,
  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__backdrop,
  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__close,
  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__accordion,
  .gvc-catalog:not(.gvc-is-enhanced) .gvc-option__toggle {
    display: none;
  }

  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__panel {
    position: static;
    width: 100%;
    overflow: visible;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__column-head {
    display: flex;
  }

  .gvc-catalog:not(.gvc-is-enhanced) .gvc-catalog__column-body {
    display: block !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  .gvc-catalog__panel,
  .gvc-catalog__backdrop,
  .gvc-catalog__accordion::after,
  .gvc-option__toggle::after {
    scroll-behavior: auto;
    transition: none;
  }
}

@media (forced-colors: active) {
  .gvc-catalog__panel,
  .gvc-selector,
  .gvc-selector select,
  .gvc-product {
    border-color: CanvasText;
  }

  .gvc-catalog__backdrop {
    background: CanvasText;
  }
}

/* Product compatibility, selector shell and vehicle landing pages. */
.gvc-selector-shell {
  --gvc-accent: #c62828;
  --gvc-text: #1f2933;
  --gvc-muted: #475467;
  --gvc-border: #e4e7ec;
  --gvc-surface: #fff;
  --gvc-surface-alt: #f7f8fa;
  --gvc-radius: 8px;
  margin: 1rem 0 1.25rem;
}

.gvc-selector-heading {
  margin-bottom: 0.75rem;
}

.gvc-selector-heading strong {
  display: block;
  color: var(--gvc-text);
  font-size: 1rem;
}

.gvc-selector-heading p,
.gvc-selector-result {
  margin: 0.25rem 0 0;
  color: var(--gvc-muted);
  font-size: 0.88rem;
}

.gvc-selector-result {
  min-height: 1.5em;
  padding: 0 0.2rem;
  font-weight: 650;
}

.gvc-selector-result.gvc-is-compatible {
  color: #137333;
}

.gvc-selector-result.gvc-needs-verification {
  color: #9a6700;
}

.gvc-selector__submit[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.gvc-product-checker .gvc-selector {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gvc-compatibility-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.gvc-compatibility-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.gvc-compatibility-table th,
.gvc-compatibility-table td {
  padding: 0.75rem;
  border: 1px solid #e4e7ec;
  text-align: left;
  vertical-align: top;
}

.gvc-compatibility-table th {
  background: #f7f8fa;
}

.gvc-compatibility-table .gvc-note-row td {
  padding-top: 0.45rem;
  color: #475467;
  font-size: 0.88rem;
}

.gvc-compatibility-table .gvc-status {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.gvc-compatibility-table .gvc-status.gvc-is-verified {
  background: #e7f6ec;
  color: #137333;
}

.gvc-compatibility-table .gvc-status.gvc-needs-check {
  background: #fff4d6;
  color: #8a5b00;
}

.gvc-compatibility-help {
  margin-top: 0.9rem;
}

.gvc-vehicle-archive {
  --gvc-archive-red: #c62828;
  color: #1f2933;
}

.gvc-archive-inner {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.gvc-archive-hero {
  padding: clamp(36px, 6vw, 72px) 0;
  background: #111318;
  color: #fff;
}

.gvc-archive-hero h1 {
  max-width: 900px;
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.gvc-archive-hero p {
  max-width: 760px;
  margin: 0;
  color: #d0d5dd;
}

.gvc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.88rem;
}

.gvc-breadcrumbs a {
  color: #fff;
}

.gvc-archive-content {
  padding: clamp(34px, 5vw, 64px) 0;
}

.gvc-archive-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.gvc-archive-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  background: #fff;
}

.gvc-archive-image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f8fa;
}

.gvc-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gvc-archive-card h2 {
  margin: 16px 0 12px;
  font-size: 1rem;
  line-height: 1.45;
}

.gvc-view-product {
  margin-top: auto;
  color: var(--gvc-archive-red);
  font-weight: 700;
}

@media (max-width: 899px) {
  .gvc-product-checker .gvc-selector,
  .gvc-archive-products {
    grid-template-columns: 1fr;
  }

  .gvc-archive-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gvc-archive-products {
    grid-template-columns: 1fr;
  }
}

/* Product installation guide tab. */
.gvc-installation {
  --gvc-installation-accent: #c62828;
  --gvc-installation-text: #1f2933;
  --gvc-installation-muted: #475467;
  --gvc-installation-border: #e4e7ec;
  --gvc-installation-surface: #fff;
  color: var(--gvc-installation-text);
  font: inherit;
}

.gvc-installation *,
.gvc-installation *::before,
.gvc-installation *::after {
  box-sizing: border-box;
}

.gvc-installation [hidden] {
  display: none !important;
}

.gvc-installation__heading {
  margin: 0 0 1rem;
  color: var(--gvc-installation-text);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.gvc-installation__list {
  display: grid;
  gap: 1rem;
}

.gvc-installation-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gvc-installation-border);
  border-radius: 10px;
  background: var(--gvc-installation-surface);
}

.gvc-installation-item__content {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.gvc-installation-item__title {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--gvc-installation-text);
  font-size: 1rem;
  line-height: 1.4;
}

.gvc-installation-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.45rem 0 0;
  color: var(--gvc-installation-muted);
  font-size: 0.88rem;
}

.gvc-installation-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.gvc-installation-open,
.gvc-installation-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gvc-installation-accent);
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.gvc-installation-open {
  background: var(--gvc-installation-accent);
  color: #fff;
}

.gvc-installation-link {
  background: var(--gvc-installation-surface);
  color: var(--gvc-installation-accent);
}

.gvc-installation-open:hover,
.gvc-installation-open:focus-visible {
  color: #fff;
  filter: brightness(0.92);
}

.gvc-installation-link:hover,
.gvc-installation-link:focus-visible {
  color: var(--gvc-installation-accent);
  text-decoration: underline;
}

.gvc-installation-open:focus-visible,
.gvc-installation-link:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

.gvc-installation-viewer {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top: 1px solid var(--gvc-installation-border);
  background: #0f1115;
  scroll-margin-block: 1rem 90px;
}

.gvc-installation-frame,
.gvc-installation-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gvc-installation-video {
  background: #000;
}

.gvc-installation-item[data-gvc-installation-type="pdf"] .gvc-installation-viewer {
  height: clamp(420px, 70vh, 760px);
  aspect-ratio: auto;
  background: #f7f8fa;
}

.gvc-installation-item.gvc-has-installation-error .gvc-installation-open {
  border-color: #b42318;
  background: #b42318;
}

@media (max-width: 899px) {
  .gvc-installation {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .gvc-installation-item__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gvc-installation-open,
  .gvc-installation-link {
    width: 100%;
  }

  .gvc-installation-item[data-gvc-installation-type="pdf"] .gvc-installation-open {
    display: none;
  }

  .gvc-installation-viewer {
    max-height: calc(100dvh - 150px - env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .gvc-installation-open,
  .gvc-installation-link {
    scroll-behavior: auto;
    transition: none;
  }
}

@media (forced-colors: active) {
  .gvc-installation-item,
  .gvc-installation-open,
  .gvc-installation-link,
  .gvc-installation-viewer {
    border-color: CanvasText;
  }
}
