/* ===== FDWC ISOLATED HIGHLIGHTS ===== */

#fdwc-hi-isolated {
  padding: 40px 0;
}

#fdwc-hi-isolated .fdwc-hi-frame {
  width: 900px;
  max-width: 90vw;
  height: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 14px;
  border: 2px solid #c9a24d;
}

#fdwc-hi-isolated .fdwc-hi-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.fdwc-highlights-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.fdwc-highlights-logo {
  width: 90px;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fdwc-highlights-row.in-view .fdwc-highlights-logo {
  opacity: 1;
  transform: translateX(0);
}

.fdwc-highlights-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 18px;
}
