/* 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--small {
  width: 100%;
}

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

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

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

.ThemeCard--small {
    width: 33.33%;
}
  }

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

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

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

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

.ThemeCard--big {
    width: calc(66.66% - var(--vertical-gap));
}
  }

.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: 1 1 0;
  align-self: stretch;
  min-width: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--clr-blue);
  word-wrap: break-word;
  word-break: break-word;
}

.ThemeCard--TravelDestination {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.ThemeCard--TravelDestination:hover {
    box-shadow: 1px 4px 15px 0 rgba(0, 0, 0, 0.3);
  }

.ThemeCard--TravelDestination {

  .ThemeCard-image {
    height: 245px;
    -o-object-position: center;
       object-position: center;
  }

  .ThemeCard-title {
    padding-top: 40px;
  }
}

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

.ThemeCard--TravelDestination {

  .ThemeCard-title {
      padding-top: 0;
      padding-right: 100px;
  }
}
    }

.ThemeCard-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  align-self: stretch;
  min-width: 0;
  width: 100%;
}

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

.ThemeCard-header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px 10px;
}
  }

.ThemeCard-meta {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--clr-orange);
}

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

.ThemeCard-meta {
    margin-bottom: 0;
    order: 2;
}
  }

.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;
}
