


.featured__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'first' 'second' 'list';
  grid-gap: 1rem;
}
.featured__wrapper:not(:first-child) {
  margin-top: 2rem;
}
.featured__wrapper > *:nth-child(1) {
  grid-area: first;
}
.featured__wrapper > *:nth-child(2) {
  grid-area: second;
}
.featured__list {
  grid-area: list;
}
.featured__list > :not(:last-child) {
  margin-bottom: var(--gap);
}
@media (min-width: 600px) {
  .featured__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'first second' 'list list';
  }
}
@media (min-width: 1400px) {
  .featured__wrapper {
    grid-template-columns: 375px 375px 1fr;
    grid-template-areas: 'first second list';
  }
}

.trending__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'first' 'second' 'third';
  grid-gap: 1rem;
}
.trending__list:not(:first-child) {
  margin-top: 2rem;
}
.trending__list > *:nth-of-type(1) {
  grid-area: first;
}
.trending__list > *:nth-of-type(2) {
  grid-area: second;
}
.trending__list > *:nth-of-type(3) {
  grid-area: third;
}
@media (min-width: 992px) {
  .trending__list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'first first' 'second third';
  }
}
@media (min-width: 1300px) {
  .trending__list {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 'first second' 'first third';
  }
}
.postcard-four {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.postcard-four--gap {
  margin-bottom: var(--gap-extended);
}
.postcard-four.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.postcard-four.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.postcard-four.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.postcard-four__image-wrapper {
  flex-shrink: 0;
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.postcard-four__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.postcard-four__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim-reverse);
  z-index: 0;
}
.postcard-four__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.postcard-four__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-top: -8px;
}
.postcard-four__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
.postcard-four__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.postcard-four__counters {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -8px;
}
.postcard-four__counters > * {
  margin-top: 8px;
}
.postcard-four__counters > :not(:last-child) {
  margin-right: 1rem;
}
.postcard-four__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--gap-small);
  letter-spacing: 0.03em;
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.postcard-four__title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: var(--gap-small);
  font-size: 17px;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.postcard-four__title > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.postcard-four__title > span:hover {
  background-size: 100% 2px;
}
.postcard-four__title > span:focus {
  outline: none;
}
.postcard-four__text {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.95em;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
@media (min-width: 768px) {
  .postcard-four__content {
    padding: 1.5rem;
  }
}
.postcard-five {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.postcard-five--gap {
  margin-bottom: var(--gap-extended);
}
.postcard-five.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.postcard-five.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.postcard-five.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.postcard-five__image-wrapper {
  flex-shrink: 0;
  position: relative;
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.postcard-five__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.postcard-five__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  z-index: 0;
}
.postcard-five__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.postcard-five__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-top: -8px;
}
.postcard-five__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
.postcard-five__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.postcard-five__title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.postcard-five__title > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.postcard-five__title > span:hover {
  background-size: 100% 2px;
}
.postcard-five__title > span:focus {
  outline: none;
}
.postcard-five__credentials {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: -8px;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.postcard-five__credentials > * {
  margin-top: 8px;
}
.postcard-five__credentials > :not(:last-child) {
  margin-right: 1rem;
}
.postcard-five__label {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.03em;
  font-size: 0.9em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .postcard-five__content {
    padding: 1.5rem;
  }
  .postcard-five__badges {
    top: 1.5rem;
    left: 1.5rem;
  }
  .postcard-five__credentials {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.postcard-three {
  display: flex;
  max-width: 1200px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.postcard-three--gap {
  margin-bottom: var(--gap);
}
.postcard-three.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.postcard-three.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.postcard-three.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.postcard-three__image-wrapper {
  flex-shrink: 0;
  position: relative;
  display: none;
  min-width: 100px;
  margin-right: 1rem;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.postcard-three__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.postcard-three__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  z-index: 0;
}
.postcard-three__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.postcard-three__title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.postcard-three__title > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.postcard-three__title > span:hover {
  background-size: 100% 2px;
}
.postcard-three__title > span:focus {
  outline: none;
}
.postcard-three__counter {
  margin-top: var(--gap-small);
}
@media (min-width: 480px) {
  .postcard-three__image-wrapper {
    display: block;
  }
}
.postcard-two {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.postcard-two--gap {
  margin-bottom: var(--gap-extended);
}
.postcard-two__image-wrapper {
  flex-shrink: 0;
  position: relative;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.postcard-two__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.postcard-two__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  z-index: 0;
}
.postcard-two__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.postcard-two__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
}
.postcard-two__content {
  margin-top: auto;
}
.postcard-two__content > *:not(:last-child) {
  margin-bottom: var(--gap-small);
}
.postcard-two__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin-top: -8px;
}
.postcard-two__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
.postcard-two__credentials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: -8px;
}
.postcard-two__credentials > * {
  margin-top: 8px;
}
.postcard-two__credentials > :not(:last-child) {
  margin-right: 1rem;
}
.postcard-two__label {
  display: inline-block;
  letter-spacing: 0.03em;
  font-size: 0.9em;
  line-height: 1.45em;
}
.postcard-two__title {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.postcard-two__title > span {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
@media (min-width: 768px) {
  .postcard-two__wrapper {
    padding: 1.5rem;
  }
}