/* ── Root tokens ──────────────────────────────────────────────────── */
.dc-watch-page {
  --dc-watch-green: #0c1f10;
  --dc-watch-green-mid: #132a17;
  --dc-watch-green-card: #0f2313;
  --dc-watch-gold: #c9a84c;
  --dc-watch-gold-soft: rgba(201, 168, 76, 0.28);
  --dc-watch-gold-line: rgba(201, 168, 76, 0.5);
  --dc-watch-ink: #ede5d8;
  --dc-watch-muted: #b8b2a8;
  --dc-watch-serif: "Cinzel", "Georgia", serif;
  --dc-watch-sans: "Montserrat", "Inter", sans-serif;
  background: var(--dc-watch-green);
  color: var(--dc-watch-ink);
  font-family: var(--dc-watch-sans);
  margin: 0;
}

.dc-watch-page *,
.dc-watch-page *::before,
.dc-watch-page *::after {
  box-sizing: border-box;
}

/* ── Shared helpers ───────────────────────────────────────────────── */
.dc-watch-gold-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 10px;
  color: var(--dc-watch-gold);
  font-size: 1.1rem;
}

.dc-watch-gold-rule::before,
.dc-watch-gold-rule::after {
  content: "";
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: var(--dc-watch-gold-line);
}

/* ── 1. HERO ──────────────────────────────────────────────────────── */
.dc-watch-hero {
  position: relative;
  min-height: 517px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  /* background-image: url(/assets/img/furniture-bg-left.png); */
  background-repeat: no-repeat;
  background-color: #01120c;
  padding: 20px 0;
}

.dc-watch-hero__photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/watch/banner.jpg");
  z-index: 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

/* fallback gradient when image is absent */
.dc-watch-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 72% 44%,
    rgba(90, 70, 20, 0.18) 0%,
    transparent 65%
  );
}

.dc-watch-hero__left {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 12vw, 20px) clamp(24px, 5vw, 72px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-watch-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.dc-watch-hero__brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid var(--dc-watch-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dc-watch-serif);
  font-size: 1.6rem;
  color: var(--dc-watch-gold);
  flex-shrink: 0;
}

.dc-watch-hero__brand-text {
  line-height: 1.2;
}

.dc-watch-hero__brand-name {
  display: block;
  font-family: var(--dc-watch-serif);
  letter-spacing: 0.28em;
  font-size: clamp(0.75rem, 1.2vw, 1.1rem);
  color: var(--dc-watch-ink);
  text-transform: uppercase;
  font-weight: 600;
}

.dc-watch-hero__brand-sub {
  display: block;
  font-family: var(--dc-watch-serif);
  letter-spacing: 0.22em;
  font-size: clamp(0.6rem, 0.9vw, 0.82rem);
  color: var(--dc-watch-gold);
  text-transform: uppercase;
}

.dc-watch-hero__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.55rem, 0.75vw, 0.7rem);
  letter-spacing: 0.28em;
  color: var(--dc-watch-gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.dc-watch-hero__tagline span {
  opacity: 0.55;
}

.dc-watch-hero__heading {
  font-family: var(--dc-watch-serif);
  font-size: clamp(2.2rem, 3.5vw, 4.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dc-watch-gold);
  margin: 0 0 16px;
}

.dc-watch-hero__sub-heading {
  font-size: clamp(0.8rem, 1.2vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  margin: 0 0 24px;
  font-weight: 600;

  font-family: "Playfair Display", serif;
}

.dc-watch-hero__rule {
  width: 72px;
  height: 26px;
  /* background: var(--dc-watch-gold); */
  margin-bottom: 22px;
}

.dc-watch-hero__desc {
  max-width: 440px;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.75;
  color: var(--dc-watch-muted);
}

.dc-watch-hero__right {
  position: relative;
  z-index: 1;
  /* photo shows through here */
}

/* ── 2. FEATURES STRIP ────────────────────────────────────────────── */
.dc-watch-features {
  background: #01120b;
  padding: 0;
}

.dc-watch-features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1600px;
  margin: 0 auto;
}

.dc-watch-features__item {
  padding: 36px 20px 30px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.dc-watch-features__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--dc-watch-gold) 50%,
    transparent 100%
  );
}

.dc-watch-features__item:last-child::after {
  display: none;
}

.dc-watch-features__item:hover {
  background: rgba(201, 168, 76, 0.06);
}

.dc-watch-features__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s;
}

.dc-watch-features__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(1);
  transition:
    filter 0.3s,
    transform 0.3s;
}

.dc-watch-features__item:hover .dc-watch-features__icon img {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
  transform: scale(1.08);
}

.dc-watch-journey .dc-watch-features__icon {
  border: 1px solid var(--dc-watch-gold-line);
}

