@font-face {
  font-family: "KTF Prima";
  src: url("./fonts/KTFPrima-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTF Prima";
  src: url("../fonts/KTFPrima-Ultra.woff2") format("woff2");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "KTF Prima", sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 14px;
  color: #000000;
}
body *,
body *::after,
body *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.lock {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.img-block {
  display: block;
  width: 100%;
}

.main {
  padding-top: 80px;
}

@media (min-width: 1025px) {
  .main {
    padding-top: 5.556vw;
  }
}
#wpadminbar {
  position: absolute !important;
}

.header {
  padding: 20px 16px;
  border-bottom: 1px solid #DCDCDC;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-wrapper {
  display: flex;
  align-items: end;
  gap: 12px;
}
.header__logo-img {
  width: 127px;
}
.header__logo-text {
  font-size: 12px;
  font-weight: 400;
}
.header__menu-list {
  display: flex;
  gap: 16px;
  list-style: none;
}
.header__menu-item {
  font-size: 14px;
  font-weight: 700;
}
.header__burger {
  display: none;
  width: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 32px;
}
.header__burger-line {
  display: block;
  width: 32px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.header__burger-line + .header__burger-line {
  margin-top: 5px;
}

@media (min-width: 1025px) {
  .header {
    padding: 1.389vw 1.111vw;
  }
  .header__logo-wrapper {
    gap: 0.833vw;
  }
  .header__logo-img {
    width: 8.819vw;
  }
  .header__logo-text {
    font-size: 0.833vw;
  }
  .header__menu-list {
    gap: 1.111vw;
  }
  .header__menu-item {
    font-size: 0.972vw;
  }
  .header__burger {
    width: 2.222vw;
    flex: 0 0 2.222vw;
  }
  .header__burger-line {
    width: 2.222vw;
    height: 0.208vw;
    border-radius: 0.139vw;
  }
  .header__burger-line + .header__burger-line {
    margin-top: 0.347vw;
  }
}
@media (max-width: 1024px) {
  .header__logo-text {
    display: none;
  }
}
@media (max-width: 768px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }
  .header {
    background: #fff;
  }
  .header__menu-wrapper {
    display: none;
  }
  .header__burger {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .header__logo-wrapper {
    position: relative;
    z-index: 1002;
  }
  .header__burger {
    position: relative;
    z-index: 1002;
  }
  .header__menu-wrapper {
    display: flex;
    position: fixed;
    inset: 0;
    height: 150vh;
    z-index: 1000;
    padding: 80px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
  }
  .header__menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }
  .header__menu-item {
    font-size: 40px;
    font-weight: 700;
    width: 100%;
  }
  .header__menu-item a {
    display: block;
    text-align: left;
    padding: 32px 16px;
    border-bottom: 1px solid #CCBF4E;
    width: 100%;
  }
  body.is-mobile-menu-open .header__menu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #FFEE59;
  }
  body.is-mobile-menu-open .header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.is-mobile-menu-open .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  body.is-mobile-menu-open .header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body.has-mobile-menu-interacted .header__menu-wrapper {
    transition: opacity 220ms ease, visibility 0s linear 220ms;
    will-change: opacity;
  }
  body.has-mobile-menu-interacted.is-mobile-menu-open .header__menu-wrapper {
    transition: opacity 220ms ease, visibility 0s;
  }
}
.footer {
  background-color: #FFEF61;
  padding: 32px;
}
.footer__logo {
  width: 230px;
}
.footer__logo-link {
  display: block;
  width: 230px;
}
.footer__logo-text {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}
.footer__menu-wrapper {
  margin-top: 31px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__menu-list {
  display: flex;
  gap: 19px;
  list-style: none;
}
.footer__contacts-wrapper {
  display: flex;
  gap: 16px;
}
.footer__contacts-wrapper svg {
  width: 24px;
  height: 24px;
}
.footer__menu-item {
  font-size: 16px;
  font-weight: 700;
}
.footer__partnership-link {
  display: block;
  margin-top: 10px;
  width: 116px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: end;
}
.footer__bottom-info {
  max-width: 534px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}
.footer__rights-and-terms {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  gap: 16px;
}
.footer__terms {
  text-decoration: underline;
}

@media (min-width: 1025px) {
  .footer {
    padding: 2.222vw;
  }
  .footer__logo {
    width: 15.972vw;
  }
  .footer__logo-link {
    width: 15.972vw;
  }
  .footer__logo-text {
    margin-top: 1.111vw;
    font-size: 0.833vw;
  }
  .footer__menu-wrapper {
    margin-top: 2.153vw;
  }
  .footer__menu-list {
    gap: 1.319vw;
  }
  .footer__menu-item {
    font-size: 1.111vw;
  }
  .footer__partnership-link {
    margin-top: 0.694vw;
    width: 8.056vw;
  }
  .footer__bottom {
    margin-top: 1.389vw;
  }
  .footer__bottom-info {
    max-width: 37.083vw;
    font-size: 0.694vw;
  }
  .footer__rights-and-terms {
    font-size: 0.833vw;
    gap: 1.111vw;
  }
  .footer__contacts-wrapper {
    gap: 1.111vw;
  }
  .footer__contacts-wrapper svg {
    width: 1.667vw;
    height: 1.667vw;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 20px;
  }
  .footer__logo-text {
    font-size: 13px;
    color: fontColorlMain;
  }
  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer__menu-wrapper {
    margin-top: 20px;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .footer__menu-list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
    gap: 27px;
  }
}
.home-slider {
  padding: 49px 16px 55px 16px;
}
.home-slider__wrapper {
  position: relative;
}
.home-slider .owl-nav {
  position: absolute;
  right: 10px;
  bottom: 0;
}
.home-slider button {
  margin: 0 4px !important;
}
.home-slider button svg {
  width: 37px;
  height: 22px;
}
.home-slider button:hover {
  background-color: transparent !important;
}

.home-slider-item__img {
  margin: 0 auto;
  max-width: 815px;
  height: 543px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-slider-item__header-wrapper {
  margin-top: 66px;
}
.home-slider-item__header {
  max-width: 694px;
}
.home-slider-item__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.home-slider-item__excerpt {
  color: rgba(17, 16, 16, 0.8);
}

@media (min-width: 1025px) {
  .home-slider {
    padding: 2.552vw 0.833vw 2.865vw 0.833vw;
  }
  .home-slider .owl-nav {
    right: 0.521vw;
  }
  .home-slider button {
    margin: 0 0.208vw !important;
  }
  .home-slider button svg {
    width: 1.927vw;
    height: 1.146vw;
  }
  .home-slider-item__img {
    max-width: 42.448vw;
    height: 28.281vw;
  }
  .home-slider-item__header-wrapper {
    margin-top: 3.438vw;
  }
  .home-slider-item__header {
    max-width: 36.146vw;
  }
  .home-slider-item__title {
    font-size: 1.146vw;
    margin-bottom: 0.417vw;
  }
}
@media (max-width: 1024px) {
  .home-slider .owl-nav {
    margin-top: 32px;
    position: relative;
    display: flex;
  }
}
@media (max-width: 768px) {
  .home-slider {
    padding: 64px 12px;
  }
  .home-slider-item__img {
    height: auto;
  }
  .home-slider-item__header-wrapper {
    margin-top: 16px;
  }
  .home-slider-item__header {
    max-width: 100%;
  }
  .home-slider-item__excerpt {
    font-size: 14px;
    line-height: 1.35;
  }
}
.articles-list {
  padding: 64px 16px;
  border-top: 1px solid #DCDCDC;
}
.articles-list__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  gap: 128px 111px;
}
.articles-list__item-link {
  display: block;
}
.articles-list__item-link:hover .articles-list__item-img-hover {
  opacity: 1;
  transition: 0.2s all;
}
.articles-list__item-link:hover .articles-list__item-excerpt {
  opacity: 1;
  transition: 0.2s all;
}
.articles-list__item-img-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.articles-list__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles-list__item-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6px;
  background-color: rgba(255, 238, 89, 0.9490196078);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: 0.2s all;
}
.articles-list__item-img-hover-content {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.articles-list__item-title {
  font-size: 14px;
  font-weight: 700;
}
.articles-list__item-excerpt {
  font-size: 14px;
  opacity: 0;
  transition: 0.2s all;
  font-weight: 400;
}
.articles-list__read-full {
  margin-top: 4px;
  text-decoration: underline;
  font-weight: 500;
}
.articles-list__item-mobile-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  font-size: 13px;
  background-color: #FFEE59;
  display: none;
}
.articles-list__item-mob-author {
  font-size: 12px;
  font-weight: 400;
  margin: 4px 0;
}

