.marble-news-gallery {
  margin: 48px 0 32px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      #073f68 0%,
      #075883 52%,
      #0a83b5 100%
    );
  color: #fff;
  box-shadow:
    0 18px 48px
    rgba(0, 48, 82, .14);
}

.marble-news-gallery__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.marble-news-gallery__eyebrow {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
  opacity: .72;
}

.marble-news-gallery__title {
  font-size: clamp(
    22px,
    3vw,
    32px
  );
  font-weight: 700;
  line-height: 1.15;
}

.marble-news-gallery__top-counter {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid
    rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  background:
    rgba(255, 255, 255, .08);
}

.marble-news-gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    rgba(255, 255, 255, .08);
}

.marble-news-gallery__track {
  display: flex;
  transition:
    transform 280ms ease;
  will-change: transform;
}

.marble-news-gallery__slide {
  display: flex;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 320px;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.marble-news-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
}

.marble-news-gallery__caption {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(
    255,
    255,
    255,
    .82
  );
}

.marble-news-gallery__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform:
    translateY(-50%);
  place-items: center;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  color: #0b456b;
  background:
    rgba(255, 255, 255, .94);
  box-shadow:
    0 5px 20px
    rgba(0, 0, 0, .18);
}

.marble-news-gallery__button--prev {
  left: 16px;
}

.marble-news-gallery__button--next {
  right: 16px;
}

.marble-news-gallery__button:hover {
  background: #fff;
}

.marble-news-gallery__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.marble-news-gallery__footer {
  display: grid;
  grid-template-columns:
    auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.marble-news-gallery__counter {
  min-width: 46px;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric:
    tabular-nums;
  white-space: nowrap;
  color:
    rgba(
      255,
      255,
      255,
      .84
    );
}

.marble-news-gallery__thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding:
    2px 2px 6px;
  scrollbar-width: thin;
}

.marble-news-gallery__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border: 2px solid
    transparent;
  border-radius: 9px;
  background:
    rgba(255, 255, 255, .08);
  cursor: pointer;
  opacity: .65;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.marble-news-gallery__thumb:hover {
  opacity: 1;
}

.marble-news-gallery__thumb[
  aria-current="true"
] {
  border-color: #fff;
  opacity: 1;
  transform:
    translateY(-1px);
}

.marble-news-gallery__thumb:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.marble-news-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marble-news-gallery--single
.marble-news-gallery__footer,
.marble-news-gallery--single
.marble-news-gallery__button {
  display: none;
}

@media (
  max-width: 720px
) {
  .marble-news-gallery {
    margin:
      36px 0 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .marble-news-gallery__heading {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .marble-news-gallery__top-counter {
    margin-top: 2px;
  }

  .marble-news-gallery__viewport {
    border-radius: 12px;
  }

  .marble-news-gallery__slide {
    min-height: 220px;
  }

  .marble-news-gallery__button {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .marble-news-gallery__button--prev {
    left: 8px;
  }

  .marble-news-gallery__button--next {
    right: 8px;
  }

  .marble-news-gallery__footer {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .marble-news-gallery__counter {
    order: 2;
  }

  .marble-news-gallery__thumbs {
    order: 1;
  }

  .marble-news-gallery__thumb {
    width: 64px;
    height: 46px;
  }
}

@media (
  max-width: 460px
) {
  .marble-news-gallery {
    padding: 14px;
  }

  .marble-news-gallery__title {
    font-size: 21px;
  }

  .marble-news-gallery__top-counter {
    display: none;
  }

  .marble-news-gallery__slide {
    min-height: 180px;
  }
}

@media (
  prefers-reduced-motion: reduce
) {
  .marble-news-gallery__track,
  .marble-news-gallery__thumb {
    transition: none;
  }
}


/* BR042_7_4B_GALLERY_VISUAL_POLISH */

.marble-news-gallery__eyebrow {
  color: #70c9ff;
  opacity: 1;
}

.marble-news-gallery__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top:
    1px solid
    rgba(255, 255, 255, .16);
}

.marble-news-gallery__thumbs {
  min-width: 0;
  padding:
    4px 4px 8px;
  gap: 10px;
}

.marble-news-gallery__thumb {
  width: 92px;
  height: 66px;
  box-sizing: border-box;
  padding: 4px;
  border:
    2px solid
    rgba(255, 255, 255, .14);
  border-radius: 10px;
  background:
    rgba(3, 37, 64, .32);
  opacity: .78;
}

.marble-news-gallery__thumb:hover {
  border-color:
    rgba(255, 255, 255, .44);
  background:
    rgba(3, 37, 64, .46);
  opacity: 1;
}

.marble-news-gallery__thumb[
  aria-current="true"
] {
  border-color: #fff;
  background:
    rgba(255, 255, 255, .12);
  opacity: 1;
  transform: none;
}

.marble-news-gallery__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  background:
    rgba(0, 20, 38, .28);
}

@media (
  max-width: 720px
) {
  .marble-news-gallery__footer {
    padding-top: 14px;
  }

  .marble-news-gallery__thumb {
    width: 82px;
    height: 60px;
  }
}

@media (
  max-width: 460px
) {
  .marble-news-gallery__thumb {
    width: 74px;
    height: 54px;
  }
}


/* BR042_7_4C_THUMBNAIL_GEOMETRY_FIX */

.marble-news-gallery__footer {
  grid-template-columns:
    42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.marble-news-gallery__counter {
  min-width: 0;
  align-self: center;
}

.marble-news-gallery__thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 86px;
  padding: 6px 4px 8px;
}

.marble-news-gallery__thumb {
  display: flex;
  flex:
    0 0 112px;
  width: 112px;
  height: 78px;
  min-width: 112px;
  min-height: 78px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  border:
    2px solid
    rgba(255, 255, 255, .20);
  border-radius: 11px;
  background:
    rgba(3, 37, 64, .38);
}

.marble-news-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
}

.marble-news-gallery__thumb[
  aria-current="true"
] {
  border-color: #fff;
  box-shadow:
    0 0 0 1px
    rgba(255, 255, 255, .18);
}

@media (
  max-width: 720px
) {
  .marble-news-gallery__footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .marble-news-gallery__thumbs {
    min-height: 76px;
  }

  .marble-news-gallery__thumb {
    flex-basis: 98px;
    width: 98px;
    min-width: 98px;
    height: 68px;
    min-height: 68px;
  }
}

@media (
  max-width: 460px
) {
  .marble-news-gallery__thumbs {
    min-height: 68px;
  }

  .marble-news-gallery__thumb {
    flex-basis: 88px;
    width: 88px;
    min-width: 88px;
    height: 62px;
    min-height: 62px;
  }
}
