.auction-belt-v18 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(240, 226, 195, 0.42);
  border-bottom: 1px solid rgba(240, 226, 195, 0.42);
  background:
    linear-gradient(90deg, rgba(0, 34, 27, 0.98), rgba(8, 67, 53, 0.98)),
    #003d30;
  box-shadow: 0 12px 30px rgba(12, 34, 27, 0.16);
}

.auction-belt-v18::before,
.auction-belt-v18::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  content: "";
  pointer-events: none;
}

.auction-belt-v18::before {
  left: 0;
  background: linear-gradient(110deg, rgba(145, 31, 49, 0.88), transparent 76%);
}

.auction-belt-v18::after {
  right: 0;
  background: linear-gradient(290deg, rgba(145, 31, 49, 0.72), transparent 76%);
}

.auction-belt-v18__link {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #f6edda;
  text-decoration: none;
}

.auction-belt-v18__logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(246, 237, 218, 0.72);
  border-radius: 50%;
  background: #f6edda;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.auction-belt-v18__logo img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.auction-belt-v18__copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
}

.auction-belt-v18__title {
  color: #f6edda;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.1;
  white-space: nowrap;
}

.auction-belt-v18__separator {
  width: 1px;
  height: 30px;
  flex: 0 0 1px;
  background: rgba(246, 237, 218, 0.42);
}

.auction-belt-v18__copy strong {
  color: #fff8e8;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.auction-belt-v18__action {
  padding: 9px 16px;
  border: 1px solid rgba(246, 237, 218, 0.65);
  border-radius: 999px;
  color: #f6edda;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.auction-belt-v18__link:hover .auction-belt-v18__action,
.auction-belt-v18__link:focus-visible .auction-belt-v18__action {
  background: #f6edda;
  color: #003d30;
  transform: translateX(3px);
}

.auction-belt-v18__link:focus-visible {
  outline: 3px solid #f6edda;
  outline-offset: -3px;
}

@media (max-width: 760px) {
  .auction-belt-v18__link {
    width: min(100% - 28px, 680px);
    min-height: 78px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .auction-belt-v18__logo {
    width: 48px;
    height: 48px;
  }

  .auction-belt-v18__logo img {
    width: 40px;
    height: 40px;
  }

  .auction-belt-v18__copy {
    display: grid;
    gap: 3px;
  }

  .auction-belt-v18__title {
    font-size: 1.18rem;
    white-space: normal;
  }

  .auction-belt-v18__separator,
  .auction-belt-v18__action {
    display: none;
  }

  .auction-belt-v18__copy strong {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auction-belt-v18__action {
    transition: none;
  }
}
