@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
	 Убираем внутренние отступы слева тегам списков,
	 у которых есть атрибут class
	*/
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
	 Убираем внешние отступы body и двум другим тегам,
	 у которых есть атрибут class
	*/
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
	 Убираем внешние отступы вертикали нужным тегам,
	 у которых есть атрибут class
	*/
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
	 Убираем стандартный маркер маркированному списку,
	 у которого есть атрибут class
	*/
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
	 Обнуляем вертикальные внешние отступы параграфа,
	 объявляем локальную переменную для внешнего отступа вниз,
	 чтобы избежать взаимодействие с более сложным селектором
	*/
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
	 Внешний отступ вниз для параграфа без атрибута class,
	 который расположен не последним среди своих соседних элементов
	*/
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
	 Упрощаем работу с изображениями и видео
	*/
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
	 Наследуем свойства шрифт для полей ввода
	*/
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
  	 Пригодится в большинстве ситуаций
  	 (когда, например, нужно будет "прижать" футер к низу сайта)
  	*/
  height: 100%;
  /**
  	 Убираем скачок интерфейса по горизонтали
  	 при появлении / исчезновении скроллбара
  	*/
  scrollbar-gutter: stable;
}

/**
	 Плавный скролл
	*/
html {
  scroll-behavior: smooth;
}

body {
  /**
  	 Пригодится в большинстве ситуаций
  	 (когда, например, нужно будет "прижать" футер к низу сайта)
  	*/
  min-height: 100%;
  /**
  	 Унифицированный интерлиньяж
  	*/
  line-height: 1.5;
}

/**
	 Нормализация высоты элемента ссылки при его инспектировании в DevTools
	*/
a:where([class]) {
  display: inline-flex;
}

/**
	 Курсор-рука при наведении на элемент
	*/
button,
label {
  cursor: pointer;
}

/**
	 Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
	*/
button {
  -webkit-tap-highlight-color: transparent;
}

/**
	 Приводим к единому цвету svg-элементы
	 (за исключением тех, у которых уже указан
	 атрибут fill со значением 'none' или начинается с 'url')
	*/
:where([fill]:not([fill=none], [fill^=url])) {
  fill: currentColor;
}

/**
	 Приводим к единому цвету svg-элементы
	 (за исключением тех, у которых уже указан
	 атрибут stroke со значением 'none')
	*/
:where([stroke]:not([stroke=none], [stroke^=url])) {
  stroke: currentColor;
}

/**
	 Чиним баг задержки смены цвета при взаимодействии с svg-элементами
	*/
svg * {
  transition-property: fill, stroke;
}

/**
	 Приведение рамок таблиц в классический 'collapse' вид
	*/
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
	 Удаляем все анимации и переходы для людей,
	 которые предпочитают их не использовать
	*/
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yanone Kaffeesatz";
  src: url("../fonts/YanoneKaffeesatz-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yanone Kaffeesatz";
  src: url("../fonts/YanoneKaffeesatz-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #000000;
  --color-light: #ffffff;
  --color-gray: #a4a4a4;
  --color-accent: #0057a8;
  --color-error: #bd5454;
  --color-dark-beige: #d0a95e;
  --color-block-yellow: #fbe49a;
  --color-block-red: #3d010e;
  --color-block-green: #003822;
  --color-block-blue: #03658c;
  --color-block-orange: #c45335;
  --color-block-purple: #290f63;
  --border-radius: 24px;
  --border-radius-large: 24px;
  --border: 1px solid var(--color-dark);
  --font-family-base: "Montserrat", sans-serif;
  --font-family-heading: "Yanone Kaffeesatz", sans-serif;
  --container-width: 1280px;
  --container-padding-x: 16px;
  --container-padding-x-large: 5vw;
  --section-padding-y: 80px;
  --transition-duration: 0.2s;
  --button-height: 40px;
}

body {
  font-size: clamp(18px, 1.1111111111vw, 16px);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-light);
  background-color: var(--color-dark);
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
}

a,
button,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

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

h1 {
  font-size: clamp(64px, 4.4444444444vw, 64px);
  font-weight: 700;
  font-family: var(--font-family-heading);
}

h2 {
  font-size: clamp(48px, 3.3333333333vw, 48px);
  font-weight: 400;
  font-family: var(--font-family-heading);
}

