/* Fillers brand catalogue */

.filler-catalog {
  background: var(--paper);
}

.filler-brand {
  padding: 96px 0;
  background: #f8f3ea;
}

.filler-brand:nth-child(even) {
  background: #eee4d6;
}

.filler-brand__card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 24px 70px rgba(73, 55, 40, 0.07);
}

.filler-brand__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 470px;
}

.filler-brand:nth-child(even) .filler-brand__media {
  order: 2;
}

.filler-brand:nth-child(even) .filler-brand__copy {
  order: 1;
}

.filler-brand__media {
  min-height: 100%;
  background: #eadcc8;
}

.filler-brand__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.filler-brand__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 56px;
}

.filler-brand__copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
}

.filler-brand__copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.filler-brand__copy p + p {
  margin-top: 16px;
}

.filler-brand__prices {
  padding: 46px 56px 50px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.filler-brand__prices h3 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.filler-brand__price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filler-brand__price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.filler-brand__price-list span {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.filler-brand__price-list strong {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .filler-brand__intro {
    grid-template-columns: 1fr 1fr;
  }

  .filler-brand__copy {
    padding: 46px 40px;
  }

  .filler-brand__prices {
    padding: 42px 40px 46px;
  }

  .filler-brand__price-list {
    column-gap: 36px;
  }
}

@media (max-width: 900px) {
  .filler-brand {
    padding: 58px 0;
  }

  .filler-brand__card {
    border-radius: 22px;
  }

  .filler-brand__intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .filler-brand:nth-child(even) .filler-brand__media,
  .filler-brand:nth-child(even) .filler-brand__copy {
    order: initial;
  }

  .filler-brand__media img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .filler-brand__copy {
    padding: 38px 30px 40px;
  }

  .filler-brand__copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .filler-brand__copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .filler-brand__prices {
    padding: 36px 30px 38px;
  }

  .filler-brand__price-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .filler-brand__price-list li {
    padding: 17px 0;
  }
}

@media (max-width: 520px) {
  .filler-brand {
    padding: 42px 0;
  }

  .filler-brand__card {
    border-radius: 18px;
  }

  .filler-brand__copy {
    padding: 30px 22px 32px;
  }

  .filler-brand__copy h2 {
    margin-bottom: 18px;
  }

  .filler-brand__prices {
    padding: 30px 22px 32px;
  }

  .filler-brand__prices h3 {
    margin-bottom: 20px;
  }

  .filler-brand__price-list li {
    gap: 12px;
    padding: 16px 0;
  }

  .filler-brand__price-list span {
    font-size: 13.5px;
  }

  .filler-brand__price-list strong {
    font-size: 1.25rem;
  }
}