.dc-watch-journey .dc-watch-features__item:hover .dc-watch-features__icon {
  background: var(--dc-watch-gold);
  color: var(--dc-watch-green);
}

.dc-watch-features__title {
  font-family: var(--dc-watch-serif);
  font-size: clamp(0.6rem, 1vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  margin: 0 0 10px;
  font-weight: 600;
}

.dc-watch-features__desc {
  font-size: clamp(0.65rem, 0.9vw, 1rem);
  line-height: 1.65;
  color: var(--dc-watch-muted);
}

/* ── 2B. CURATED BRAND STRIP ─────────────────────────────────────── */
.dc-watch-brand-strip {
  background: #03140d;
  border-top: 1px solid var(--dc-watch-gold-line);
  border-bottom: 1px solid var(--dc-watch-gold-line);
  padding: 0;
}

.dc-watch-brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1600px;
  margin: 0 auto;
}

.dc-watch-brand-strip__panel {
  position: relative;
  min-height: 285px;
  padding: 22px 20px;
  border-right: 1px solid var(--dc-watch-gold-line);
  overflow: hidden;
}

.dc-watch-brand-strip__panel:last-child {
  border-right: none;
}

.dc-watch-brand-strip__copy-title {
  font-family: var(--dc-watch-serif);
  font-size: clamp(1.15rem, 1.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  margin: 0;
  /* max-width: 290px; */
}

.dc-watch-brand-strip__mini-rule {
  width: 44px;
  height: 2px;
  background: var(--dc-watch-gold);
  margin: 14px 0 14px;
}

.dc-watch-brand-strip__copy-text {
  max-width: 280px;
  font-size: clamp(0.82rem, 1vw, 1.16rem);
  line-height: 1.55;
  color: #e6ded0;
  margin: 0;
  margin-top: 30px;
}

.dc-watch-brand-strip__media {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  max-height: 92%;
  object-fit: contain;
  object-position: bottom right;
  filter: brightness(0.95);
}

.dc-watch-brand-strip__panel--left {
  /* background: radial-gradient(circle at 18% 8%, rgba(201, 168, 76, 0.16), rgba(3, 20, 13, 0.98) 46%), #03140d; */
  background-image: url(/assets/img/watch/watch1-bg.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-size: 55%;
  background-color: #000b07;
}

.dc-watch-brand-strip__panel--center {
  background: linear-gradient(180deg, #03140d 0%, #000f0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dc-watch-brand-strip__center-title {
  font-family: var(--dc-watch-serif);
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  margin: 0 0 24px;
  max-width: 430px;
}

.dc-watch-brand-strip__brands {
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.dc-watch-brand-strip__brand {
  font-family: var(--dc-watch-serif);
  font-size: clamp(0.95rem, 1.28vw, 1.7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f6f3ec;
  opacity: 0.95;
  line-height: 1.15;
}

.dc-watch-brand-strip__panel--right {
  /* background: radial-gradient(circle at 92% 75%, rgba(201, 168, 76, 0.16), rgba(3, 20, 13, 0.98) 52%), #03140d; */
  background-image: url(/assets/img/watch/crafted.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-size: 55%;
}

.dc-watch-brand-strip__panel--right .dc-watch-brand-strip__media {
  width: 65%;
  max-height: 76%;
  object-fit: cover;
  border-top-left-radius: 70px;
}

/* ── 3. JOURNEY ───────────────────────────────────────────────────── */
.dc-watch-journey {
  padding: clamp(21px, 2vw, 9px) clamp(20px, 5vw, 57px);

  margin: 0 auto;
  background-color: #010f0a;
}

.dc-watch-journey__label {
  text-align: center;
  font-size: clamp(0.6rem, 1vw, 1.5rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.dc-watch-journey__title {
  text-align: center;
  font-family: var(--dc-watch-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dc-watch-ink);
  margin: 0 0 52px;
}

.dc-watch-journey__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: start;
}

.dc-watch-step {
  text-align: center;
  padding: 20px 12px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  transition: background 0.3s;
}

.dc-watch-step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--dc-watch-gold) 50%,
    transparent 100%
  );
}

.dc-watch-step:last-child::after {
  display: none;
}

.dc-watch-step:hover {
  background: rgba(201, 168, 76, 0.06);
}

.dc-watch-step__icon-wrap {
  width: 70px;
  height: 70px;
  /* border: 1px solid var(--dc-watch-gold-line); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--dc-watch-gold);
  font-size: 1.4rem;

  position: relative;
  z-index: 1;
}

.dc-watch-step__icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  padding: 0 8px;
  position: relative;
  overflow: hidden;
}

.dc-watch-step__icon img {
  width: 100%;
  max-width: 180px;
  height: 170px;
  object-fit: contain;
  filter: brightness(0.92);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.dc-watch-step:hover .dc-watch-step__icon img {
  filter: brightness(1.05) drop-shadow(0 4px 14px rgba(201, 168, 76, 0.32));
  transform: scale(1.04);
}

.dc-watch-step__cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 8px);
  border: 1px solid var(--dc-watch-gold);
  background: rgba(1, 18, 12, 0.86);
  color: var(--dc-watch-gold);
  font-family: var(--dc-watch-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}

.dc-watch-step:hover .dc-watch-step__cta,
.dc-watch-step:focus-within .dc-watch-step__cta {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.dc-watch-step__cta:hover,
.dc-watch-step__cta:focus-visible {
  background: var(--dc-watch-gold);
  color: #0b1a11;
  outline: none;
}

.dc-watch-step__num {
  font-family: var(--dc-watch-serif);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--dc-watch-gold);
  margin-bottom: 6px;
}

.dc-watch-step__name {
  font-family: var(--dc-watch-serif);
  font-size: clamp(0.58rem, 0.86vw, 0.95rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  line-height: 1.35;
  margin-bottom: 0;
  font-weight: 600;
}

.dc-watch-step__desc {
  font-size: clamp(0.6rem, 0.78vw, 0.88rem);
  line-height: 1.6;
  color: var(--dc-watch-muted);
  margin: 6px 8px 0;
}

/* ── 4. QUOTE / GALLERY ───────────────────────────────────────────── */
.dc-watch-quote-section {
  border-top: 1px solid var(--dc-watch-gold-soft);
  border-bottom: 1px solid var(--dc-watch-gold-soft);
}

.dc-watch-quote-gallery {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 1fr;
  height: 340px;
  overflow: hidden;
}

.dc-watch-quote-gallery__img {
  overflow: hidden;
  background: var(--dc-watch-green-card);
}

.dc-watch-quote-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) sepia(0.15);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.dc-watch-quote-gallery__img:hover img {
  transform: scale(1.05);
  filter: brightness(0.85) sepia(0.1);
}

/* centre panel with quote */
.dc-watch-quote-gallery__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 28px;
  background: var(--dc-watch-green-mid);
  border-left: 1px solid var(--dc-watch-gold-soft);
  border-right: 1px solid var(--dc-watch-gold-soft);
}

.dc-watch-quote-gallery__center .dc-watch-gold-rule {
  width: 100%;
  margin-bottom: 18px;
}

.dc-watch-quote-gallery__quote {
  font-family: var(--dc-watch-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dc-watch-ink);
  line-height: 1.4;
  margin: 0 0 16px;
}

.dc-watch-quote-gallery__sub {
  font-size: clamp(0.65rem, 0.78vw, 0.72rem);
  letter-spacing: 0.08em;
  color: var(--dc-watch-muted);
  line-height: 1.7;
}

/* ── 5. BOTTOM BAR ────────────────────────────────────────────────── */
.dc-watch-bottom-bar {
  background: #000;

  padding: 24px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dc-watch-badges {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  padding: 20px clamp(16px, 3vw, 40px);
}

.dc-watch-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  padding: 10px clamp(8px, 1.1vw, 18px);
  /* border-right: 1px solid var(--dc-watch-gold-line); */
  min-width: 0;
}

.dc-watch-badge:last-child {
  border-right: none;
}

.dc-watch-badge i,
.dc-watch-badge [class^="sp-"] {
  color: var(--dc-watch-gold);
  font-size: 1.4rem;
}

.dc-watch-badge span:last-child {
  font-family: var(--dc-watch-serif);
  font-size: clamp(0.54rem, 0.85vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc-watch-gold);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.dc-watch-bottom-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.dc-watch-bottom-logo__mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-watch-bottom-logo__t {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dc-watch-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dc-watch-serif);
  font-size: 1.3rem;
  color: var(--dc-watch-gold);
}

.dc-watch-bottom-logo__text {
  line-height: 1.2;
}

.dc-watch-bottom-logo__name {
  font-family: var(--dc-watch-serif);
  letter-spacing: 0.22em;
  font-size: clamp(0.62rem, 0.88vw, 0.82rem);
  color: var(--dc-watch-ink);
  text-transform: uppercase;
  font-weight: 600;
}

.dc-watch-bottom-logo__sub {
  font-family: var(--dc-watch-serif);
  letter-spacing: 0.18em;
  font-size: clamp(0.52rem, 0.72vw, 0.66rem);
  color: var(--dc-watch-gold);
  text-transform: uppercase;
}

.dc-watch-bottom-logo__motto {
  font-size: clamp(0.5rem, 0.64vw, 0.6rem);
  letter-spacing: 0.18em;
  color: var(--dc-watch-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dc-watch-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dc-watch-hero__right {
    display: none;
  }

  .dc-watch-hero__photo {
    /* background: linear-gradient(to bottom, rgba(12, 31, 16, 0.92) 0%, rgba(12, 31, 16, 0.65) 100%),
        url("assets/img/properties/design-bg.jpg") center / cover no-repeat; */
  }

  .dc-watch-hero__left {
    padding: clamp(20px, 14vw, 20px) clamp(20px, 5vw, 60px) 56px;
  }

  .dc-watch-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dc-watch-features__item:nth-child(3) {
    border-right: none;
  }

  .dc-watch-features__item:nth-child(4),
  .dc-watch-features__item:nth-child(5) {
    border-top: 1px solid var(--dc-watch-gold-soft);
  }

  .dc-watch-features__item:nth-child(5) {
    border-right: none;
  }

  .dc-watch-brand-strip__grid {
    grid-template-columns: 1fr;
  }

  .dc-watch-brand-strip__panel {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--dc-watch-gold-line);
  }

  .dc-watch-brand-strip__panel:last-child {
    border-bottom: none;
  }

  .dc-watch-brand-strip__panel--left,
  .dc-watch-brand-strip__panel--right {
    padding-right: 44%;
  }

  .dc-watch-brand-strip__media {
    width: 40%;
  }

  .dc-watch-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-watch-badge:nth-child(2) {
    border-right: none;
  }

  .dc-watch-badge:nth-child(1),
  .dc-watch-badge:nth-child(2) {
    border-bottom: 1px solid var(--dc-watch-gold-line);
    padding-bottom: 14px;
  }

  .dc-watch-journey__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .dc-watch-step:nth-child(3)::after,
  .dc-watch-step:nth-child(6)::after {
    display: none;
  }

  .dc-watch-step:nth-child(4),
  .dc-watch-step:nth-child(5),
  .dc-watch-step:nth-child(6) {
    border-top: 1px solid var(--dc-watch-gold-soft);
    padding-top: 28px;
    margin-top: 8px;
  }

  .dc-watch-quote-gallery {
    grid-template-columns: 1fr 1.4fr 1fr;
    height: 300px;
  }

  .dc-watch-quote-gallery__img:last-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .dc-watch-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dc-watch-features__item:nth-child(2),
  .dc-watch-features__item:nth-child(4) {
    border-right: none;
  }

  .dc-watch-features__item:nth-child(3),
  .dc-watch-features__item:nth-child(4),
  .dc-watch-features__item:nth-child(5) {
    border-top: 1px solid var(--dc-watch-gold-soft);
  }

  .dc-watch-features__item:nth-child(5) {
    grid-column: span 2;
    border-right: none;
  }

  .dc-watch-brand-strip__panel {
    min-height: auto;
    padding: 24px 16px;
  }

  .dc-watch-brand-strip__panel--left,
  .dc-watch-brand-strip__panel--right {
    padding-right: 16px;
  }

  .dc-watch-brand-strip__media {
    position: static;
    width: 100%;
    max-width: 240px;
    max-height: none;
    display: block;
    margin: 18px auto 0;
  }

  .dc-watch-brand-strip__panel--right .dc-watch-brand-strip__media {
    border-top-left-radius: 40px;
  }

  .dc-watch-brand-strip__brands {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dc-watch-journey__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .dc-watch-step::after {
    display: none !important;
  }

  .dc-watch-step:nth-child(3),
  .dc-watch-step:nth-child(4),
  .dc-watch-step:nth-child(5),
  .dc-watch-step:nth-child(6) {
    border-top: 1px solid var(--dc-watch-gold-soft);
    padding-top: 20px;
    margin-top: 0;
  }

  .dc-watch-quote-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dc-watch-quote-gallery__img {
    height: 160px;
  }

  .dc-watch-quote-gallery__img:last-child {
    display: block;
  }

  .dc-watch-quote-gallery__center {
    padding: 28px 20px;
  }

  .dc-watch-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dc-watch-badges {
    grid-template-columns: 1fr;
  }

  .dc-watch-badge {
    border-right: none;
    border-bottom: 1px solid var(--dc-watch-gold-line);
    justify-content: flex-start;
    padding: 12px 6px;
  }

  .dc-watch-badge:last-child {
    border-bottom: none;
  }

  .dc-watch-bottom-logo {
    align-items: center;
  }

  .dc-watch-bottom-logo__motto {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-watch-quote-gallery__img img {
    transition: none;
  }

  .dc-watch-features__item,
  .dc-watch-features__icon {
    transition: none;
  }
}

/*  */