@media (min-width: 1025px) {
  .articles-list {
    padding: 4.444vw 1.111vw;
    border-top: 0.069vw solid #DCDCDC;
  }
  .articles-list__wrapper {
    gap: 1.667vw;
    gap: 8.889vw 7.708vw;
  }
  .articles-list__item-img-wrapper {
    margin-bottom: 1.111vw;
  }
  .articles-list__item-img-hover {
    position: absolute;
    padding: 0.417vw;
  }
  .articles-list__item-img-hover-content {
    gap: 1.667vw;
    font-size: 0.903vw;
  }
  .articles-list__item-title {
    font-size: 0.972vw;
  }
  .articles-list__item-excerpt {
    font-size: 0.972vw;
  }
  .articles-list__read-full {
    margin-top: 0.278vw;
  }
  .articles-list__item-mobile-tag {
    padding: 0.556vw 0.694vw;
    font-size: 0.903vw;
  }
  .articles-list__item-mob-author {
    font-size: 0.833vw;
    margin: 0.278vw 0;
  }
}
@media (max-width: 1024px) {
  .articles-list__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
  }
}
@media (max-width: 768px) {
  .articles-list {
    padding: 40px 12px 104px 12px;
  }
  .articles-list__wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .articles-list__item-img-wrapper {
    margin-bottom: 12px;
  }
  .articles-list__item-img {
    height: auto;
  }
  .articles-list__item-img-hover {
    display: none;
  }
  .articles-list__item-excerpt {
    display: none;
  }
  .articles-list__item-mobile-tag {
    display: block;
  }
  .articles-list__item-mob-author {
    display: block;
  }
}
.author-single__title-wrapper {
  padding: 96px 24px;
  text-align: center;
  border-bottom: 1px solid #DCDCDC;
}
.author-single__title {
  font-size: 40px;
  font-weight: 700;
}
.author-single__img-wrapper {
  padding: 40px 57px 24px 57px;
}
.author-single__img {
  margin: 0 auto;
  width: 260px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-single__content-wrapper {
  padding: 24px 12px 32px 12px;
  max-width: 760px;
  margin: 0 auto;
}
.author-single__content {
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
}
.author-single__website-wrapper {
  margin-top: 24px;
  display: flex;
}
.author-single__website-link {
  display: flex;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 123%;
  gap: 10px;
  align-items: center;
  background-color: #FFEE59;
}
.author-single__website-link svg, .author-single__website-link img {
  width: 15px;
  height: 12px;
}

@media (min-width: 1025px) {
  .author-single__title-wrapper {
    padding: 6.667vw 1.667vw;
  }
  .author-single__title {
    font-size: 2.778vw;
  }
  .author-single__img-wrapper {
    padding: 2.778vw 3.958vw 1.667vw 3.958vw;
  }
  .author-single__img {
    width: 18.056vw;
    height: 18.056vw;
  }
  .author-single__content-wrapper {
    padding: 1.667vw 0.833vw 2.222vw 0.833vw;
    max-width: 52.778vw;
  }
  .author-single__content {
    font-size: 1.111vw;
  }
  .author-single__website-wrapper {
    margin-top: 1.667vw;
  }
  .author-single__website-link {
    padding: 0.556vw 0.694vw;
    font-size: 0.903vw;
    gap: 0.694vw;
  }
  .author-single__website-link svg, .author-single__website-link img {
    width: 1.042vw;
    height: 0.833vw;
  }
}
@media (max-width: 768px) {
  .author-single__title-wrapper {
    padding: 64px 24px;
  }
  .author-single__title {
    font-size: 36px;
  }
  .author-single__img-wrapper {
    padding: 40px 20px 24px 20px;
  }
  .author-single__content-wrapper {
    padding: 0px 12px 32px 12px;
    max-width: 100%;
  }
  .author-single__website-wrapper {
    margin-top: 24px;
    display: flex;
  }
}
.more-posts {
  padding: 40px 16px 64px 16px;
  border-top: 1px solid #DCDCDC;
}
.more-posts__item:hover .articles-list__item-img-hover {
  opacity: 1;
  transition: 0.2s all;
}
.more-posts__items-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
}
.more-posts__title {
  font-size: 40px;
  font-weight: 700;
}
.more-posts__item {
  display: block;
}

