.field-showcase {
  padding: 52px 40px 48px;
  background: #ffffff;
}

.field-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.field-showcase-tag {
  margin-bottom: 7px;
  color: #1260b4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-showcase-title {
  color: #172033;
  font-size: 36px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.3;
  word-break: keep-all;
}

.field-showcase-desc {
  color: #647084;
  font-size: 15px;
  line-height: 1.78;
}

.field-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #0d2442;
  box-shadow: 0 18px 38px rgba(13, 36, 66, 0.16);
  outline: none;
}

.field-carousel:focus-visible {
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px #1260b4, 0 18px 38px rgba(13, 36, 66, 0.16);
}

.field-carousel-viewport {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  touch-action: pan-y;
}

.field-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 760ms cubic-bezier(0.22, 0.72, 0.18, 1);
  will-change: transform;
}

.field-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #173250;
}

.field-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0.02) 46%, rgba(7, 23, 44, 0.84) 100%);
  pointer-events: none;
}

.field-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, center);
  transform: scale(1.012);
}

.field-slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  max-width: min(58%, 520px);
  color: #ffffff;
}

.field-slide figcaption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.field-slide figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.field-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 28, 56, 0.56);
  color: #ffffff;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.field-carousel-button:hover,
.field-carousel-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(8, 52, 119, 0.88);
  outline: none;
}

.field-carousel-button:active {
  transform: translateY(-50%) scale(0.95);
}

.field-carousel-prev { left: 16px; }
.field-carousel-next { right: 16px; }

.field-carousel-footer {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-carousel-counter {
  min-width: 54px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.field-carousel-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 28, 56, 0.56);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.field-carousel-pause:hover,
.field-carousel-pause:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(8, 52, 119, 0.88);
  outline: none;
}

.field-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.field-carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.field-carousel-dot[aria-current="true"] {
  width: 24px;
  border-radius: 999px;
  background: #ffffff;
}

.field-carousel-dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 212, 255, 0.75);
  outline: none;
}

@media (max-width: 920px) {
  .field-showcase { padding: 42px 24px; }
  .field-showcase-head { grid-template-columns: 1fr; gap: 12px; }
  .field-carousel-viewport { aspect-ratio: 16 / 9; }
}

@media (max-width: 620px) {
  .field-showcase { padding: 36px 18px 38px; }
  .field-showcase-head { margin-bottom: 20px; }
  .field-showcase-title { font-size: 28px; }
  .field-showcase-desc { font-size: 14px; }
  .field-carousel { border-radius: 6px; box-shadow: 0 12px 28px rgba(13, 36, 66, 0.14); }
  .field-carousel-viewport { aspect-ratio: 4 / 3; }
  .field-slide figcaption { left: 18px; right: 18px; bottom: 58px; max-width: none; }
  .field-slide figcaption strong { font-size: 19px; }
  .field-slide figcaption span { font-size: 12px; }
  .field-carousel-button { width: 38px; height: 38px; font-size: 26px; }
  .field-carousel-prev { left: 10px; }
  .field-carousel-next { right: 10px; }
  .field-carousel-footer { right: 14px; bottom: 14px; }
  .field-carousel-dots { left: 16px; bottom: 26px; transform: none; }
  .field-carousel-counter { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .field-carousel-track { transition: none; }
}
