.card.ThemeCardProductInfo {
  display: flex;
  background-color: var(--colorTextAlt);
  box-shadow: 0 0 5px 0px var(--colorShadow);
}
.card.ThemeCardProductInfo > .cardMedia {
  width: 50%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 220px 0px var(--colorShadow) inset;
  display: flex;
  font-size: 5rem;
  color: var(--colorShadowDark);
  justify-content: space-evenly;
  align-items: center;
  height: 60vh;
}
.card.ThemeCardProductInfo > .cardMedia > img {
  max-height: 100%;
  max-width: 100%;
}
.card.ThemeCardProductInfo > .cardContainer {
  display: block;
  position: relative;
  width: 50%;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo {
  padding: var(--sizeXL);
  display: flex;
  flex-direction: column;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardInfoTitle {
  font-size: var(--fontNestedS);
  color: var(--colorPrimary);
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardTitle {
  font-size: var(--fontNestedM);
  font-weight: bold;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardSubtitle {
  font-size: var(--fontNestedS);
  color: var(--colorShadowDark);
  margin-bottom: 20px;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardDescription {
  opacity: 0.6 !important;
  font-size: var(--fontNestedS);
  text-align: justify;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardHighlight {
  font-size: var(--fontNestedXL);
  font-weight: bold;
  margin-top: auto;
  right: 0;
  top: var(--sizeL);
  text-align: right;
  border-top: 12px solid var(--colorNeutralLight);
  letter-spacing: 2px;
}
.card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardHighlight > .cardSubHighlight {
  opacity: 0.5;
  text-decoration: line-through;
  width: fit-content;
  display: block;
  font-size: var(--fontNestedS);
  margin-left: auto;
}
.card.ThemeCardProductInfo > .cardContainer > .cardActions {
  font-size: var(--fontM);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: var(--sizeM) var(--sizeXL);
  width: 100%;
  box-sizing: border-box;
}

@media (orientation: portrait) {
  .card.ThemeCardProductInfo {
    flex-direction: column;
  }
  .card.ThemeCardProductInfo > .cardMedia, .card.ThemeCardProductInfo > .cardContainer {
    width: 100%;
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo {
    padding: var(--sizeL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardInfoTitle {
    font-size: var(--fontL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardTitle {
    font-size: var(--fontXL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardSubtitle {
    font-size: var(--fontL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardDescription {
    font-size: var(--fontL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardInfo > .cardHighlight {
    font-size: var(--fontXL);
  }
  .card.ThemeCardProductInfo > .cardContainer > .cardActions {
    font-size: var(--fontM);
    padding: var(--sizeM) var(--sizeL);
  }
}
