:root {
  --page-bg: #f6f5f2;
  --page-bg-top: #faf9f6;
  --article-bg: #ffffff;
  --surface-soft: #fbfaf7;
  --surface-warm: #fffbea;
  --text: #141414;
  --text-soft: #3d3d3d;
  --muted: #77716b;
  --line: rgba(20, 20, 20, 0.12);
  --line-strong: rgba(20, 20, 20, 0.18);
  --accent: #ffd21e;
  --accent-hover: #f2c400;
  --accent-soft: rgba(255, 210, 30, 0.16);
  --accent-ink: #6a5700;
  --focus: #1f5eff;
  --danger: #a33a2f;
  --measure: 700px;
  --wide: 980px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-gap: clamp(38px, 6vw, 62px);
  --cluster-gap: clamp(18px, 3vw, 28px);
  --radius: 14px;
  --radius-large: 20px;
  --motion-mult: 1;
  --shadow-soft: 0 10px 28px rgba(20, 20, 20, 0.08);
  --shadow-page: 0 24px 70px rgba(24, 24, 24, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--page-bg-top) 0%, var(--page-bg) 360px),
    var(--page-bg);
  font-family: "YS Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform calc(180ms * var(--motion-mult)) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  min-height: 100dvh;
  padding: 28px var(--gutter) 64px;
}

.article-shell {
  width: min(100%, var(--wide));
  margin: 0 auto;
}

.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.07);
  border-radius: var(--radius-large);
  background: var(--article-bg);
  box-shadow: var(--shadow-page);
}

