.dw-page-shell .dw-current-focus {
  position: relative;
  z-index: 6;
  padding: 0 0 26px;
}

.dw-page-shell .dw-current-focus__header {
  margin-bottom: 22px;
}

.dw-page-shell .dw-current-focus__eyebrow {
  margin: 0 0 10px;
  color: var(--dw-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dw-page-shell .dw-current-focus__header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--dw-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: .94;
  text-transform: uppercase;
}

.dw-page-shell .dw-current-focus__header p {
  margin: 10px 0 0;
  color: var(--dw-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dw-page-shell .dw-current-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dw-page-shell .dw-current-focus__grid.is-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}

.dw-page-shell .dw-current-focus__grid.is-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

.dw-page-shell .dw-current-focus__grid.is-count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 380px;
  margin: 0 auto;
}

.dw-page-shell .dw-current-focus__rail {
  position: relative;
}

.dw-page-shell .dw-current-focus__item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
  min-height: 420px;
  border-radius: var(--dw-radius-md);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(150deg, rgba(14,13,22,.88), rgba(7,7,12,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.dw-page-shell .dw-current-focus__media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: calc(var(--dw-radius-md) - 1px) calc(var(--dw-radius-md) - 1px) 0 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(146,39,142,.26), transparent 44%),
    linear-gradient(180deg, rgba(10,9,16,.48), rgba(10,9,16,.86));
}

.dw-page-shell .dw-current-focus__item--green .dw-current-focus__media {
  background:
    radial-gradient(circle at 50% 42%, rgba(50,185,40,.22), transparent 44%),
    linear-gradient(180deg, rgba(10,9,16,.48), rgba(10,9,16,.86));
}

.dw-page-shell .dw-current-focus__media::before {
  content: "";
  position: absolute;
  inset: -16% -10% auto auto;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,39,142,.22), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.dw-page-shell .dw-current-focus__item--green .dw-current-focus__media::before {
  background: radial-gradient(circle, rgba(50,185,40,.18), transparent 72%);
}

.dw-page-shell .dw-current-focus__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dw-page-shell .dw-current-focus__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
}

.dw-page-shell .dw-current-focus__pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.10);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dw-page-shell .dw-current-focus__pill--green {
  background: rgba(50,185,40,.22);
}

.dw-page-shell .dw-current-focus__pill--purple {
  background: rgba(146,39,142,.26);
}

.dw-page-shell .dw-current-focus__body h3 {
  margin: 0;
  color: #fff;
  font-family: var(--dw-font);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
}

.dw-page-shell .dw-current-focus__body p {
  margin: 0;
  color: #dcd6e8;
  font-size: 15px;
  line-height: 1.62;
}

.dw-page-shell .dw-current-focus__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--dw-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dw-page-shell .dw-current-focus__item--purple .dw-current-focus__link {
  color: var(--dw-purple-soft);
}

@media (max-width: 1180px) {
  .dw-page-shell .dw-current-focus__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .dw-page-shell .dw-current-focus__rail {
    overflow: hidden;
  }

  .dw-page-shell .dw-current-focus__grid {
    display: flex !important;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 54px 8px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pinch-zoom;
  }

  .dw-page-shell .dw-current-focus__grid::-webkit-scrollbar {
    display: none;
  }

  .dw-page-shell .dw-current-focus__item {
    flex: 0 0 clamp(156px, 44vw, 182px);
    width: clamp(156px, 44vw, 182px);
    min-width: 0;
    height: 304px;
    min-height: 304px;
    max-height: 304px;
    grid-template-rows: 152px minmax(0, 1fr);
    scroll-snap-align: start;
  }

  .dw-page-shell .dw-current-focus__media {
    min-height: 152px;
    height: 152px;
    max-height: 152px;
  }

  .dw-page-shell .dw-current-focus__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: cover;
  }

  .dw-page-shell .dw-current-focus__body {
    min-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 14px 14px 16px;
  }

  .dw-page-shell .dw-current-focus__body h3 {
    font-size: 18px;
    line-height: 1.14;
  }

  .dw-page-shell .dw-current-focus__body p {
    font-size: 13px;
    line-height: 1.5;
  }

  .dw-page-shell .dw-current-focus__swipe-hint {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 8px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding-right: 4px;
    background: linear-gradient(90deg, rgba(8,8,12,0), rgba(8,8,12,.82) 56%, rgba(8,8,12,.96));
    pointer-events: none;
  }

  .dw-page-shell .dw-current-focus__swipe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
    pointer-events: auto;
    cursor: pointer;
    padding: 0;
  }

  .dw-page-shell .dw-current-focus__swipe-button.is-prev {
    display: none;
  }
}

@media (max-width: 430px) {
  .dw-page-shell .dw-current-focus__item {
    flex-basis: clamp(148px, 43vw, 170px);
    width: clamp(148px, 43vw, 170px);
    height: 292px;
    min-height: 292px;
    max-height: 292px;
    grid-template-rows: 146px minmax(0, 1fr);
  }

  .dw-page-shell .dw-current-focus__media {
    min-height: 146px;
    height: 146px;
    max-height: 146px;
  }

  .dw-page-shell .dw-current-focus__body h3 {
    font-size: 17px;
  }

  .dw-page-shell .dw-current-focus__body p {
    font-size: 12px;
    line-height: 1.45;
  }
}
