.reservation-teaser {
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 375px;
  height: 100%;

  border-radius: 5px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.08);

}

.reservation-teaser a:hover {
  text-decoration: none;
}


.reservation-teaser__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 32px 32px;
  justify-content: space-between;
  height: 100%;
}


.reservation-teaser__informations {
  display: flex;
  flex-direction: column;
  gap: 8px;

  color: var(--color-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}


.reservation-teaser__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}


.reservation-teaser__description {
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.reservation-teaser p {
  margin: 0;
}

.icon {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.icon::before {
  content: '';
  display: block;
  min-width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-calendar::before {
  background-image: url('../../images/icons/icon-calendar.svg');
}
.icon-pin::before {
  background-image: url('../../images/icons/icon-pin.svg');
}


@media all and (min-width:1100px) {
  .reservation-teaser {
    max-width: 403px;
  }
}


.view-activity {
    align-items: center;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    .view-header {
      font-family: "Montserrat";
      font-size: 18px;
      font-weight: 700;
      line-height: 150%;
    }
    .view-content {
      display: flex !important;
      flex-direction: column;
      gap : 30px;

    }
  }




@media all and (min-width: 750px) {
    .view-activity .view-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.taxo__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.taxo__wrapper .taxo.theme {
  display: flex;
  padding: 6px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid var(--color-primary--clear-var);

  color : var(--color-primary);
}
