.header.header--simple {
  position: absolute;
  z-index: 100;
}

.header .header__media-wrapper {
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: calc(235px + 70px);
  margin: 0 auto;
}

.header .header__media-wrapper img {
  width: 100%;
  height: auto;
}

.header .header__media-wrapper a {
  max-width: 240px;
  cursor: pointer;
}

.page__blog .page__content {
  padding-bottom: 0;
}
.page__author__container {
  --author_picture_size: 110px;
  --author_gap: 1.5rem;
  padding-block: 5rem;
  max-width: 81.5rem;
}
.page__author__container > .author {
  display: flex;
  align-items: center;
  gap: var(--author_gap);
  color: var(--black) !important;
  text-decoration: none !important;
}
.page__author__container > .author > .img {
  flex: 0 0 var(--author_picture_size);
  position: relative;
  height: 0;
  padding-bottom: var(--author_picture_size);
  border-radius: 100%;
  overflow: hidden;
}
.page__author__container > .author > .img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__author__container > .author > .txt {
  flex: 1;
}
.page__author__container > .author > .txt > .name {
  font-weight: 700;
  font-size: 1.5rem;
}
.page__author__container > .author > .txt > .job {
  margin-top: 0.3rem;
  font-size: 1.3125rem;
}
.page__author__container > .social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: calc(var(--author_picture_size) + var(--author_gap));
}
.page__author__container > .social > a {
  display: block;
}
.page__author__container > .social > a > img,
.page__author__container > .social > a > svg {
  width: 1.6rem;
}
.page__author__container > .social > a > svg path {
  fill: var(--black);
  transition: all 0.3s ease;
}
.page__author__container > .social > a:hover > svg path {
  fill: var(--purple);
}
.page__author__container > .description {
  margin-left: calc(var(--author_picture_size) + var(--author_gap));
  font-size: 1.3125rem;
  margin-top: 2rem;
  max-width: 50rem;
  letter-spacing: 0.005em;
  line-height: 1.24;
}
.page__author__container > .description > *:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 650px) {
  .page__blog .page__content {
    padding-top: 3rem !important;
  }
  .page__author__container {
    --author_picture_size: 80px;
    --author_gap: 1rem;
    padding-block: 3rem;
  }
  .page__author__container > .author > .txt > .name {
    font-size: 1.3125rem;
  }
  .page__author__container > .author > .txt > .job {
    font-size: 1rem;
  }
  .page__author__container > .description {
    font-size: 1rem;
    margin-left: 0;
    margin-top: 1rem;
  }
}
.page__blog .page__recommended__featured {
  color: var(--white);
  background-color: var(--black);
  padding-bottom: 3.5rem;
}
.page__blog .page__recommended__title {
  padding-bottom: 2rem;
}
@media (max-width: 650px) {
  .page__blog .page__recommended__featured {
    padding-bottom: 2rem;
  }
}
.page__blog.has-newsletter {
  padding-bottom: 0;
}
.page__newsletter {
  position: relative;
  padding-block: 5rem;
  margin-top: 5rem;
}
.page__newsletter .newsletter__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__newsletter .page__container {
  position: relative;
  max-width: 69rem;
}
.page__newsletter .page__container > .tt {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}
.page__newsletter .page__container > .form {
  padding: 1.5rem;
  border-radius: 30px;
  background-color: var(--white);
  max-width: 21rem;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .page__newsletter {
    padding-block: 3rem;
    margin-top: 3rem;
  }
}
.programs {
  padding-block: clamp(3rem, 5vw, 5rem);
}
.programs__hd {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.4rem;
}
.programs__hd svg {
  flex: 0 0 auto;
}
.programs__hd__title {
  flex: 1;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
}
.programs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.programs__list__item {
  display: flex;
  width: 100%;
}

.programs__list__item a {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--black);
  background-color: var(--white);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  width: 100%;
}
.programs__list__item__title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  transition: color 0.3s ease-in-out;
  color: currentColor;
}
.programs__list__item__description {
  font-size: 1rem;
  color: currentColor;
  transition: color 0.3s ease-in-out;
}
.programs__list__item__link {
  font-size: 1rem;
  color: currentColor;
  transition: color 0.3s ease-in-out;
  margin-top: auto;
}

@media all and (hover: hover) {
  .programs__list__item a:hover {
    border-color: var(--purple);
    background-color: var(--purple);
    color: var(--white);
  }
}

@media all and (max-width: 650px) {
  .programs__list {
    grid-template-columns: 1fr;
  }
}
