/* stylelint-disable csstools/value-no-unknown-custom-properties */

/* stylelint-disable value-list-comma-newline-after */

/* === === === ThemeCard === === === */

.ThemeCard {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  transition: box-shadow 250ms ease-in-out;
}

.ThemeCard:hover {
    box-shadow: 0 208px 83px rgba(0, 0, 0, 0.01), 0 117px 70px rgba(0, 0, 0, 0.05), 0 52px 52px rgba(0, 0, 0, 0.09),
      0 13px 29px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 0, 0, 0.1);
  }

.ThemeCard--single {
  width: 100%;
}

@media screen and (min-width: 601px) {

.ThemeCard--single {
    width: calc(50% - var(--vertical-gap));
}
  }

@media screen and (min-width: 1026px) {

.ThemeCard--single {
    width: calc(25% - var(--vertical-gap));
}
  }

.ThemeCard--double {
  width: 100%;
}

@media screen and (min-width: 601px) {

.ThemeCard--double {
    width: calc(50% - var(--vertical-gap));
}
  }

@media screen and (min-width: 1026px) {

.ThemeCard--double {
    width: 50%;
}
  }

.ThemeCard-image {
  border-radius: 20px 20px 0 0;
}

.ThemeCard-image img {
    height: 250px;
  }

.ThemeCard-image {
  width: 100%;
  height: 260px;
}

@media screen and (min-width: 1026px) {

.ThemeCard-image {
    height: auto;
}
  }

.ThemeCard-data {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  isolation: isolate;
  padding: 15px 20px 40px;
}

.ThemeCard-title {
  flex: none;
  flex-grow: 0;
  align-self: stretch;
  order: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--clr-blue);
}

.ThemeCard-text {
  flex: none;
  flex-grow: 0;
  align-self: stretch;
  order: 1;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: var(--clr-blue);
}

.ThemeCard-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 19px;
  height: 20px;
}
