.break-showcase {
  width: 100%;
  min-height: min(50.4vh, 476px);
}

.break-showcase-card {
  position: relative;
  min-height: inherit;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 36px;
  padding: 0;
  background: #111827;
  cursor: pointer;
  box-shadow:
    0 32px 60px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.break-showcase-card:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.92);
  outline-offset: 4px;
}

.break-showcase-card.is-changing .break-showcase-image {
  opacity: 0.78;
  transform: scale(1.02);
}

.break-showcase-media,
.break-showcase-image,
.break-showcase-overlay {
  position: absolute;
  inset: 0;
}

.break-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 220ms ease,
    transform 680ms ease,
    filter 680ms ease;
}

.break-showcase-card:hover .break-showcase-image {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.break-showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.18) 42%, rgba(15, 23, 42, 0.72) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.38));
}

.break-showcase-copy {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 22px);
  max-width: min(1100px, 94%);
  color: #f8fafc;
}

.break-showcase-title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.break-showcase-description {
  margin: 0;
  padding-top: clamp(8px, 1.3vw, 14px);
  white-space: nowrap;
  font-size: clamp(14px, 1.2vw, 22px);
  line-height: 1.2;
  color: rgba(241, 245, 249, 0.9);
  text-shadow: 0 3px 12px rgba(15, 23, 42, 0.26);
}

.break-showcase-toolbar {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
}

.break-showcase-bottom {
  position: absolute;
  left: clamp(16px, 2.4vw, 26px);
  right: 6px;
  bottom: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.break-showcase-note {
  margin: 0;
  max-width: min(62%, 560px);
  font-size: clamp(10px, 0.75vw, 12px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(226, 232, 240, 0.88);
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.45);
}

.break-showcase-nav-button,
.break-showcase-dot {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.break-showcase-nav-button {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-size: 14px;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
  pointer-events: auto;
}

.break-showcase-nav-button:hover:not(:disabled),
.break-showcase-nav-button:focus-visible:not(:disabled) {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.break-showcase-nav-button:disabled {
  cursor: default;
  opacity: 0.48;
}

.break-showcase-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
}

.break-showcase-dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition:
    width 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.break-showcase-dot:hover,
.break-showcase-dot:focus-visible {
  opacity: 1;
  outline: none;
}

.break-showcase-dot.is-active {
  width: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.break-showcase-empty {
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: 32px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 245, 249, 0.82)),
    radial-gradient(circle at top, rgba(251, 191, 36, 0.2), rgba(255, 255, 255, 0) 50%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.break-showcase-empty-content {
  max-width: 420px;
  display: grid;
  gap: 10px;
  text-align: center;
  color: #334155;
}

.break-showcase-empty h3,
.break-showcase-empty p {
  margin: 0;
}

@media (max-width: 960px) {
  .break-showcase {
    min-height: 39.2vh;
  }

  .break-showcase-copy {
    display: grid;
    max-width: 100%;
  }

  .break-showcase-description {
    padding-top: 0;
    white-space: normal;
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.35;
  }
}

@media (max-width: 680px) {
  .break-showcase {
    min-height: 294px;
  }

  .break-showcase-card,
  .break-showcase-empty {
    border-radius: 28px;
  }

  .break-showcase-overlay {
    padding: 20px;
  }

  .break-showcase-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .break-showcase-description {
    white-space: normal;
  }

  .break-showcase-toolbar {
    gap: 4px;
    padding: 4px 5px;
  }

  .break-showcase-nav-button {
    width: 21px;
    height: 21px;
    font-size: 14px;
  }

  .break-showcase-bottom {
    left: 10px;
    right: 4px;
    bottom: 6px;
  }

  .break-showcase-note {
    max-width: 54%;
    font-size: 10px;
  }
}
