.hero-about-us {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-color: var(--purple);
  min-height: 60vh;
}
.hero-about-us__container {
  max-width: 86.875rem;
}
.hero-about-us__body {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  color: var(--white);
  margin-top: auto;
}
.hero-about-us__title {
  line-height: 100%;
  font-weight: 300;
}
.hero-about-us__descr {
  max-width: 550px;
  line-height: 125%;
  letter-spacing: 0.04em;
}
.hero-about-us__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero-about-us__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.overview__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview__top-row svg {
  height: auto;
}
.overview__body {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-line-pack: start;
  align-content: start;
}
.overview__item--orange {
  --item-overview-color: var(--orange);
}
.overview__item--violet {
  --item-overview-color: var(--violet-bg);
}
.overview__item--pink {
  --item-overview-color: var(--pink);
}
.overview__item--red {
  --item-overview-color: var(--red-dark);
}
.overview__articles {
  display: -ms-grid;
  display: grid;
}
.article-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.article-overview__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 430/253;
  border-radius: var(--border-radius);
}
.article-overview__visual img,
.article-overview__visual video,
.article-overview__visual iframe,
.article-overview__visual object,
.article-overview__visual embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.article-overview__visual:has(.article-overview__video) {
  cursor: pointer;
}
._video-is-showing
  .article-overview__visual:has(.article-overview__video)
  .article-overview__poster,
._video-is-showing
  .article-overview__visual:has(.article-overview__video)::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.article-overview__visual:has(.article-overview__video)
  .article-overview__poster {
  z-index: 2;
}
.article-overview__visual:has(.article-overview__video)::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  cursor: pointer;
  background: url("../../images/2025/icons/play-btn.svg") 0 0 / cover no-repeat;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
}
.article-overview__video {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
._video-is-showing .article-overview__video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.article-overview__info {
  line-height: 111%;
  letter-spacing: 0.02em;
}
.article-overview__name {
  text-transform: uppercase;
  color: var(--violet-darker);
}
.article-overview__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--purple);
}
a.article-overview__link {
  text-decoration: underline;
}
.article-overview__link svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.item-overview__info {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  color: var(--white);
}
.item-overview__info::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: var(--item-overview-color, var(--purple));
}
.item-overview__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 15px;
  margin-bottom: 14px;
}
.item-overview__labels {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 650px;
  flex: 0 1 650px;
}
.item-overview__suplabel {
  line-height: 167%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.item-overview__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 1;
}
.item-overview__icon img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-overview__descr p {
  line-height: 133%;
  letter-spacing: 0.04em;
}