.article-inner {
  width: min(100%, calc(var(--measure) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 42px var(--gutter) 0;
}

.article-masthead {
  position: relative;
  background: var(--surface-warm);
}

.article-masthead .article-brand,
.article-card > .article-inner > .article-brand {
  position: absolute;
  top: 18px;
  left: clamp(18px, 2.5vw, 28px);
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  margin: 0;
  align-items: flex-start;
  gap: 2px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(20, 20, 20, 0.48);
  white-space: nowrap;
}

.article-brand span {
  color: var(--accent);
}

.article-cover {
  margin: 0;
  overflow: hidden;
  background: var(--surface-warm);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "YS Display", "YS Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 40px;
  font-weight: 650;
  line-height: 1.12;
}

h2 {
  margin-top: var(--section-gap);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.28;
}

h3 {
  margin-top: calc(var(--section-gap) * 0.68);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
}

p {
  margin: 18px 0 0;
}

strong {
  font-weight: 650;
}

.article-section {
  margin-top: 0;
  scroll-margin-top: 24px;
}

.article-list {
  margin: 18px 0 0;
  padding-left: 1.45em;
}

.article-list > li {
  margin: 12px 0 0;
  padding-left: 0.42em;
}

.article-list > li::marker {
  color: var(--text-soft);
  font-weight: 500;
}

.article-list > li p {
  margin-top: 8px;
}

.case-summary-intro {
  margin-top: 38px;
}

.article-quote {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1em;
  line-height: 1.62;
}

.article-quote p,
.article-quote ol {
  margin: 0;
}

.article-quote ol {
  padding-left: 1.3em;
}

.article-quote li + li {
  margin-top: 10px;
}

.case-stream {
  display: grid;
  gap: clamp(34px, 5vw, 48px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: case-number;
}

.case-item {
  position: relative;
  min-width: 0;
  counter-increment: case-number;
}

.case-item h3 {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 0;
}

.case-item h3::before {
  content: counter(case-number);
  display: grid;
  width: 40px;
  min-height: 34px;
  place-items: center;
  padding: 0 3px 3px;
  color: var(--text);
  background: linear-gradient(transparent 56%, var(--accent) 56%, var(--accent) 92%, transparent 92%);
  font-size: 31px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transform: translateY(-4px);
}

.proof-shot {
  width: min(100%, 390px);
  margin: 22px auto 0;
}

.proof-shot {
  padding: 7px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 16px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.proof-shot img {
  width: 100%;
  border-radius: 10px;
  background: #f3efe7;
}

.case-caption {
  margin: 12px 0 0;
  padding: 11px 14px 12px;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: #fbfaf7;
  color: #514b43;
  font-size: clamp(14.5px, 2.1vw, 16px);
  line-height: 1.55;
}

.case-caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.98em;
  font-weight: 650;
}

.disclosure {
  margin-top: var(--section-gap);
}

.disclosure__summary {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  list-style: none;
}

.disclosure__summary::-webkit-details-marker {
  display: none;
}

.disclosure__summary h2 {
  margin: 0;
  color: var(--accent-ink);
  font-size: 22px;
  font-weight: 520;
}

.disclosure__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 7px 16px rgba(170, 135, 0, 0.16);
  transition:
    background-color calc(160ms * var(--motion-mult)) ease,
    box-shadow calc(160ms * var(--motion-mult)) ease;
}

.disclosure__toggle::before,
.disclosure__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform calc(180ms * var(--motion-mult)) ease;
}

.disclosure__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.disclosure[open] .disclosure__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.disclosure__summary:hover .disclosure__toggle {
  background: var(--accent-hover);
  box-shadow: 0 8px 18px rgba(170, 135, 0, 0.2);
}

.disclosure__body {
  padding: 14px 48px 0 0;
  color: var(--text-soft);
}

.disclosure__body p {
  margin-top: 0;
}

.disclosure__body ol {
  margin: 16px 0 0;
  padding-left: 1.45em;
}

.disclosure__body li + li {
  margin-top: 12px;
}

.training-kit {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: kit-number;
}

.training-kit li {
  position: relative;
  min-height: 34px;
  padding-left: 50px;
  counter-increment: kit-number;
}

.training-kit li::before {
  content: counter(kit-number);
  position: absolute;
  top: -3px;
  left: 0;
  display: grid;
  width: 38px;
  min-height: 33px;
  place-items: center;
  padding: 0 3px 3px;
  color: var(--text);
  background: linear-gradient(transparent 56%, var(--accent) 56%, var(--accent) 92%, transparent 92%);
  font-size: 29px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.offer-cluster {
  margin-top: var(--section-gap);
  scroll-margin-top: 24px;
}

.highlight-card {
  border: 1px solid rgba(255, 210, 30, 0.82);
  border-radius: var(--radius-large);
  background: var(--surface-warm);
}

.guarantee-card {
  padding: 22px 24px;
  color: var(--text);
  line-height: 1.62;
}

.guarantee-card p {
  margin: 0;
}

.pricing-section {
  margin-top: clamp(28px, 4vw, 38px);
  padding-top: 0;
  scroll-margin-top: 24px;
}

.pricing-section h2 {
  margin-top: 0;
}

.tariff-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
}

.tariff-price {
  display: grid;
  gap: 7px;
  justify-items: start;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.tariff-price__value {
  display: block;
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.tariff-price__current {
  color: var(--text);
}

.tariff-button {
  text-decoration: none;
  display: inline-flex;
  width: auto;
  min-height: 48px;
  margin: 0;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #111111;
  box-shadow: 0 8px 20px rgba(170, 135, 0, 0.17);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color calc(160ms * var(--motion-mult)) ease,
    box-shadow calc(160ms * var(--motion-mult)) ease;
}

.tariff-offer .tariff-button {
  margin: 24px 0 28px;
}

.tariff-button:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 24px rgba(170, 135, 0, 0.21);
}

.tariff-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-cta-row {
  display: flex;
  justify-content: center;
  margin: 36px 0 32px;
}

.article-cta {
  width: min(100%, 260px);
  margin-top: 0;
  padding-inline: 22px;
  text-decoration: none;
}

.technical-label {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.author-achievements {
  color: var(--text-soft);
}

.author-achievements p:first-child {
  margin-top: 0;
}

.format-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.format-list li {
  position: relative;
  padding-left: 22px;
}

.format-list li::before {
  content: "";
  position: absolute;
  top: 0.77em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.side-effect-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text-soft);
  counter-reset: side-effect;
  list-style: none;
}

.side-effect-list li {
  position: relative;
  padding-left: 34px;
  counter-increment: side-effect;
}

.side-effect-list li::before {
  position: absolute;
  top: 0.04em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: linear-gradient(
    to bottom,
    transparent 72%,
    var(--accent) 72%,
    var(--accent) 90%,
    transparent 90%
  );
  color: var(--text);
  content: counter(side-effect);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.results-section {
  margin-top: var(--section-gap);
  padding: 24px 26px 26px;
}

.results-section h2 {
  margin-top: 0;
}

.results-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.results-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.results-list__arrow {
  width: 20px;
  height: 20px;
  margin-top: 0.16em;
  color: var(--accent-hover);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.author-achievements .format-list {
  gap: 6px;
  margin-top: 10px;
}

.author-section {
  margin-top: var(--section-gap);
  padding-top: 2px;
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "photo heading"
    "photo copy";
  grid-template-rows: auto 1fr;
  column-gap: 32px;
  row-gap: 14px;
  align-items: start;
  margin-top: 0;
}

.author-heading {
  display: flex;
  grid-area: heading;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  margin: 0;
}

.author-heading__label {
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
}

.author-heading__name {
  color: var(--text);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.2;
}

.author-photo {
  grid-area: photo;
  align-self: start;
  width: 340px;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.author-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.author-copy {
  grid-area: copy;
}

.author-copy p {
  color: var(--text-soft);
}

.author-copy p:first-child {
  margin-top: 0;
}

.author-proof {
  display: grid;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.credential {
  min-width: 0;
  margin: 0;
}

.credential__media {
  display: grid;
  min-height: 182px;
  place-items: center;
}

.credential img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.credential--books {
  width: min(100%, 210px);
  justify-self: end;
}

.credential figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.46;
  text-align: center;
}

.text-link {
  color: var(--text-soft);
  text-decoration-color: rgba(106, 87, 0, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--accent-ink);
  text-decoration-color: currentColor;
}

.halls {
  display: grid;
  gap: 18px;
  padding-top: 28px;
}

.halls__statement {
  max-width: 570px;
  margin-top: 0;
  font-family: "YS Display", "YS Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.17;
}

.halls__mosaic {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 190px 144px 144px;
  gap: 7px;
}

.hall-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 3px;
  background: var(--surface-soft);
}

.hall-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0), rgba(20, 20, 20, 0.12));
}

.hall-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hall-frame--main {
  grid-column: 1 / -1;
  grid-row: 1;
}

.hall-frame--wide {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.hall-frame--audience {
  grid-column: 2;
  grid-row: 2;
}

.hall-frame--vip {
  grid-column: 2;
  grid-row: 3;
}

.hall-frame--main img {
  object-position: 52% 0%;
}

.hall-frame--workshop img {
  object-position: 42% 36%;
}

.hall-frame--audience img {
  object-position: 50% 40%;
}

.hall-frame--vip img {
  object-position: 58% 40%;
}

.reviews-section {
  margin-top: var(--section-gap);
}

.reviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 14px;
}

.reviews-bar h2 {
  margin: 0;
  font-size: 23px;
  white-space: nowrap;
}

.reviews-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.reviews-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #191919;
  box-shadow: 0 6px 16px rgba(20, 20, 20, 0.08);
  cursor: pointer;
  transition:
    border-color calc(160ms * var(--motion-mult)) ease,
    background-color calc(160ms * var(--motion-mult)) ease;
}

