.dw-home-showcase {
  --dw-home-red: #e51b23;
  --dw-home-red-dark: #c5141b;
  --dw-home-ink: #151515;
  --dw-home-muted: #777;
  --dw-home-image-lift: clamp(-40px, -2vw, -28px);
  position: relative;
  width: 100%;
  padding: clamp(76px, 7vw, 102px) 24px clamp(92px, 8vw, 124px);
  color: var(--dw-home-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.dw-home-showcase,
.dw-home-showcase * {
  box-sizing: border-box;
}

.dw-home-showcase__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.dw-home-showcase__header {
  width: min(100%, 1440px);
  margin: 0 0 clamp(42px, 4vw, 56px);
  text-align: center;
}

.dw-home-showcase__eyebrow {
  margin: 0 0 6px;
  color: var(--dw-home-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dw-home-showcase__header h2 {
  margin: 0;
  color: var(--dw-home-ink);
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.dw-home-showcase__description {
  margin: 14px 0 0;
  color: #7b7b7b;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.dw-home-showcase__layout {
  display: grid;
  width: min(100%, 1440px);
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dw-home-showcase__nav,
.dw-home-showcase__panels,
.dw-home-showcase__panel {
  min-width: 0;
}

.dw-home-showcase__nav {
  padding: 10px;
  background: #f6f6f6;
  border: 1px solid #ededed;
  border-radius: 10px;
}

.dw-home-showcase__tabs {
  display: grid;
  gap: 4px;
}

.dw-home-showcase__tab {
  display: flex;
  min-height: 58px;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #555;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: color .16s ease, background-color .16s ease;
}

.dw-home-showcase__tab:hover,
.dw-home-showcase__tab:focus-visible {
  color: var(--dw-home-red);
  background: #fff5f5;
}

.dw-home-showcase__tab.is-active {
  color: #fff;
  background: var(--dw-home-red);
}

.dw-home-showcase__tab.is-active:hover,
.dw-home-showcase__tab.is-active:focus-visible {
  color: #fff;
  background: var(--dw-home-red-dark);
}

.dw-home-showcase__tab-arrow {
  flex: 0 0 auto;
  font-size: 12px;
  opacity: .68;
}

.dw-home-showcase__tab.is-active .dw-home-showcase__tab-arrow {
  opacity: 1;
}

.dw-home-showcase__panel[hidden] {
  display: none !important;
}

.dw-home-showcase__panel-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.dw-home-showcase.is-enhanced .dw-home-showcase__panel:not([hidden]) {
  animation: dw-home-showcase-enter .18s ease both;
}

.dw-home-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(20px, 1.6vw, 26px);
  row-gap: clamp(34px, 2.8vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dw-home-showcase .dw-catalog-card {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.dw-home-showcase .dw-catalog-card article {
  display: block;
  height: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.dw-home-showcase .dw-catalog-card article:hover {
  border: 0;
  box-shadow: none;
  transform: none;
}

.dw-home-showcase .dw-catalog-card__media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  padding: clamp(14px, 1.2vw, 22px);
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 8px;
  isolation: isolate;
  place-items: center;
  transition: background-color .28s ease;
}

.dw-home-showcase .dw-catalog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: translate3d(0, var(--dw-home-image-lift), 0) scale(1);
  backface-visibility: hidden;
  transition: transform .3s cubic-bezier(.2, .65, .3, 1);
}

.dw-home-showcase .dw-catalog-card__media:focus-visible {
  background: #d9d9d9;
}

.dw-home-showcase .dw-catalog-card__media:focus-visible .dw-catalog-card__image {
  transform: translate3d(0, calc(var(--dw-home-image-lift) - 3px), 0) scale(1.035);
}

.dw-home-showcase .dw-catalog-card__placeholder {
  width: 44%;
  aspect-ratio: 1;
  background: #f2f2f2;
  border-radius: 50%;
}

.dw-home-showcase .dw-catalog-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 0 0;
  align-items: center;
  column-gap: 10px;
}

.dw-home-showcase .dw-catalog-card__model {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  color: #252525;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.dw-home-showcase .dw-catalog-card h4 {
  display: -webkit-box;
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 38px;
  margin: 4px 0 0;
  overflow: hidden;
  color: #282828;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dw-home-showcase .dw-catalog-card h4 a {
  color: inherit;
  text-decoration: none;
}

.dw-home-showcase .dw-catalog-card h4 a:hover,
.dw-home-showcase .dw-catalog-card h4 a:focus-visible {
  color: var(--dw-home-red);
}

.dw-home-showcase .dw-catalog-card__summary {
  display: none;
}

.dw-home-showcase .dw-catalog-card__actions {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.dw-home-showcase .dw-catalog-card__details {
  display: inline-flex;
  min-height: 0;
  padding: 0;
  align-items: center;
  color: #333;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.dw-home-showcase .dw-catalog-card__details span {
  display: inline-block;
  margin-left: 3px;
  transition: transform .22s ease;
}

.dw-home-showcase .dw-catalog-card__details:hover,
.dw-home-showcase .dw-catalog-card__details:focus-visible {
  color: var(--dw-home-red);
}

.dw-home-showcase .dw-catalog-card__details:hover span,
.dw-home-showcase .dw-catalog-card__details:focus-visible span {
  transform: translateX(3px);
}

.dw-home-showcase a:focus-visible {
  outline: 2px solid var(--dw-home-red);
  outline-offset: 2px;
}

@keyframes dw-home-showcase-enter {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .dw-home-showcase .dw-catalog-card article:hover .dw-catalog-card__media {
    background: #d9d9d9;
  }

  .dw-home-showcase .dw-catalog-card article:hover .dw-catalog-card__image {
    transform: translate3d(0, calc(var(--dw-home-image-lift) - 3px), 0) scale(1.035);
  }
}

@media (max-width: 1024px) {
  .dw-home-showcase {
    --dw-home-image-lift: -18px;
  }

  .dw-home-showcase__layout {
    width: 100%;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 24px;
  }

  .dw-home-showcase__header {
    width: 100%;
  }

  .dw-home-showcase__tab {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 880px) {
  .dw-home-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dw-home-showcase {
    --dw-home-image-lift: -14px;
    padding: 56px 16px 68px;
  }

  .dw-home-showcase__header {
    margin-bottom: 30px;
  }

  .dw-home-showcase__header h2 {
    font-size: 32px;
  }

  .dw-home-showcase__description {
    margin-top: 10px;
    font-size: 13px;
  }

  .dw-home-showcase__layout {
    display: block;
  }

  .dw-home-showcase__nav {
    margin: 0 -16px 32px;
    padding: 8px 16px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .dw-home-showcase__nav::-webkit-scrollbar {
    display: none;
  }

  .dw-home-showcase__tabs {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 6px;
  }

  .dw-home-showcase__tab {
    min-height: 42px;
    padding: 10px 14px;
    flex: 0 0 auto;
    background: #f7f7f7;
    font-size: 12px;
    white-space: nowrap;
  }

  .dw-home-showcase__tab-arrow {
    display: none;
  }

  .dw-home-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 34px;
  }

  .dw-home-showcase .dw-catalog-card__media {
    aspect-ratio: 16 / 9;
    padding: 9px;
    border-radius: 6px;
  }

  .dw-home-showcase .dw-catalog-card__body {
    padding-top: 8px;
    column-gap: 5px;
  }

  .dw-home-showcase .dw-catalog-card__model,
  .dw-home-showcase .dw-catalog-card h4 {
    font-size: 11px;
  }

  .dw-home-showcase .dw-catalog-card h4 {
    min-height: 34px;
  }

  .dw-home-showcase .dw-catalog-card__details {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .dw-home-showcase__grid {
    column-gap: 12px;
  }

  .dw-home-showcase .dw-catalog-card__details {
    font-size: 0;
  }

  .dw-home-showcase .dw-catalog-card__details span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-home-showcase *,
  .dw-home-showcase *::before,
  .dw-home-showcase *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