.item-overview__descr img {
  width: 100%;
  max-width: 180px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: clamp(20px, 5vw, 40px);
}
.item-overview__info a {
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
  padding-inline: 24px;
}
@media all and (max-width: 580px) {
  .item-overview__info a {
    width: 100%;
  }
}
.item-overview__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.item-overview__partner img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-overview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.virtual-campus {
  background-color: #f2cda4;
}
.virtual-campus__icon {
  aspect-ratio: 1;
  width: 110px;
}
.virtual-campus__icon img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.virtual-campus__body {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-line-pack: start;
  align-content: start;
}
.virtual-campus__image {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 820/495;
  border-radius: 0.8rem;
}
.virtual-campus__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: inherit;
  z-index: 1;
}
.virtual-campus__image img,
.virtual-campus__image video,
.virtual-campus__image iframe,
.virtual-campus__image object,
.virtual-campus__image embed {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.virtual-campus__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.virtual-campus__descr p {
  line-height: 133%;
  letter-spacing: 0.04em;
}
.work-with-us {
  position: relative;
}
.work-with-us__body {
  max-width: 1135px;
  margin: 0 auto;
}
.work-with-us__info {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-line-pack: start;
  align-content: start;
  color: var(--white);
}
.work-with-us__title {
  line-height: 94%;
}
.work-with-us__descr {
  line-height: 125%;
  letter-spacing: 0.04em;
}
.work-with-us__form {
  border-radius: var(--border-radius);
  background-color: var(--white);
}
.work-with-us__form .contact-form__row {
  display: block;
}
.work-with-us__form .contact-form__row .input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.3s ease;
}
.work-with-us__form .contact-form__row .input::placeholder {
  color: #5a5a5a;
  transition: color 0.3s ease;
}
.work-with-us__form .contact-form__row .input:focus,
.work-with-us__form .contact-form__row .input:active {
  border-color: var(--purple);
  outline: none;
}
.work-with-us__form .contact-form__row .input:focus::placeholder {
  color: var(--black);
}
.work-with-us__form .contact-form__row label {
  display: block;
  font-size: 14px;
  color: #5a5a5a;
  font-weight: 400;
  margin-bottom: 2px;
}
.work-with-us__form .contact-form__bottom .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-with-us__form .contact-form__bottom .checkbox label {
  line-height: 0;
}
.work-with-us__form .contact-form__bottom .checkbox p a {
  color: var(--purple);
}
.work-with-us__label {
  line-height: 105%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--purple);
}
.work-with-us__bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.work-with-us__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 29.99875em) {
  :root {
    --main-offsize: 1.0625rem;
    --border-radius: 1.875rem;
  }
  .work-with-us__form {
    padding: 53px 60px 33px;
  }
  .work-with-us__form .contact-form__rows {
    margin-bottom: 30px;
  }
}
@media (min-width: 47.99875em) {
  .hero-about-us__descr {
    font-size: 24px;
  }
  .overview__top-row {
    gap: 22px;
  }
  .overview__top-row svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37px;
    flex: 0 0 37px;
  }
  .overview__articles {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 40px;
  }
  .article-overview__visual:has(.article-overview__video)::after {
    width: 44px;
  }
  .item-overview__info {
    padding: 40px 35px;
  }
  .item-overview__suplabel {
    margin-bottom: 23px;
    font-size: 18px;
  }
  .item-overview__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 110px;
    flex: 0 0 110px;
  }
  .item-overview__descr p {
    font-size: 19px;
  }
  .item-overview__partner img {
    max-height: 45px;
  }
  .virtual-campus {
    padding: 55px 0 108px;
  }
  .virtual-campus__body {
    gap: 56px;
  }
  .virtual-campus__descr {
    gap: 26px;
  }
  .virtual-campus__descr p {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    font-size: 18px;
  }
  .work-with-us {
    padding: 68px 0;
  }
  .work-with-us__descr {
    font-size: 24px;
  }
  .work-with-us__label {
    margin-bottom: 36px;
    font-size: 40px;
  }
}
@media (min-width: 61.99875em) {
  :root {
    --title-offsize: 64px;
  }
  .hero-about-us__body {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -ms-flex-line-pack: end;
    align-content: end;
    grid-auto-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    padding: 160px 0 60px;
  }
  .hero-about-us__title {
    text-align: center;
  }

  .work-with-us__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }
  .work-with-us__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 405px;
    flex: 0 1 405px;
    gap: 30px;
  }
  .work-with-us__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 545px;
    flex: 0 1 545px;
  }
}
@media (min-width: 74.99875em) {
  .hero-about-us__body {
    height: 100svh;
    min-height: 670px;
  }
  .item-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 23px;
  }
  .item-overview:nth-child(3n + 1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .item-overview__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .item-overview__descr {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
  .item-overview__partners {
    padding-top: 25px;
  }
  .item-overview__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
  }
  .virtual-campus__top-row {
    position: relative;
    margin-bottom: 45px;
  }
  .virtual-campus__icon {
    position: absolute;
    top: 10px;
    right: 0;
  }
  .virtual-campus__title {
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (min-width: 74.99875em) and (min-width: 120em) {
  .item-overview:nth-child(3n + 1) {
    margin-left: -17.5rem;
  }
  .item-overview:nth-child(3n + 2) {
    margin-right: -17.5rem;
  }
}
@media (min-width: 87.5em) {
  .page__about-us-hero:not(:last-child) {
    margin-bottom: 7.1875rem;
  }
  .page__overview:not(:last-child) {
    margin-bottom: 7.1875rem;
  }
  .hero-about-us__title {
    font-size: 8.125rem;
  }
  .overview__top-row {
    margin-bottom: 4.75rem;
  }
  .overview__body {
    gap: 5.625rem;
  }
}
@media (min-width: 120em) {
  .item-overview__image img {
    border-radius: var(--border-radius);
  }
}
@media (max-width: 20em) {
  .page__about-us-hero:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .page__overview:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .hero-about-us__title {
    font-size: 3.4375rem;
  }
  .overview__top-row {
    margin-bottom: 1.5rem;
  }
  .overview__body {
    gap: 1.5rem;
  }
}
@media (max-width: 74.99875em) {
  .item-overview__descr {
    display: -ms-grid;
    display: grid;
  }
  .item-overview__image {
    display: none;
  }
  .virtual-campus__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
  }
  .virtual-campus__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media (max-width: 61.99875em) {
  .hero-about-us__container {
    padding: 0;
  }
  .hero-about-us__body {
    gap: 30px;
    padding: 0 20px;
  }
  .work-with-us__info {
    gap: 18px;
    margin-bottom: 24px;
  }
  .work-with-us__form {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 47.99875em) {
  .hero-about-us__descr {
    font-size: 18px;
  }
  .overview__top-row {
    gap: 12px;
  }
  .overview__top-row svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 19px;
    flex: 0 0 19px;
  }
  .article-overview__visual:has(.article-overview__video)::after {
    width: 36px;
  }
  .item-overview__info {
    padding: 20px;
  }
  .item-overview__suplabel {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .item-overview__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
  }
  .item-overview__descr p {
    font-size: 17px;
  }
  .item-overview__partner img {
    max-height: 30px;
  }
  .virtual-campus {
    padding: 35px 0 60px;
  }
  .virtual-campus__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    width: 48px;
  }
  .virtual-campus__body {
    gap: 30px;
  }
  .virtual-campus__descr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .virtual-campus__descr p {
    font-size: 17px;
  }
  .work-with-us {
    padding: 35px 0;
  }
  .work-with-us__descr {
    font-size: 18px;
  }
  .work-with-us__label {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
@media (max-width: 40.62375em) {
  .item-overview__descr {
    gap: 16px;
  }
}
@media (max-width: 29.99875em) {
  :root {
    --main-offsize: 0.875rem;
    --title-offsize: 1.5625rem;
    --border-radius: 1.375rem;
  }
  .hero-about-us__container {
    padding-bottom: 30px;
  }
  .overview__articles {
    gap: 24px;
  }
  .work-with-us__form {
    padding: 25px 16px 30px;
  }
}
@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  :root {
    --title-offsize: 3rem;
  }
  .hero-about-us__container {
    padding-bottom: 60px;
  }
}
@media (min-width: 20em) and (max-width: 87.5em) {
  .page__about-us-hero:not(:last-child) {
    margin-bottom: clamp(2.5rem, 1.1111111111rem + 6.9444444444vw, 7.1875rem);
  }
  .page__overview:not(:last-child) {
    margin-bottom: clamp(2.5rem, 1.1111111111rem + 6.9444444444vw, 7.1875rem);
  }
  .hero-about-us__title {
    font-size: clamp(3.4375rem, 2.0486111111rem + 6.9444444444vw, 8.125rem);

    .overview__top-row {
      margin-bottom: clamp(1.5rem, 0.537037037rem + 4.8148148148vw, 4.75rem);
    }
    .overview__body {
      gap: clamp(1.5rem, 0.2777777778rem + 6.1111111111vw, 5.625rem);
    }
  }
  @media (min-width: 61.99875em) and (max-width: 74.99875em) {
    .hero-about-us__body {
      min-height: 670px;
    }
  }
  @media (min-width: 29.99875em) and (max-width: 47.99875em) {
    .overview__articles {
      gap: 24px;
    }
    .overview__article {
      width: 100%;
    }
  }
  @media (min-width: 74.99875em) and (min-width: 88.75em) and (max-width: 120em) {
    .item-overview:nth-child(3n + 1) {
      margin-left: clamp(-17.5rem, 42.5rem + -50vw, -1.875rem);
    }

    .item-overview:nth-child(3n + 2) {
      margin-right: clamp(-17.5rem, 42.5rem + -50vw, -1.875rem);
    }
  }
}
@media (min-width: 74.99875em) and (max-width: 88.75em) {
  .item-overview:nth-child(3n + 1) {
    margin-left: -1.875rem;
  }
  .item-overview:nth-child(3n + 2) {
    margin-right: -1.875rem;
  }
}
@media (min-width: 74.99875em) and (max-width: 120em) {
  .item-overview:nth-child(3n + 1) .item-overview__image img {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
  .item-overview__image img {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }
}
@media (min-width: 40.62375em) and (max-width: 74.99875em) {
  .item-overview__descr {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .item-overview__partners {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (min-width: 47.99875em) and (max-width: 74.99875em) {
  .virtual-campus__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
  }
}
@media (any-hover: hover) {
  .article-overview__visual:has(.article-overview__video):hover::after {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .article-overview__link:hover {
    text-decoration: none;
  }
  .article-overview__link:hover svg {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
textarea.input {
  padding: 12px 18px !important;
}
.text__purple {
  color: white;
}
.link__eria {
  min-width: 12rem;
  position: absolute;
  width: 12rem;
  bottom: 1rem;
  right: 2.5rem;
}
@media (max-width: 29.99875em) {
  .link__eria {
    min-width: 12rem;
    position: relative;
    width: 12rem;
    bottom: auto;
    right: auto;
  }
}
.page__blog {
  padding-bottom: 0 !important;
}
.page__blog .page__recommended {
  background-color: #000;
  color: #fff;
  padding-block: 7rem;
}
.page__about-us-hero:has(+ .page__recommended) {
  margin-bottom: 0 !important;
}
.page__blog .page__recommended .slider-controls__button:hover {
  color: #000;
}
.page__blog .page__recommended > .recommended__container {
  flex-direction: column;
  position: relative;
}
.page__blog .page__recommended > .recommended__container .ll {
  text-align: center;
  max-width: 590px;
  margin-inline: auto;
}
.page__blog .page__recommended > .recommended__container .ll > .tt {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.page__blog .page__recommended > .recommended__container .ll > .txt {
  margin-top: 2rem;
  line-height: 1.4;
}
.page__blog .page__recommended > .recommended__container .ll svg path {
  fill: currentColor;
}
.page__blog .page__recommended > .recommended__container .slider-controls {
  position: absolute;
  right: 20px;
}
.page__blog .blog-post:not(:hover) > .entry-content > .f > .r > a > svg path {
  fill: #fff;
}
@media (max-width: 800px) {
  .page__blog .page__recommended > .recommended__container .slider-controls {
    position: relative;
    right: auto;
  }
}
@media (max-width: 650px) {
  .page__blog .page__recommended {
    padding-block: 2rem;
  }
  .page__blog .page__recommended > .recommended__container {
    flex-direction: column;
    gap: 2rem;
  }
}
