<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cards-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  position: relative;
}

.cards-block .single-card {
  max-width: 400px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.cards-block .card-title {
  background: white;
  min-height: 110px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  padding: 1em;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;

}

.cards-block .card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 11;
}


.cards-block .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-block .card-button {
  position: absolute;
  z-index: 2;
  left: .5em;
  bottom: .5em;
  background: white;
  aspect-ratio: 1;
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  line-height: 0;
  font-weight: 800;
  cursor: pointer;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease;
}

.cards-block .card-button:hover {
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
  transform: scale(1.02);
}


.cards-block .card-content {
  background: white;
  z-index: 10;
  width: 100%;
  position: absolute;
  left: 0;
  margin: 2em;
  padding: 2em;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.cards-block .active .card-content {
  display: block;
}

.cards-block .card-content .card-subtitle {
  font-size: var(--wp--preset--font-size--verybig);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .6em;
}

.cards-block .card-content-wrapper .card-content__close-button {
  display: none;
}

@media screen and (max-width: 781px) {
  .cards-block .card-content {
    margin-right: var(--wp--style--root--padding-left);
    margin-left: var(--wp--style--root--padding-right);
  }

  .cards-block .active .card-content-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cards-block .active .card-content-wrapper .card-content__close-button {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 2em;
    aspect-ratio: 1;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
  }
}

.triangle-shape {
  width: 100px;
  height: 60px;
  z-index: 100;
  background: white;
  position: absolute;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}</pre></body></html>