.promos__cover {
  position: relative;
}

.promos__cover-image {
  position: relative;
  width: 100%;
  aspect-ratio: 48 / 9;
  z-index: -1;
}

.promos__cover-image .image {
  object-fit: cover;
}

.promos__cover-title-container {
  position: absolute;
  bottom: 2rem;
  margin: 0 auto;
  width: 100%;
}

.promos__cover-title {
  color: var(--white);
  font-weight: bolder;
  font-size: 3.5rem;
}

.promos__description {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bolder;
  max-width: 30rem;
  margin: 2rem auto;
}

.promos__branch-selector {
  text-align: center;
  margin: 2rem auto;
}

.branch-selector {
  padding: 8px 12px;
  font-size: 2rem;
  font-family: var(--round-key);
  font-weight: bolder;
  color: var(--red);
  border-color: var(--red);
  border-radius: 8px;
  width: 20rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 320 512%22%3E%3Cpath fill=%22%23FF0000%22 d=%22M31.1 192h257.8c28.4 0 42.8 34.5 22.6 54.6L182.6 375.4c-12.5 12.5-32.8 12.5-45.3 0L8.5 246.6C-11.7 226.5 2.7 192 31.1 192z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.promos__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.promo__item {
  width: 30rem;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo__item-picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
}

@media screen and (max-width: 768px) {
  .promos__cover-title {
    font-size: 2.5rem;
  }
}