span {
  font-family: var(--font-family-base);
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
@media (min-width: 1313px) {
  .container {
    max-width: none;
    padding-inline: clamp(16px, 2vw, 5vw);
  }
}
@media (min-width: 1600px) {
  .container {
    padding-inline: 5vw;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

@media (max-width: 320px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 321px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1281px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .hidden-mobile-s {
    display: none !important;
  }
}

body.isfahan-school,
body.modern-isfahan,
body.tabriz-style,
body.timurid-style,
body.traditional-process {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
}
body.isfahan-school .section,
body.modern-isfahan .section,
body.tabriz-style .section,
body.timurid-style .section,
body.traditional-process .section {
  min-height: auto;
  scroll-snap-align: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--button-height);
  padding-inline: 24px;
  font-size: 16px;
  color: var(--color-light);
  background-color: var(--color-block-green);
  border-radius: var(--border-radius);
  border: var(--border);
}
@media (hover: hover) {
  .button:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border: 1px solid var(--color-light);
  }
}
@media (hover: none) {
  .button:active {
    background-color: var(--color-dark);
    color: var(--color-light);
    border: 1px solid var(--color-light);
  }
}

.burger-button {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 36px;
  height: 36px;
  position: relative;
  margin-right: 20px;
  z-index: 1001;
}
.burger-button::before, .burger-button::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: var(--color-light);
  border-radius: 5px;
  transform: translateX(-50%);
  transition: all var(--transition-duration) ease;
  pointer-events: none;
}
.burger-button::before {
  top: calc(50% - 6px);
  box-shadow: 0 6px var(--color-light);
}
.burger-button::after {
  top: calc(50% + 6px);
}
.burger-button.active::before {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: none;
}
.burger-button.active::after {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: padding-bottom var(--transition-duration) ease, background-color var(--transition-duration) ease, backdrop-filter var(--transition-duration) ease;
  padding-top: 47px;
  padding-bottom: 25px;
}
.header.menu-active {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (min-width: 1281px) {
  .header {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1921px) {
  .header {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
}
@media (max-width: 430px) {
  .header__logo {
    max-width: 120px;
  }
}
.header__menu {
  margin-left: auto;
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 0 20px 0 0;
}
.header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
}
@media (hover: hover) {
  .header__menu-link:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .header__menu-link:active::after {
    width: 100%;
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition-duration: inherit;
}

.mobile-overlay {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color-light);
}
.mobile-overlay__body {
  display: none;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px 40px;
  opacity: 0;
  z-index: 1000;
  transition: all var(--transition-duration) ease;
}
.mobile-overlay__body.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.mobile-overlay__title {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-family-heading);
  color: var(--color-light);
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.mobile-overlay__body.active .mobile-overlay__title {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay__title::before, .mobile-overlay__title::after {
  content: "";
  position: absolute;
  bottom: 70px;
  height: 1px;
  background-color: var(--color-light);
  z-index: -1;
}
.mobile-overlay__title::before {
  left: -20px;
  right: 85%;
}
@media (min-width: 441px) {
  .mobile-overlay__title::before {
    right: 80%;
  }
}
.mobile-overlay__title::after {
  left: 85%;
  right: -20px;
}
@media (min-width: 441px) {
  .mobile-overlay__title::after {
    left: 80%;
  }
}
.mobile-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: flex-start;
  counter-reset: menu-counter;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.mobile-overlay__body.active .mobile-overlay__list {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay__menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  counter-increment: menu-counter;
  position: relative;
}
.mobile-overlay__menu-item::before {
  content: counter(menu-counter);
  font-family: var(--font-family-heading);
  font-size: clamp(42px, 8vw, 48px);
  color: var(--color-light);
  min-width: 60px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 18px;
  position: relative;
  z-index: 1;
}
.mobile-overlay__menu-item::after {
  content: "";
  position: absolute;
  left: -20px;
  width: 34px;
  top: 50%;
  height: 1px;
  background-color: var(--color-light);
  z-index: 0;
}
.mobile-overlay__menu-link {
  color: inherit;
  display: block;
  padding: 0 0 0 7px;
  text-align: left;
  color: var(--color-light);
  font-family: var(--font-family-base);
  font-size: clamp(24px, 4vw, 20px);
  line-height: 1.4;
  flex: 1;
  -webkit-tap-highlight-color: transparent;
}
.mobile-overlay__menu-link, .mobile-overlay__menu-link:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .mobile-overlay__menu-link:hover {
    text-decoration: underline;
  }
}
@media (hover: none) {
  .mobile-overlay__menu-link:active {
    text-decoration: underline;
  }
}

.section {
  min-height: 100vh;
}
@supports (min-height: 100dvh) {
  .section {
    min-height: 100dvh;
  }
}
.section__body {
  position: relative;
}

.hero {
  background-color: var(--color-block-yellow);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__main {
  position: relative;
  width: 100%;
}
@media (max-width: 1280px) {
  .hero__main {
    transform: translateX(20%) translateY(20%);
  }
}
.hero__dots {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
@media (min-width: 1281px) {
  .hero__dots {
    top: -40px;
    gap: 17px;
  }
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: white;
  cursor: default;
  transition: background-color 0.3s ease;
}
.hero__dot--active {
  background-color: var(--color-dark-beige);
}
@media (min-width: 1281px) {
  .hero__dot {
    width: 11px;
    height: 11px;
  }
}
.hero__arc {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translate(0%, -6%) scale(1.27);
  width: 400px;
  height: auto;
  z-index: 1;
}
@media (min-width: 1281px) {
  .hero__arc {
    transform: translateX(-50%) translate(0%, 16%) scale(1.9);
  }
}
.hero__image-wrapper {
  position: relative;
  width: 400px;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50vmin 50vmin 0 0;
  z-index: 2;
}
@media (min-width: 1281px) {
  .hero__image-wrapper {
    width: 590px;
    height: 665px;
  }
}
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(5%, -1%) scale(1.1);
}
@media (min-width: 1281px) {
  .hero__image {
    object-fit: contain;
    object-position: center center;
    transform: translate(6%, 0%) scale(1.35);
  }
}

.description {
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding-top: 33%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1281px) {
  .description {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: 0;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
  }
}
.description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 80%);
  z-index: 7;
  pointer-events: none;
}
.description::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 630px;
  height: 136px;
  background-color: var(--current-slide-color, var(--color-block-blue));
  filter: blur(50px);
  transform: rotate(11deg) translateX(35%);
  z-index: 8;
  pointer-events: none;
  transition: background-color var(--transition-duration);
}
.description__slide {
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding-top: 33%;
  overflow: hidden;
  position: relative;
}
.description__title {
  font-size: 64px;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (min-width: 1281px) {
  .description__title {
    font-size: 70px;
    margin-bottom: 25px;
    word-wrap: break-word;
    max-width: 100%;
  }
}
@media (min-width: 1921px) {
  .description__title {
    font-size: 80px;
    margin-bottom: 30px;
  }
}
.description__text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 1281px) {
  .description__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 100%;
    word-wrap: break-word;
  }
}
@media (min-width: 1921px) {
  .description__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
}
.description__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 1281px) {
  .description__inner {
    position: relative;
    width: 50%;
    flex: 0 0 50%;
    padding-right: 30px;
    margin-inline: 0 !important;
    max-width: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
  }
}
@media (min-width: 1921px) {
  .description__inner {
    padding-right: 40px;
  }
}
.description__button-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: auto;
  transition: bottom 0.5s ease-out !important;
}
@media (min-width: 1281px) {
  .description__button-wrapper {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    max-width: fit-content;
    flex-shrink: 0;
    margin-top: auto;
  }
}
.description__button {
  background-color: var(--current-slide-color, var(--color-block-blue));
  transition: background-color var(--transition-duration), bottom 0.5s ease-out !important;
  border: none !important;
  pointer-events: auto;
  cursor: pointer;
  color: var(--color-light);
  padding: 12px 34px;
  border-radius: var(--border-radius);
  font-family: var(--font-family-base);
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 360px) {
  .description__button {
    padding: 12px 24px;
    font-size: 13px;
    min-width: 140px;
  }
}
@media (min-width: 1281px) {
  .description__button {
    padding: 14px 36px;
    font-size: 15px;
  }
}
@media (min-width: 1921px) {
  .description__button {
    padding: 16px 40px;
    font-size: 16px;
  }
}
.description__button:hover {
  background-color: var(--current-slide-color, var(--color-block-blue));
  opacity: 0.8;
}
.description__arc {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translate(0%, -10%) scale(1.25);
  width: 400px;
  height: auto;
  z-index: 6;
}
@media (min-width: 1281px) {
  .description__arc {
    position: absolute;
    bottom: -280px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) scale(1.02);
    width: 500px;
  }
}
@media (min-width: 1921px) {
  .description__arc {
    bottom: 600px;
    transform: translateX(-50%) scale(1.07);
    width: 600px;
  }
}
.description__image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  width: 376px;
  height: 540px;
  border-radius: 50vmin 50vmin 0 0;
  z-index: 5;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 1281px) {
  .description__image-wrapper {
    position: relative;
    width: 50%;
    left: 25% !important;
    flex: 0 0 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.description__image-wrapper--transitioning {
  z-index: 6;
  will-change: opacity;
}
.description__figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 50vmin 50vmin 0 0;
}
@media (min-width: 1281px) {
  .description__figure {
    position: relative;
    width: 400px;
    height: 600px;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1921px) {
  .description__figure {
    width: 500px;
    height: 750px;
  }
}
.description__image {
  display: block;
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: translate(8%, -4%) scale(1.2);
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
@media (min-width: 1281px) {
  .description__image {
    transform: translate(0%, -4%) scale(1);
  }
}
.description__image-wrapper:not(.description__image-wrapper--transitioning) .description__image:not(.loaded) {
  opacity: 0;
}
.description__arrows {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 15;
  pointer-events: none;
}
@media (min-width: 1281px) {
  .description__arrows {
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    width: 50%;
    transform: translateY(150%);
    padding: 0 10%;
    justify-content: space-between;
  }
}
@media (min-width: 1921px) {
  .description__arrows {
    padding: 0 80px;
  }
}
.description__arrow {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-duration);
}
@media (min-width: 1281px) {
  .description__arrow {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1921px) {
  .description__arrow {
    width: 64px;
    height: 64px;
  }
}
.description__arrow:hover {
  transform: scale(1.1);
}
.description__arrow img {
  width: 20px;
  height: 20px;
}
@media (min-width: 1281px) {
  .description__arrow img {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1921px) {
  .description__arrow img {
    width: 28px;
    height: 28px;
  }
}
.description__read-more {
  padding: 0;
  border: none;
  background-color: transparent;
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-duration);
}
.description__read-more:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
}

.gallery {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  touch-action: pan-y;
}
.gallery::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-block-blue);
  opacity: 0.7;
  filter: blur(150px);
  transform: translate(-50%, -50%) rotate(11deg);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1281px) {
  .gallery::before {
    width: 1000px;
    height: 300px;
  }
}
@media (min-width: 431px) {
  .gallery {
    max-width: 441px;
    width: 441px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
}
@media (min-width: 1281px) {
  .gallery {
    padding: 70px 0;
  }
}
.gallery__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.gallery__slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.gallery__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__arrows {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--container-padding-x);
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 431px) {
  .gallery__arrows {
    display: none;
  }
}
.gallery__arrow {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-duration);
  touch-action: manipulation;
}
.gallery__arrow:hover {
  transform: scale(1.1);
}
.gallery__arrow img {
  width: 20px;
  height: 20px;
}
.gallery__upscale {
  position: absolute;
  bottom: var(--container-padding-x);
  right: var(--container-padding-x);
  z-index: 2;
  transition: bottom 0.5s ease-out !important;
}
@media (min-width: 431px) {
  .gallery__upscale {
    display: none;
  }
}
.gallery__desktop-controls {
  position: absolute;
  bottom: 50px;
  right: 80px;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.gallery__upscale-button {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-duration);
  touch-action: manipulation;
}
.gallery__upscale-button:hover {
  transform: scale(1.1);
}
.gallery__upscale-button img {
  width: 25px;
  height: 25px;
}

