/* ===== CollectionTile — image tile with centred overlay copy ===== */
.cc_pSmp65GtZr_8EqaQGlE1V .ctile {
  width: 100%;
  height: 100%;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__media {
  position: relative;
  width: 100%;
  /* Shorter tiles — keep the 2-up grid but free up vertical space */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-alt);
}

@media (min-width: 768px) {
  .cc_pSmp65GtZr_8EqaQGlE1V .ctile__media {
    aspect-ratio: 5 / 4;
  }
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__img--empty {
  background: var(--color-surface-2);
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__link:hover .ctile__img {
  transform: scale(1.05);
}

/* Readability scrim — gradient bottom-up, deepens on hover */
.cc_pSmp65GtZr_8EqaQGlE1V .ctile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 28, 28, 0.55) 0%,
    rgba(26, 28, 28, 0.12) 45%,
    rgba(26, 28, 28, 0) 75%
  );
  transition: opacity 300ms ease;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__link:hover .ctile__scrim {
  opacity: 0.85;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.92;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding-bottom: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__link:hover .ctile__cta, .cc_pSmp65GtZr_8EqaQGlE1V .ctile__link:focus-visible .ctile__cta {
  opacity: 1;
  transform: translateY(0);
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__cta svg {
  display: block;
}

.cc_pSmp65GtZr_8EqaQGlE1V .ctile__link:focus-visible {
  outline: 2px solid var(--color-on-primary);
  outline-offset: -4px;
}

@media (hover: none) {
  .cc_pSmp65GtZr_8EqaQGlE1V .ctile__cta {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_8EqaQGlE1V .ctile__img, .cc_pSmp65GtZr_8EqaQGlE1V .ctile__scrim, .cc_pSmp65GtZr_8EqaQGlE1V .ctile__cta {
    transition: none;
  }
}