@media (max-width: 1024px) {
  .more-posts__items-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .more-posts {
    padding: 70px 12px 0 12px;
  }
  .more-posts__item:hover .articles-list__item-img-hover {
    opacity: 0;
    transition: 0.2s all;
  }
  .more-posts__items-wrapper {
    display: block;
  }
  .more-posts__item {
    margin-bottom: 64px;
  }
  .more-posts__title {
    margin-bottom: 40px;
  }
}
.authors-archive__title-wrapper {
  text-align: center;
  padding: 116px 16px;
}
.authors-archive__title {
  font-size: 40px;
  font-weight: 700;
}

.authors-filter {
  padding: 32px 32px 40px 32px;
  border-bottom: 1px solid #DCDCDC;
  border-top: 1px solid #DCDCDC;
}
.authors-filter__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.authors-filter__title {
  font-size: 12px;
  font-weight: 400;
}
.authors-filter__mob-trianle {
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #000;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  display: none;
}
.authors-filter__clear-all {
  font-size: 12px;
  line-height: 1.333;
  text-decoration: underline;
  cursor: pointer;
  display: none;
  font-weight: 400;
}
.authors-filter__letters-wrapper {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  gap: 14px;
  text-transform: uppercase;
}
.authors-filter__letter {
  cursor: pointer;
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.authors-filter__letter.active, .authors-filter__letter:hover {
  background: rgba(255, 238, 89, 0.9490196078);
}

.authors-filter-section-wrapper {
  margin-bottom: 80px;
  min-height: 500px;
}

.photographers-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #DCDCDC;
  padding: 32px;
  transition: all 0.2s;
}
.photographers-list__item:hover {
  transition: all 0.2s;
  border-bottom: 1px solid #000;
}
.photographers-list__item-name {
  font-size: 22px;
  font-weight: 700;
}
.photographers-list__item-img-wrapper {
  display: flex;
  gap: 6px;
}
.photographers-list__item-img {
  height: 64px;
}