.reviews-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
}

.reviews-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.reviews-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-gallery {
  min-width: 0;
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
}

.reviews-track {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px max(44px, var(--gutter)) 18px 0;
  scroll-padding-left: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 clamp(232px, 66vw, 270px);
  margin: 0;
  scroll-snap-align: start;
}

.review-slide img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 12px;
  background: #f3efe7;
  box-shadow: var(--shadow-soft);
}

.article-footer {
  margin-top: 46px;
  padding: 24px max(var(--gutter), calc((100% - var(--measure)) / 2)) 26px;
  background: #f1f1ef;
  color: #706d69;
  font-size: 13px;
  line-height: 1.55;
}

.article-footer p {
  margin-top: 8px;
}

.article-footer p:first-child {
  margin-top: 0;
}

.article-footer a {
  color: inherit;
  text-decoration-color: rgba(119, 113, 107, 0.34);
  text-underline-offset: 3px;
}

.article-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 0;
  color: #514e4a;
  font-size: 15px;
  font-style: normal;
  font-weight: 550;
}

.article-footer__contacts a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
}

.article-footer__telegram {
  color: inherit;
  font-weight: 600;
  text-decoration-color: rgba(81, 78, 74, 0.42);
}

.article-footer__contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.article-footer__contact-details a {
  color: inherit;
}

