/* Auctions page header */
.auctions-header {
  position: relative;
  display: flex;
  align-items: end;
  padding: 24rem 7.5rem 2.5rem 7.5rem;
  background-color: var(--primary-black);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.auctions-header__content {
  width: min(100%, 1200px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auctions-header__title,
.auctions-header__subtitle {
  max-width: 60rem;
}

@media (max-width: 1000px) {
  .auctions-header {
    min-height: 20rem;
    padding: 16rem 1.5rem 3rem 1.5rem;
  }

  .auctions-header::before {
    background: rgba(20, 20, 20, 0.58);
  }
}

/* Auctions info section */
.auctions-info-sec {
  padding: 7.5rem;
  background-color: var(--primary-black);
  background-size: cover;
}

.section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-image,
.section-content {
  min-width: 0;
}

.section-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-title {
  margin-bottom: 1rem;
}

@media (max-width: 1000px) {
  .auctions-info-sec {
    padding: 6rem 2rem;
  }

  .section-container {
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .section-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .section-image,
  .section-content {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .auctions-info-sec {
    padding: 3rem 1.5rem;
  }
}