.authors-list-item {
  border-bottom: 1px solid #DCDCDC;
}
.authors-list-item__header {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.authors-list-item__header:hover .authors-list-item__icon {
  background: #FFEE59;
}
.authors-list-item__title {
  font-size: 22px;
  font-weight: 700;
  transition: all 0.2s;
}
.authors-list-item__title:hover {
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s;
}
.authors-list-item__icon {
  width: 32px;
  height: 32px;
  background: #E6E6E6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.2s;
}
.authors-list-item__icon-plus, .authors-list-item__icon-minus {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
.authors-list-item__icon-minus {
  display: none;
}
.authors-list-item.is-open .authors-list-item__icon-plus {
  display: none;
}
.authors-list-item.is-open .authors-list-item__icon-minus {
  display: inline;
}
.authors-list-item.is-open .authors-list-item__icon {
  background: #FFEE59;
}
.authors-list-item__view-profile-link {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 8px;
  display: none;
}
.authors-list-item__articles-wrapper {
  padding: 24px 32px 32px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  display: none;
}
.authors-list-item__article {
  display: flex;
  gap: 16px;
}
.authors-list-item__article-img-wrapper {
  width: 96px;
}
.authors-list-item__article-img {
  width: 100%;
}
.authors-list-item__article-content {
  width: calc(100% - 112px);
}
.authors-list-item__article-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.authors-list-item__article-title {
  font-size: 14px;
  font-weight: 700;
}
.authors-list-item__article-excerpt {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(17, 16, 16, 0.8);
}
.authors-list-item__article-read-full {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .authors-archive__title-wrapper {
    padding: 8.056vw 1.111vw;
  }
  .authors-archive__title {
    font-size: 2.778vw;
  }
  .authors-filter {
    padding: 2.222vw 2.222vw 2.778vw 2.222vw;
    border-bottom: 0.069vw solid #DCDCDC;
    border-top: 0.069vw solid #DCDCDC;
  }
  .authors-filter__title {
    font-size: 0.833vw;
  }
  .authors-filter__mob-trianle {
    border-top: 0.208vw solid transparent;
    border-bottom: 0.208vw solid transparent;
    border-left: 0.417vw solid #000;
    margin-left: 0.278vw;
  }
  .authors-filter__clear-all {
    font-size: 0.833vw;
  }
  .authors-filter__letters-wrapper {
    font-size: 1.111vw;
    gap: 0.972vw;
  }
  .authors-filter__letter {
    width: 1.806vw;
    height: 1.806vw;
  }
  .authors-filter-section-wrapper {
    margin-bottom: 5.556vw;
    min-height: 34.722vw;
  }
  .photographers-list__item {
    padding: 2.222vw;
  }
  .photographers-list__item-name {
    font-size: 1.528vw;
  }
  .photographers-list__item-img-wrapper {
    gap: 0.417vw;
  }
  .photographers-list__item-img {
    height: 4.444vw;
  }
  .authors-list-item__header {
    padding: 2.222vw;
  }
  .authors-list-item__title {
    font-size: 1.528vw;
  }
  .authors-list-item__icon {
    width: 2.222vw;
    height: 2.222vw;
    flex: 0 0 2.222vw;
  }
  .authors-list-item__icon-plus, .authors-list-item__icon-minus {
    font-size: 1.389vw;
  }
  .authors-list-item__view-profile-link {
    font-size: 0.903vw;
    margin-top: 0.556vw;
  }
  .authors-list-item__articles-wrapper {
    padding: 1.667vw 2.222vw 2.222vw 2.222vw;
    gap: 3.333vw;
  }
  .authors-list-item__article {
    gap: 1.111vw;
  }
  .authors-list-item__article-img-wrapper {
    width: 6.667vw;
  }
  .authors-list-item__article-content {
    width: calc(100% - 7.778vw);
  }
  .authors-list-item__article-content {
    gap: 0.278vw;
  }
  .authors-list-item__article-title {
    font-size: 0.972vw;
  }
  .authors-list-item__article-excerpt {
    font-size: 0.833vw;
  }
  .authors-list-item__article-read-full {
    font-size: 0.972vw;
  }
}
@media (max-width: 768px) {
  .authors-archive__title-wrapper {
    text-align: center;
    padding: 64px 16px 0 16px;
  }
  .authors-archive__title {
    font-size: 36px;
  }
  .authors-filter {
    padding: 40px 24px 24px 24px;
    border-top: 0;
  }
  .authors-filter__wrapper {
    flex-direction: column;
    gap: 0;
    transition: gap 0.2s ease;
  }
  .authors-filter__wrapper.filter-open {
    gap: 32px;
  }
  .authors-filter__title {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .authors-filter__mob-trianle {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  .authors-filter__mob-trianle.filter-open {
    transform: rotate(90deg);
  }
  .authors-filter__clear-all {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.2s ease, visibility 0.2s ease;
  }
  .authors-filter__clear-all.filter-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 40px;
  }
  .authors-filter__letters-wrapper {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .authors-filter__letters-wrapper.filter-open {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .authors-filter-section-wrapper {
    margin-bottom: 28px;
  }
  .photographers-list__item {
    flex-direction: column;
    border-bottom: 1px solid #DCDCDC;
    padding: 32px 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .photographers-list__item-name {
    font-size: 22px;
    font-weight: 700;
  }
  .photographers-list__item-img-wrapper {
    display: flex;
    gap: 3px;
  }
  .photographers-list__item-img {
    height: 32px;
  }
  .authors-list-item__header {
    padding: 32px 24px;
  }
  .authors-list-item__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
  .authors-list-item__icon-plus, .authors-list-item__icon-minus {
    font-size: 18px;
    font-weight: 400;
  }
  .authors-list-item__view-profile-link {
    display: none;
  }
  .authors-list-item__articles-wrapper {
    padding: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .authors-list-item__article {
    flex-direction: row-reverse;
  }
}
.about-page__title-wrapper {
  padding: 96px 24px;
  text-align: center;
  border-bottom: 1px solid #DCDCDC;
}
.about-page__title {
  font-size: 40px;
  font-weight: 700;
}
.about-page__description {
  padding: 80px 16px;
  font-size: 16px;
  line-height: 1.375;
  max-width: 760px;
  margin: 0 auto;
}
.about-page__contacts-wrapper {
  background: linear-gradient(104.34deg, #FFFFF6 20.36%, #ADC8DA 79.04%);
  padding: 48px 32px;
  margin-bottom: 80px;
}
.about-page__contacts {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
}
.about-page__contacts-title {
  width: 510px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.about-page__contacts-email-block-wrapper {
  font-size: 22px;
}
.about-page__contacts-email-block-arrow {
  font-size: 18px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.about-page__contacts-email-block-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #FFEE59;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.about-page__contacts-email-block-text-wrapper {
  display: flex;
  align-self: center;
  gap: 16px;
  margin-bottom: 8px;
}
.about-page__contacts-email-block-link {
  text-decoration: underline;
  word-break: break-word;
}

@media (min-width: 768px) {
  .about-page__title-wrapper {
    padding: 6.667vw 1.667vw;
  }
  .about-page__title {
    font-size: 2.778vw;
  }
  .about-page__description {
    padding: 5.556vw 1.111vw;
    font-size: 1.111vw;
    max-width: 52.778vw;
  }
  .about-page__contacts-wrapper {
    padding: 3.333vw 2.222vw;
    margin-bottom: 5.556vw;
  }
  .about-page__contacts {
    max-width: 61.806vw;
    gap: 1.111vw;
  }
  .about-page__contacts-title {
    width: 35.417vw;
    font-size: 2.778vw;
  }
  .about-page__contacts-email-block-wrapper {
    font-size: 1.528vw;
  }
  .about-page__contacts-email-block-arrow {
    font-size: 1.25vw;
  }
  .about-page__contacts-email-block-arrow::after {
    width: 1.389vw;
    height: 1.389vw;
  }
  .about-page__contacts-email-block-text-wrapper {
    gap: 1.111vw;
    margin-bottom: 0.556vw;
  }
}
@media (max-width: 768px) {
  .about-page__title-wrapper {
    padding: 64px 24px;
  }
  .about-page__title {
    font-size: 36px;
    line-height: 1.15;
  }
  .about-page__description {
    padding: 24px 12px;
  }
  .about-page__contacts-wrapper {
    padding: 48px 32px;
    margin-bottom: 64px;
  }
  .about-page__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .about-page__contacts-title {
    width: auto;
    font-size: 36px;
  }
  .about-page__contacts-email-block-wrapper {
    width: 100%;
    font-size: 16px;
  }
}
.article-title {
  padding: 96px 24px;
  text-align: center;
  border-bottom: 1px solid #DCDCDC;
}
.article-title__title-item {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}
.article-title__author-wrapper {
  font-size: 12px;
  font-weight: 400;
}
.article-title__author-text {
  color: rgba(0, 0, 0, 0.6);
}
.article-title__author {
  text-decoration: underline;
}

.article-header {
  padding: 40px 80px 48px 80px;
}
.article-header__wrapper {
  display: flex;
  justify-content: space-between;
}
.article-header__text {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.375;
}
.article-header__text a {
  text-decoration: underline;
}
.article-header__tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.article-header__tag {
  font-size: 13px;
  padding: 8px 10px;
  background-color: #FFEE59;
}

.article-content {
  padding: 0 20px;
  margin: 48px 0;
}
.article-content__wrapper {
  max-width: 815px;
  margin: 0 auto;
}
.article-content__img-wrapper {
  position: relative;
  margin-bottom: 32px;
}
.article-content__img-caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.6);
}
.article-content__img-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.article-content__img-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  background: #FFEE59;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0;
}
.article-content__text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 32px;
}
.article-content__gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.article-quote {
  padding: 0 80px;
  margin: 0 48px;
}
.article-quote__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
.article-quote__internal-wrapper {
  max-width: 760px;
}

.article-gallery-2-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.article-author {
  padding: 40px 16px 64px 16px;
  border-top: 1px solid #DCDCDC;
}
.article-author__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
}
.article-author__header {
  grid-column: span 1;
}
.article-author__body {
  grid-column: span 2;
  padding-right: 80px;
}
.article-author__title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.article-author__contributors {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}
.article-author__body-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.article-author__body-img-wrapper {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-author__body-header-title {
  font-size: 22px;
  line-height: 1.27;
  margin-bottom: 8px;
}
.article-author__body-header-title-arrow {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.article-author__body-header-title-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #FFEE59;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0;
}
.article-author__body-description {
  font-size: 14px;
  line-height: 1.57;
  font-weight: 400;
}

.img-fullscreen {
  cursor: zoom-in;
}

body.is-img-fullscreen-open {
  overflow: hidden;
}

.img-fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.img-fullscreen-modal__img {
  max-height: 85vh;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  height: 85vh;
}

.img-fullscreen-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.img-fullscreen-modal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .article-title {
    padding: 6.667vw 1.667vw;
  }
  .article-title__title-item {
    font-size: 2.778vw;
    margin-bottom: 1.667vw;
  }
  .article-title__author-wrapper {
    font-size: 0.833vw;
  }
  .article-header {
    padding: 2.778vw 5.556vw 3.333vw 5.556vw;
  }
  .article-header__text {
    max-width: 52.778vw;
    font-size: 1.111vw;
  }
  .article-header__tags-wrapper {
    gap: 0.278vw;
  }
  .article-header__tag {
    font-size: 0.903vw;
    padding: 0.556vw 0.694vw;
  }
  .article-content {
    padding: 0 1.389vw;
    margin: 3.333vw 0;
  }
  .article-content a {
    text-decoration: underline;
  }
  .article-content__wrapper {
    max-width: 56.597vw;
  }
  .article-content__img-wrapper {
    margin-bottom: 2.222vw;
  }
  .article-content__img-caption {
    font-size: 0.833vw;
    margin-top: 0.556vw;
  }
  .article-content__img-plus {
    font-size: 1.667vw;
    width: 2.222vw;
    height: 2.222vw;
  }
  .article-content__img-plus::after {
    width: 2.222vw;
    height: 2.222vw;
  }
  .article-content__text {
    font-size: 0.972vw;
    margin-bottom: 2.222vw;
  }
  .article-content__gallery {
    gap: 2.222vw;
  }
  .article-quote {
    padding: 0 5.556vw;
    margin: 0 3.333vw;
  }
  .article-quote__wrapper {
    max-width: 88.889vw;
    font-size: 1.111vw;
  }
  .article-quote__internal-wrapper {
    max-width: 52.778vw;
  }
  .article-gallery-2-columns {
    gap: 2.222vw;
  }
  .article-author {
    padding: 2.778vw 1.111vw 4.444vw 1.111vw;
  }
  .article-author__wrapper {
    gap: 7.639vw;
  }
  .article-author__body {
    padding-right: 5.556vw;
  }
  .article-author__title {
    font-size: 2.778vw;
    margin-bottom: 0.556vw;
  }
  .article-author__contributors {
    font-size: 0.903vw;
  }
  .article-author__body-header {
    gap: 1.667vw;
    margin-bottom: 1.111vw;
  }
  .article-author__body-img-wrapper {
    width: 8.333vw;
    height: 8.333vw;
  }
  .article-author__body-header-title {
    font-size: 1.528vw;
    margin-bottom: 0.556vw;
  }
  .article-author__body-header-title-arrow {
    font-size: 1.25vw;
    width: 1.389vw;
    height: 1.389vw;
  }
  .article-author__body-header-title-arrow::after {
    width: 1.389vw;
    height: 1.389vw;
  }
  .article-author__body-description {
    font-size: 0.972vw;
  }
  .img-fullscreen-modal {
    padding: 1.667vw;
  }
  .img-fullscreen-modal__close {
    top: 1.111vw;
    right: 1.111vw;
    width: 3.056vw;
    height: 3.056vw;
    font-size: 2.361vw;
  }
  .img-fullscreen-modal__close:focus-visible {
    outline-offset: 0.139vw;
  }
}
@media (max-width: 768px) {
  .article-title {
    padding: 64px 24px;
  }
  .article-title__title-item {
    font-size: 36px;
    line-height: 1.1;
  }
  .article-header {
    padding: 40px 12px 32px 12px;
  }
  .article-header__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-direction: column-reverse;
  }
  .article-header__text {
    max-width: 100%;
  }
  .article-header__tags-wrapper {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: flex-start;
  }
  .article-header__tag {
    font-size: 13px;
    padding: 8px 10px;
    background-color: #FFEE59;
  }
  .article-content {
    padding: 0 12px;
    margin: 0 0 32px 0;
  }
  .article-content__wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .article-content__text {
    font-size: 16px;
  }
  .article-quote {
    padding: 32px 24px;
    margin: 0;
  }
  .article-quote__wrapper {
    max-width: 100%;
  }
  .article-quote__internal-wrapper {
    max-width: 100%;
  }
  .article-author {
    padding: 40px 12px;
  }
  .article-author__wrapper {
    display: block;
  }
  .article-author__header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .article-author__body {
    padding-right: 0;
  }
  .article-author__title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 0;
  }
  .article-author__contributors {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
  }
  .article-author__body-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
  }
  .article-author__body-img-wrapper {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article-author__body-header-title {
    font-size: 22px;
    line-height: 1.27;
    margin-bottom: 8px;
  }
  .article-author__body-header-title-arrow {
    font-size: 18px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  .article-author__body-header-title-arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #FFEE59;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 0;
  }
  .article-author__body-description {
    font-size: 14px;
    line-height: 1.57;
    font-weight: 400;
  }
}
.photographer-projects__wrapper {
  margin-top: 40px;
}

.photographer-projects__title {
  margin: 0 0 18px 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.photographer-projects__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.photographer-projects__item {
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.photographer-projects__item-title {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.photographer-projects__gallery {
  padding-bottom: 8px;
}

.photographer-projects__gallery-item {
  width: 100%;
  height: clamp(240px, 40vw, 520px);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.photographer-projects__gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.photographer-projects__gallery.owl-theme {
  position: relative;
}

.photographer-projects__gallery.owl-theme .owl-nav {
  margin: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.photographer-projects__gallery.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.photographer-projects__gallery.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
  pointer-events: auto;
  display: grid;
  place-items: center;
}

.photographer-projects__gallery.owl-theme .owl-nav .owl-prev {
  left: 0;
}

.photographer-projects__gallery.owl-theme .owl-nav .owl-next {
  right: 0;
}

.photographer-projects__gallery.owl-theme .owl-nav .owl-prev::before,
.photographer-projects__gallery.owl-theme .owl-nav .owl-next::before {
  content: "";
  width: 28px;
  height: 28px;
  border-right: 4px solid rgba(0, 0, 0, 0.6);
  border-bottom: 4px solid rgba(0, 0, 0, 0.6);
  transform-origin: center;
}

.photographer-projects__gallery.owl-theme .owl-nav .owl-next::before {
  transform: rotate(-45deg);
}

.photographer-projects__gallery.owl-theme .owl-nav .owl-prev::before {
  transform: rotate(135deg);
}

.photographer-projects__text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 72ch;
}

.photographer-projects__text p {
  margin: 0 0 12px 0;
}

.photographer-projects__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .photographer-projects__wrapper {
    margin-top: 2.778vw;
  }
  .photographer-projects__title {
    margin: 0 0 1.25vw 0;
    font-size: 1.389vw;
  }
  .photographer-projects__items {
    gap: 1.944vw;
  }
  .photographer-projects__item {
    padding-top: 1.528vw;
    border-top: 0.069vw solid rgba(0, 0, 0, 0.12);
  }
  .photographer-projects__item-title {
    margin: 0 0 0.972vw 0;
    font-size: 1.111vw;
  }
  .photographer-projects__gallery {
    padding-bottom: 0.556vw;
  }
  .photographer-projects__gallery-item {
    height: 36.111vw;
    border-radius: 0.694vw;
  }
  .photographer-projects__gallery.owl-theme .owl-nav {
    pointer-events: none;
  }
  .photographer-projects__gallery.owl-theme .owl-nav [class*=owl-] {
    width: 3.889vw;
    height: 3.889vw;
  }
  .photographer-projects__gallery.owl-theme .owl-nav .owl-prev::before,
  .photographer-projects__gallery.owl-theme .owl-nav .owl-next::before {
    width: 1.944vw;
    height: 1.944vw;
    border-right: 0.278vw solid rgba(0, 0, 0, 0.6);
    border-bottom: 0.278vw solid rgba(0, 0, 0, 0.6);
  }
  .photographer-projects__text {
    margin-top: 0.972vw;
    font-size: 0.972vw;
  }
  .photographer-projects__text p {
    margin: 0 0 0.833vw 0;
  }
}/*# sourceMappingURL=styles.css.map */