.master {
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding-top: 33%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1281px) {
  .master {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding-top: 0;
  }
}
.master::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 80%);
  z-index: 2;
  pointer-events: none;
}
.master::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 630px;
  height: 136px;
  background-color: var(--color-block-purple);
  filter: blur(50px);
  transform: rotate(11deg) translateX(35%);
  z-index: 3;
  pointer-events: none;
}
.master__title {
  font-size: 64px;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (max-width: 430px) {
  .master__title {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1281px) {
  .master__title {
    font-size: 70px;
    margin-bottom: 25px;
    word-wrap: break-word;
    max-width: 100%;
  }
}
@media (min-width: 1921px) {
  .master__title {
    font-size: 80px;
    margin-bottom: 30px;
  }
}
.master__about {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 1281px) {
  .master__about {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 100%;
    word-wrap: break-word;
  }
}
@media (min-width: 1921px) {
  .master__about {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
}
.master__button {
  background-color: var(--color-block-purple);
  color: var(--color-light);
  border: none;
  padding: 12px 34px;
  border-radius: var(--border-radius);
  font-family: var(--font-family-base);
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
  transition: bottom 0.5s ease-out !important;
}
@media (max-width: 360px) {
  .master__button {
    padding: 12px 24px;
    font-size: 13px;
    min-width: 140px;
  }
}
@media (min-width: 1281px) {
  .master__button {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    padding: 14px 36px;
    font-size: 15px;
    width: auto;
    max-width: fit-content;
    flex-shrink: 0;
  }
}
@media (min-width: 1921px) {
  .master__button {
    padding: 16px 40px;
    font-size: 16px;
  }
}
.master__button:hover {
  opacity: 0.8;
}
.master__inner {
  position: relative;
  z-index: 5;
  width: 100%;
}
@media (min-width: 1281px) {
  .master__inner {
    order: 2;
    padding-left: 30px;
    max-width: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1921px) {
  .master__inner {
    padding-left: 40px;
    max-width: 700px;
  }
}
.master__image-wrapper {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 400px;
  height: 600px;
  z-index: 1;
}
@media (min-width: 1281px) {
  .master__image-wrapper {
    position: relative;
    order: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.master__arc {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-49%) translate(-13.5%, 2%) scale(0.95);
  width: 400px;
  height: auto;
  z-index: 1;
}
@media (min-width: 1281px) {
  .master__arc {
    position: absolute;
    bottom: -280px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) scale(1.02);
    width: 500px;
  }
}
@media (min-width: 1921px) {
  .master__arc {
    bottom: 600px;
    transform: translateX(-50%) scale(1.07);
    width: 600px;
  }
}
.master__photo-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 450px;
  overflow: hidden;
  border-radius: 50vmin 50vmin 0 0;
  z-index: 2;
}
@media (min-width: 1281px) {
  .master__photo-wrapper {
    position: relative;
    width: 400px;
    height: 600px;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1921px) {
  .master__photo-wrapper {
    width: 500px;
    height: 750px;
  }
}
.master__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(3%, 5%) scale(1.1);
}

.contact {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 68%;
  overflow: hidden;
  position: relative;
  padding-left: 5vh;
}
@media (min-width: 1281px) {
  .contact {
    padding-top: 0;
    padding-left: 80px;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 1921px) {
  .contact {
    padding-left: 120px;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 80%);
  z-index: 2;
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  right: 0;
  width: 630px;
  height: 136px;
  background-color: var(--color-accent);
  opacity: 0.45;
  filter: blur(50px);
  transform: rotate(11deg) translateX(35%);
  z-index: 3;
  pointer-events: none;
}
@media (min-width: 1281px) {
  .contact::after {
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg) translateX(-20%);
    width: 800px;
    height: 200px;
    filter: blur(60px);
  }
}
@media (min-width: 1921px) {
  .contact::after {
    width: 1400px;
    height: 350px;
    filter: blur(80px);
    transform: translateY(-50%) rotate(-5deg) translateX(-25%);
  }
}
.contact__title {
  font-size: 64px;
  line-height: 1;
  font-family: var(--font-family-heading);
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1281px) {
  .contact__title {
    font-size: 80px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1921px) {
  .contact__title {
    font-size: 120px;
    margin-bottom: 40px;
  }
}
.contact__place-holder {
  font-size: 16px;
  color: var(--color-gray);
  font-family: var(--font-family-base);
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1281px) {
  .contact__place-holder {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1921px) {
  .contact__place-holder {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.contact__email {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  font-family: var(--font-family-heading);
  margin: 0;
  position: relative;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 430px) {
  .contact__email {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .contact__email {
    font-size: 25px;
  }
}
.contact__email:focus {
  outline: none;
  color: inherit;
}
.contact__email:active {
  color: inherit;
}
@media (min-width: 1281px) {
  .contact__email {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1921px) {
  .contact__email {
    font-size: 72px;
    margin-bottom: 60px;
  }
}
.contact__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-15px);
  background: white;
  color: black;
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-family: var(--font-family-base);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.contact__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}
.contact__tooltip::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/images/tooltip.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.contact__tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
@media (min-width: 1281px) {
  .contact__tooltip {
    font-size: 16px;
    padding: 14px 18px;
  }
  .contact__tooltip::before {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1921px) {
  .contact__tooltip {
    font-size: 18px;
    padding: 16px 20px;
  }
  .contact__tooltip::before {
    width: 20px;
    height: 20px;
  }
}
.contact__footer {
  position: absolute;
  font-weight: bold;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-family: var(--font-family-base);
  color: var(--color-light);
  z-index: 5;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease, bottom 0.5s ease-out !important;
}
.contact__footer:hover {
  opacity: 0.7;
}
@media (min-width: 1281px) {
  .contact__footer {
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
  }
}
@media (min-width: 1921px) {
  .contact__footer {
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-duration);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal__close {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: var(--container-padding-x);
  right: var(--container-padding-x);
  background-color: var(--color-dark);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-duration);
}
.modal__close:hover {
  transform: scale(1.1);
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-light);
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}
.modal__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}
.modal__image-container:active {
  cursor: grabbing;
}
.modal__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  user-select: none;
  pointer-events: none;
  object-fit: contain;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
}
.modal__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-light);
  z-index: 1002;
}
.modal__author {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

body.timurid-style {
  --current-article-color: var(--color-block-red);
}

body.tabriz-style {
  --current-article-color: var(--color-block-green);
}

body.isfahan-school {
  --current-article-color: var(--color-block-blue);
}

body.modern-isfahan {
  --current-article-color: var(--color-block-purple);
}

body.traditional-process {
  --current-article-color: var(--color-block-orange);
}

.article-hero {
  position: relative;
  height: 510px;
  display: flex;
  align-items: start;
  padding: 120px 0 60px 0;
  overflow: hidden;
}
@media (min-width: 431px) {
  .article-hero {
    height: 530px;
  }
}
@media (min-width: 441px) {
  .article-hero {
    height: 550px;
  }
}
@media (min-width: 1281px) {
  .article-hero {
    padding: 120px 0 60px 25%;
  }
}
.article-hero__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0;
  padding: 0 30% 0 30px;
}
@media (min-width: 1281px) {
  .article-hero__content {
    max-width: 800px;
  }
}
.article-hero__title {
  font-family: var(--font-family-heading);
  color: var(--color-light);
  line-height: 1;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 431px) {
  .article-hero__title {
    margin-top: 80px !important;
  }
}
@media (min-width: 1281px) {
  .article-hero__title {
    margin-top: 120px !important;
    font-size: 68px !important;
  }
}
.article-hero__image {
  border-radius: 50vmin 50vmin 0 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translate(0%, 30%) scale(1.1);
  max-width: 400px;
  max-height: 500px;
  object-fit: cover;
  z-index: 5;
  opacity: 0.7;
}
.article-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 630px;
  height: 136px;
  background-color: var(--current-article-color, var(--color-block-blue));
  filter: blur(50px);
  transform: rotate(11deg) translateX(35%);
  z-index: 3;
  pointer-events: none;
  transition: background-color var(--transition-duration);
}
@media (min-width: 431px) {
  .article-hero::after {
    top: 5vh;
    right: -10vh;
    width: 800px;
    height: 160px;
    filter: blur(70px);
  }
}
.article-hero.timurid-style .article-hero__title {
  font-size: 64px;
}
.article-hero.tabriz-style .article-hero__title {
  font-size: 64px;
}
.article-hero.isfahan-school .article-hero__title {
  font-size: 64px;
}
.article-hero.modern-isfahan .article-hero__title {
  font-size: 52px;
}
.article-hero.traditional-process .article-hero__title {
  font-size: 46px;
}
@media (max-width: 320px) {
  .article-hero {
    height: 600px;
    padding: 100px 0 40px 0;
  }
  .article-hero .article-hero__title {
    margin-left: 20px;
  }
  .article-hero__image {
    max-width: 300px;
    max-height: 350px;
  }
  .article-hero::after {
    width: 400px;
    height: 100px;
  }
}

.article {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 30px;
}
.article__header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.article__title {
  font-size: clamp(64px, 3.3333333333vw, 48px);
  font-family: var(--font-family-heading);
  font-weight: 400;
  color: var(--color-light);
  margin-top: 40px;
  line-height: 1;
}
.article__content {
  line-height: 1.6;
}
.article__section-title {
  font-size: 24px;
  font-family: var(--font-family-base);
  font-weight: 600;
  color: var(--color-light);
  margin: 40px 0 20px 0;
  line-height: 1.5;
}
.article__text-section {
  padding-left: 60px;
  position: relative;
}
.article__text-section .article__section-title {
  position: relative;
}
.article__text-section .article__section-title::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--color-light);
  transform: translateY(-50%);
}
.article__text {
  font-size: clamp(18px, 1.1111111111vw, 16px);
  color: var(--color-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.article__text:last-child {
  margin-bottom: 0;
}
.article__text strong {
  color: var(--color-accent);
  font-weight: 600;
}
.article__quote-wrapper {
  background-color: var(--current-article-color, var(--color-block-blue));
  padding: 34px 24px;
  margin: 30px 0;
}
.article__quote-wrapper .article__section-title {
  margin: 0 0 12px 0;
  color: var(--color-light);
}
.article__quote-wrapper .article__text {
  margin-bottom: 0;
  color: var(--color-light);
}
.article__list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.article__list-item {
  font-size: clamp(18px, 1.1111111111vw, 16px);
  color: var(--color-light);
  margin: 0 0 16px 0;
  padding-left: 0;
  line-height: 1.6;
}
.article__list-item strong {
  color: var(--color-accent);
  font-weight: 600;
}
.article__image-wrapper {
  margin: 40px 0;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1281px) {
  .article__image-wrapper {
    max-width: 800px;
  }
}
.article__image-container {
  position: relative;
  display: block;
}
.article__image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.article__image-upscale {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 1;
  z-index: 5;
}
.article__image-upscale-button {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-duration);
}
.article__image-upscale-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.article__image-upscale-button img {
  width: 24px;
  height: 24px;
}
.article__image-description {
  margin: 16px auto 0 auto;
  max-width: 800px;
  padding: 0 46px;
  position: relative;
  left: 0;
  transform: none;
}
@media (min-width: 1281px) {
  .article__image-description {
    padding: 0 !important;
  }
}
.article__image-description p {
  font-size: 18px;
  color: var(--color-light);
  margin-bottom: 8px;
  line-height: 1.4;
}
.article__image-description h5 {
  font-size: 14px;
  color: var(--color-light);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
.article__slider-section {
  margin: 30px 0;
  height: 600px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media (min-width: 431px) {
  .article__slider-section {
    max-width: 441px;
    width: 441px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-left: 0;
  }
}
.article__slider-section .gallery {
  height: 100%;
}
.article__slider-section .gallery__slider {
  height: 100%;
}
.article__slider-section .gallery__slides {
  height: 100%;
}
.article__slider-section .gallery__slide {
  height: 100%;
}
.article__slider-section .gallery__image {
  height: 100%;
  object-fit: cover;
}
.article__slider-section .gallery__arrows {
  top: 50%;
}
.article__slider-section .gallery__upscale {
  bottom: 20px;
  right: 20px;
}
.article__navigation {
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 25px;
}
.article__navigation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 50%;
}
.article__navigation-item--prev {
  flex-direction: row;
  justify-content: flex-start;
}
.article__navigation-item--next {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.article__navigation-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light);
  text-decoration: none;
  transition: color var(--transition-duration);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.article__navigation-link:hover .article__navigation-arrow {
  transform: scale(1.1);
}
.article__navigation-link:active, .article__navigation-link:focus {
  color: var(--color-light);
  outline: none;
}
.article__navigation-text {
  font-size: 12px;
  max-width: 150px;
  word-wrap: break-word;
  line-height: 1.3;
}
.article__navigation-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light);
  border-radius: 50%;
  transition: all var(--transition-duration);
  flex-shrink: 0;
}
.article__navigation-arrow img {
  width: 20px;
  height: 20px;
}
@media (max-width: 320px) {
  .article {
    padding: 20px;
  }
  .article__header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .article__navigation {
    margin-top: 40px;
    padding-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .article__navigation-item {
    justify-content: center;
    width: 100%;
  }
  .article__navigation-item--prev {
    flex-direction: row;
  }
  .article__navigation-item--next {
    flex-direction: row-reverse;
  }
  .article__navigation-text {
    font-size: 12px;
    text-align: center;
    max-width: 120px;
  }
  .article__quote-wrapper {
    padding: 10px 16px;
    margin: 20px 0;
  }
  .article__text-section {
    padding-left: 0;
  }
  .article__text-section .article__section-title::before {
    display: none;
  }
  .article__image-description {
    padding: 0 20px;
  }
}

.article__text-section--no-padding {
  padding-left: 0 !important;
}
.article__text-section--no-padding .article__section-title::before {
  display: none !important;
}

/*# sourceMappingURL=styles.css.map */