.hero__title {
  padding-block: 50px;

  font-size: 24px;
  font-weight: 600;
  text-align: center;

  color: #fff;
  background-color: #000;
}

.hero__banner {
  width: 100%;
  height: 640px;

  object-fit: cover;
  object-position: center;
}

.catalog__title {
  padding-block: 50px;

  font-size: 24px;
  font-weight: 600;
  text-align: center;

  color: #fff;
  background-color: #000;
}

.catalog-section {
  padding-block: 100px;
  background-image: linear-gradient(180deg, #fff5eb 0%, #ffdab5 100%);
}

.catalog-section-header__title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.catalog-section-header__button {
  margin: 15px auto 0 auto;

  color: #fff;
  background-color: #000;
}

.catalog-section-header__button:hover,
.catalog-section-header__button:focus-visible {
  color: #000;
  background-color: var(--accent-color);
}

.catalog-section-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 50px;
  margin-top: 50px;
}

.catalog-section-item__image {
  width: 100%;
}

.catalog-section-item__title {
  margin-top: 10px;

  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.catalog-section-item__subtitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;

  color: var(--accent-color);
}

.catalog-section-item__description {
  font-weight: 600;
}

.catalog-section-item__subtitle + .catalog-section-item__description {
  margin-top: 5px;
}