.article-footer__contacts a:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

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

@media (max-width: 760px) {body {
    font-size: 17px;
    line-height: 1.68;
  }

  .page {
    padding: 0 0 44px;
  }

  .article-shell {
    width: 100%;
  }

  .article-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .article-inner {
    padding: 30px var(--gutter) 0;
  }

  .article-masthead .article-brand,
  .article-card > .article-inner > .article-brand {
    top: 12px;
    left: 18px;
    margin: 0;
    font-size: 20px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.13;
  }

  h2 {
    margin-top: 40px;
    font-size: 22px;
    line-height: 1.25;
  }

  h3 {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.35;
  }

  .case-stream {
    gap: 34px;
  }

  .proof-shot {
    width: min(100%, 380px);
  }

  .disclosure__summary {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 14px;
    padding: 6px 0;
  }

  .disclosure__summary h2 {
    margin: 0;
    font-size: 21px;
  }

  .disclosure__toggle {
    width: 44px;
    height: 44px;
  }

  .disclosure__body {
    padding-right: 0;
  }

  .tariff-card {
    min-height: 0;
  }

  .author-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "photo"
      "copy";
    grid-template-rows: auto;
    gap: 20px;
    align-items: start;
  }

  .author-heading {
    gap: 5px 9px;
  }

  .author-heading__label {
    font-size: 14px;
  }

  .author-heading__name {
    font-size: 22px;
  }

  .author-photo {
    width: min(100%, 340px);
  }

  .credentials {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .credential__media {
    min-height: 0;
  }

  .credential img {
    max-height: 204px;
  }

  .credential--books {
    width: min(52vw, 190px);
    justify-self: center;
  }

  .halls__statement {
    font-size: 25px;
  }

  .halls__mosaic {
    grid-template-rows: 164px 126px 126px;
  }

  .reviews-section {
    margin-top: 48px;
  }

  .reviews-bar {
    gap: 12px;
  }

  .reviews-bar h2 {
    font-size: 20px;
  }}

@media (max-width: 520px) {.article-quote {
    padding: 16px;
  }

  .highlight-card {
    padding: 18px;
  }

  .halls__mosaic {
    grid-template-rows: 150px 116px 116px;
  }}

@media (max-width: 380px) {body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 21px;
  }

  h3 {
    font-size: 18px;
  }

  .reviews-bar h2 {
    font-size: 18px;
  }

  .halls__mosaic {
    grid-template-rows: 142px 108px 108px;
  }}

@media (prefers-reduced-motion: reduce) {:root {
    --motion-mult: 0;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }}

@media print {body {
    background: #ffffff;
    font-size: 12pt;
  }

  .page {
    padding: 0;
  }

  .article-card {
    border: 0;
    box-shadow: none;
  }

  .reviews-controls,
  .tariff-button {
    display: none !important;
  }}
