.understory-experiences-widget {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.understory-experiences-widget * {
  box-sizing: border-box;
}

.understory-experiences-widget a {
  text-decoration: none;
  border: none !important;
}

.understory-experiences-widget a:hover {
  border: none !important;
}

.wp-admin .understory-experiences-widget a {
  pointer-events: none;
}


@media (min-width: 600px) {
  .understory-experiences-widget {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .understory-experiences-widget.has-max-three-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.understory-experience-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 10px 64px 0px rgba(16, 24, 40, 0.05);
  min-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  font-family: var(--font-family, "Inter"), sans-serif;
}

.understory-experience-item:hover {
  -webkit-filter: brightness(95%);
  filter: brightness(95%);
  box-shadow: 0px 10px 64px 0px rgba(16, 24, 40, 0.1);
}

.understory-experience-item__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding-top: 56.25%;
}

.understory-experience-item__image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  color: transparent;
}

.understory-experience-item__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 24px;
  min-height: 200px;
}

.understory-experience-item__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.understory-experience-item__name {
  margin: 0;
  padding: 0;
  color: #1d261f;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #29332b;
}

.understory-experience-item__description {
  margin: 0;
  padding: 0;
  color: #1d261f;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #29332b;
}

.understory-experience-item__prices {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  column-gap: 4px;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: baseline;
  flex-wrap: wrap;
}

.understory-experience-item__price-prefix {
  margin: 0;
  padding: 0;
  color: #1d261f;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.understory-experience-item__price-item {
  margin: 0;
  padding: 0;
  color: #1d261f;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.understory-experience-item__price-suffix {
  margin: 0;
  padding: 0;
  color: #1d261f;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

@keyframes skeleton-animation {
  0% {
    opacity: 1;
  }
  50% {
      opacity: 0.4;
  }
  100% {
      opacity: 1;
  }
}

.understory-skeleton {
  display: block;
  background-color: rgba(0, 0, 0, 0.11);
  animation: 2s ease-in-out 0.5s infinite normal none running skeleton-animation;
}

.understory-skeleton:empty:before {
  content: "\00a0";
}

.understory-skeleton--text {
  display: block;
  background-color: rgba(0, 0, 0, 0.11);
  margin-top: 0px;
  margin-bottom: 0px;
  height: auto;
  transform-origin: 0px 55%;
  transform: scale(1, 0.6);
  border-radius: 4px / 6.7px;
}
