/* =============================================================================================================================
SPLIT LAYOUT (Reusable two-column layout) https://www.royalcaribbean.com/content/dam/royal/tk3-skeleton/css/tk3-skeleton.css
============================================================================================================================== */

.split-section {
  background: #ffffff;
  padding: 2rem 1rem;
}

.split-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two columns with vertical divider */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

/* Column alignment */
.split-col {
  display: grid;
  /* place-items: center; */
  text-align: center;
  padding: clamp(12px, 2vw, 24px) 0;
  min-width: 0;
}

/* Divider between columns */
.split-divider {
  background: rgba(0, 0, 0, 0.15);
  align-self: stretch;
  border-radius: 2px;
}

/* =============================================================================================================================
SPLIT VERSION A: EVEN DISTRIBUTION STACK
============================================================================================================================== */

.split-stack {
  width: min(520px, 100%);
  min-height: clamp(260px, 30vw, 360px);

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

/* .split-item {
  max-width: 44ch;
} */

/* =============================================================================================================================
SPLIT VERSION B: CONTENT BLOCK
============================================================================================================================== */

.split-content {
  width: min(520px, 100%);
}

/* =============================================================================================================================
CARD OFFER (Credit card comparison layout)
============================================================================================================================== */

.split-section--cards {
  background: #fff;
  padding: clamp(40px, 5vw, 80px) 20px;
}

.split-section--cards .split-grid {
  align-items: stretch;
}

.card-offer {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-offer__img {
  width: min(360px, 78%);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* Card pill label */
.card-offer__pill {
  display: flex;
  height: 2rem;
  padding: var(--spacing-1) var(--spacing-3);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-1);

  border-radius: var(--border-radius-xxl);
  background: var(--palette-white-0);
}

/* =============================================================================================================================
UTILITY STYLES
============================================================================================================================== */
.atlwdg-trigger {
    display: none;
}

site-refresh-pill {
  margin: 11px;
}
.open-html-no-padding div div .openhtml {
  padding: 0 !important;
}

.container-shadow {
  box-shadow: 0 10px 10px 0 rgba(2, 29, 73, 0.2);
  border-radius: 24px;
  overflow: hidden;
}

.text-background-visa {
  /* background: var(--Gradient-Dark-Horizontal-Dark-Horizontal-5, linear-gradient(70deg, var(--palette-accent-primary-base) 14.68%, var(--palette-brand-primary-shade) 86.84%)); */
  display: block;
  background: linear-gradient(70deg, var(--palette-accent-primary-base) 14.68%, var(--palette-brand-primary-shade) 86.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-background-visa-2 {
  display: block;
  /* background: var(--Gradient-Dark-Horizontal-Dark-Horizontal-7, linear-gradient(90deg, var(--palette-accent-primary-base) 0%, var(--palette-accent-secondary-shade) 100%)); */
  background: linear-gradient(90deg, var(--palette-accent-primary-base) 0%, var(--palette-accent-secondary-shade) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.media-player__video {
  border-radius: 1rem;
}

/* =============================================================================================================================
HERO HEADER
Two-column hero layout with card image
============================================================================================================================== */

.hero-split {
  width: 100%;
}

.hero-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 40px;
  margin: 0 auto;
}

.hero-split__copy {
  min-width: 0;
}

.cta-buttons {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 16px;
}

.hero-split__media {
  position: relative;
  display: grid;
  place-items: center;
}

/* Card shadow illusion */
.hero-split__media.bottom-shadow::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;

  width: 19.6rem;
  height: 2.4rem;

  background: #000;
  opacity: 0.45;

  border-radius: 40%;
  filter: blur(16px);

  z-index: 0;
}

.hero-split__img {
  position: relative;
  z-index: 1;

  display: block;
  width: min(520px, 85%);
  height: auto;
}

.hero-split__cardholder {
  margin-top: 16px;
}

.hero-split__disclaimer {
  margin-top: 8px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .hero-split__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* .hero-split__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  } */

  .hero-split__copy.hero-split__copy__centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-split__media {
    order: -1;
  }

  .card-offer__img {
    width: min(320px, 90%);
  }
}

/* =============================================================================================================================
FEATURES LAYOUT
Responsive feature list supporting any number of items.
Last row automatically centers when items wrap.
============================================================================================================================== */

.features-wrap {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
}

.feature {
  /* flex: 1 1 240px; */
  max-width: 260px;

  text-align: center;
  display: flex;
  flex-direction: column;
}

.feature__icon {
  display: block;
  margin-bottom: 1rem;
}

.feature__icon img {
  max-width: 106px;
}

.feature__icon img.normalize-icon-size {
  height: 5rem;
}

/* Center items when screen < 1280px */
@media (max-width: 1279px) {
  .features-wrap {
    justify-content: center;
  }
}

/* =============================================================================================================================
BONUS BANNER(CELEBRITY)
============================================================================================================================== */



.bonus-banner {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 0.8vw, 0.625rem);
  color: #ffffff;
  white-space: nowrap;
}

/* =========================
   BIG NUMBERS (45,000 / 450)
   ========================= */
.bonus-banner__big {
  color: #00a2f9;
  text-align: center;
  font-family: var(--font-family-content);
  font-size: clamp(2.5rem, 4.5vw, 3.94269rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.12rem; /* safer default for responsiveness */
}

/* Specific tracking for 450 */
.bonus-banner__big--money {
  letter-spacing: -0.04988rem;
}

/* Restore tighter tracking on large screens */
@media (min-width: 1024px) {
  .bonus-banner__big {
    letter-spacing: -0.29913rem;
  }
}

/* =========================
   TEXT (BONUS / CRUISE)
   ========================= */
.bonus-banner__text {
  color: #fff;
  font-feature-settings: 'case' on;
  font-family: var(--font-family-content);
  font-size: clamp(0.8rem, 1.5vw, 1.59519rem);
  font-style: normal;
  font-weight: 600;
  line-height: clamp(0.95rem, 1.2vw, 1.39575rem);
  letter-spacing: -0.05981rem;
}

/* =========================
   EQUAL SIGN
   ========================= */
.bonus-banner__equal {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
}

/* =========================
   MONEY WRAPPER
   ========================= */
.bonus-banner__money {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
}

/* =========================
   DOLLAR SYMBOL ($)
   ========================= */
.bonus-banner__currency {
  color: #00a2f9;
  font-family: var(--font-family-content);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1;

  /* pixel-perfect alignment */
  position: relative;
  top: clamp(1px, 0.3vw, 4px);
  left: clamp(1px, 0.3vw, 4px);
}

/* =========================
   EXTRA SMALL SAFETY (optional)
   ========================= */
@media (max-width: 480px) {
  .bonus-banner {
    gap: 0.25rem;
  }
}

.button.rcl-button--booking__dark{
  border-radius: 0;
}
