.container__places {
  background-color: #E53232;
  padding: 3rem;
}
.container__places .title__place {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
}
.container__places .content__places {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}
.container__places .place__link {
  color: var(--white);
  text-decoration: none;
}
.container__places .place__link::after {
  content: '|';
  margin-left: .5rem;
}
.container__places .place__link:last-child::after {
  content: '';
}
.container__places .link__cards {
  display: inline-flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.5rem;
  border: none;
  background: #fff;
  color: #1C1C1C;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
/*   line-height: 0.75rem; */
  text-align: center;
  text-decoration: none;
  transition: .5s;
}
.container__places .link__cards--container {
  display: flex;
  justify-content: center;
  padding: 3rem;
}
@media (hover:hover) {
  .container__places .place__link:hover {
    text-decoration: underline var(--white);
  }
  .container__places .link__cards:hover {
    background-color: #1C1C1C;
    color: var(--white);
  }