:root {
  --page-bg: #f7f6f1;
  --panel: #ffffff;
  --ink: #29323a;
  --muted: #6c7680;
  --line: #d7c9aa;
  --gold: #b9904a;
  --gold-soft: #f4ead5;
  --teal: #c69a5c;
  --teal-dark: #7a5428;
  --soft: #eef8f9;
  --shadow: 0 22px 55px rgba(41, 50, 58, 0.12);
  --shadow-soft: 0 12px 30px rgba(41, 50, 58, 0.08);
}

* {
  box-sizing: border-box;
}

.local-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 8px solid #222;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(20, 30, 40, 0.08);
  backdrop-filter: blur(14px);
}

.local-header__inner {
  width: min(1210px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.local-header__logo img {
  display: block;
  width: 150px;
  height: auto;
}

.local-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f7880;
  font-size: 13px;
}

.local-nav a {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.local-nav a:hover {
  background: #aa9a86;
  color: #ffffff;
}

.hero-strip {
  display: none;
}

.hero-strip img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.96);
}

.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 80% 20%, rgba(13, 157, 175, 0.16), transparent 26rem);
}

.hero-strip__content {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: min(620px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.hero-strip__eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-strip h1 {
  margin: 0;
  color: #24343d;
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.hero-strip p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #56616b;
  font-size: 17px;
  line-height: 1.7;
}

.section {
  width: min(1210px, calc(100% - 40px));
  margin: 34px auto;
  padding: 34px;
  background: var(--panel);
  border: 1px solid rgba(185, 144, 74, 0.18);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.projects-section {
  position: relative;
  top: 24px;
  margin-top: 0;
  margin-bottom: 58px;
  padding-top: 24px;
}

.detail-view {
  position: relative;
  top: 24px;
  margin-top: 0;
  margin-bottom: 58px;
}

.partners-section {
  margin-top: 0;
  padding-top: 24px;
}

.projects-section *,
.detail-view *,
.cartoon-modal *,
.partners-section * {
  border-radius: 0 !important;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-indent: 0;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #24343d;
  font-family: "Tinos", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d7c9aa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  perspective: 1200px;
}

.project-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 100%;
  padding: 16px 16px 20px;
  border: 1px solid rgba(185, 144, 74, 0.32);
  border-radius: 0;
  background:
    linear-gradient(180deg, #ffffff, #fbffff),
    #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(41, 50, 58, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: projectIn 0.55s ease both;
  transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.25, 1), opacity 0.28s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(185, 144, 74, 0.12), transparent 45%, rgba(198, 154, 92, 0.12));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.project-card::after {
  content: "Ашу";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("/img/icons/background-ornament.png");
  background-size: 260px auto;
  color: #765025;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.project-card > * {
  backface-visibility: hidden;
}

.project-card:hover,
.project-card:focus-visible {
  transform: none;
  border-color: #b9904a;
  box-shadow: 0 8px 22px rgba(41, 50, 58, 0.06);
  outline: 0;
}

.project-card.is-flipping {
  pointer-events: none;
  transform: rotateY(180deg) scale(0.98);
  box-shadow: 0 24px 48px rgba(118, 80, 37, 0.16);
}

.project-card.is-flipping::before {
  opacity: 0;
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 0;
}

.project-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(185, 144, 74, 0.28);
  border-radius: 0;
  background: #f5f2e9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.project-card__number {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--soft), #fff8e9);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.project-card__title {
  margin: 0;
  color: #23313a;
  font-size: 21px;
  line-height: 1.18;
  text-transform: uppercase;
}

.project-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-indent: 0;
  text-align: left;
}

.detail-view {
  display: none;
  opacity: 0;
  transform: rotateY(-12deg) translateY(18px) scale(0.985);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.detail-view.is-visible {
  display: block;
}

.detail-view.is-open {
  opacity: 1;
  transform: rotateY(0) translateY(0) scale(1);
}

.detail-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-toolbar h2 {
  margin: 0;
  color: #23313a;
  font-size: 28px;
  line-height: 1.2;
}

.back-button,
.project-link,
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #c69a5c;
  border-radius: 999px;
  background: #ffffff;
  color: #3f2810;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.back-button:hover,
.project-link:hover,
.store-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(204, 167, 94, 0.20);
}

.back-button {
  background: #fff;
  color: #765025;
}

.store-link,
.store-link:visited,
.store-link:focus {
  border-color: #c69a5c;
  background: #ffffff;
  color: #3f2810;
}

.store-link:hover {
  border-color: #c69a5c;
  background: #ffffff;
  color: #3f2810;
}

.back-button,
.project-link,
.store-link,
.search-hub__button,
.search-panel__link,
.cartoon-modal__close,
.project-card::after {
  font-weight: 400;
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
}

.detail-hero {
  position: sticky;
  top: 102px;
  align-self: start;
  padding: 16px;
  border: 1px solid rgba(185, 144, 74, 0.25);
  border-radius: 0;
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  box-shadow: 0 12px 24px rgba(41, 50, 58, 0.08);
}

.detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(185, 144, 74, 0.28);
  border-radius: 0;
}

.detail-hero p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
  text-indent: 0;
  text-align: left;
}

.detail-main {
  min-width: 0;
}

.detail-items {
  column-count: 2;
  column-gap: 18px;
}

.search-hub {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(185, 144, 74, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(41, 50, 58, 0.07);
}

.search-hub__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-indent: 0;
}

.search-hub__title {
  margin: 0 0 10px;
  color: #24424a;
  font-size: 22px;
  line-height: 1.25;
}

.search-hub__text {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  text-indent: 0;
}

.search-hub__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 16px;
}

.search-hub__input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(185, 144, 74, 0.28);
  border-radius: 999px;
  background: #fffdf8;
  color: #24424a;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.search-hub__input:focus {
  border-color: #c69a5c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(198, 154, 92, 0.14);
}

.search-hub__button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #ab9c8a;
  border-radius: 999px;
  background: #ab9c8a;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.search-hub__button:hover {
  transform: translateY(-1px);
  background: #ab9c8a;
  box-shadow: 0 10px 18px rgba(204, 167, 94, 0.20);
}

.search-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.search-panel {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 16px;
  border: 1px solid rgba(185, 144, 74, 0.20);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff, #fbffff);
}

.search-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.search-panel__title {
  margin: 0;
  color: #24424a;
  font-size: 16px;
  line-height: 1.25;
}

.search-panel__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid #c69a5c;
  border-radius: 0;
  background: #ffffff;
  color: #3f2810;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.search-panel__link:hover {
  background: #f4ead5;
}

.search-panel__description {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
  text-indent: 0;
}

.search-panel__body {
  display: flex;
  flex: 1;
  align-items: stretch;
  min-height: 300px;
  padding: 14px;
  border: 1px dashed rgba(185, 144, 74, 0.26);
  border-radius: 0;
  background: #fffdf8;
  color: #24424a;
  overflow: hidden;
}

.search-panel__body--empty {
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}

.search-result {
  display: grid;
  align-content: center;
  gap: 8px;
  width: 100%;
  line-height: 1.5;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  text-indent: 0;
}

.search-result__label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel__frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
}

.search-converter {
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
}

.search-converter__select {
  justify-self: end;
  width: min(100%, 220px);
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(185, 144, 74, 0.36);
  border-radius: 12px;
  background: #ffffff;
  color: #24424a;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.search-converter__group {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(185, 144, 74, 0.14);
}

.search-converter__group strong,
.search-converter__group p {
  margin: 0;
  color: #24424a;
  line-height: 1.55;
  text-indent: 0;
}

.search-converter__note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f1e6;
  color: #765025;
  line-height: 1.5;
  text-indent: 0;
}

.info-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  padding: 20px;
  border: 1px solid rgba(185, 144, 74, 0.24);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff, #fcffff);
  box-shadow: 0 10px 22px rgba(41, 50, 58, 0.06);
}

.info-card--compact {
  display: flex;
  flex-direction: column;
  height: 276px;
}

.info-card--video {
  display: flex;
  flex-direction: column;
  min-height: 456px;
}

.info-card__number {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  align-self: flex-start;
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  margin-bottom: 12px;
  border-radius: 50% !important;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1;
}

.info-card__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card__copy {
  min-height: 0;
}

.info-card--video .info-card__copy {
  height: 132px;
  overflow: hidden;
}

.info-card__title {
  margin: 0 0 10px;
  color: #24424a;
  font-size: 18px;
  line-height: 1.3;
}

.info-card__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  text-indent: 0;
  text-align: left;
}

.info-card__actions,
.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 2px;
}

.project-link--muted {
  background: #fff;
  color: #765025;
}

.info-card {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.info-card--clickable {
  cursor: pointer;
}

.info-card--clickable:hover {
  transform: none;
  border-color: rgba(185, 144, 74, 0.24);
  box-shadow: 0 10px 22px rgba(41, 50, 58, 0.06);
}

.detail-view.is-open .info-card {
  animation: detailItemIn 0.42s ease both;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(41, 50, 58, 0.10);
}

.info-card--video > .video-frame {
  height: 174px !important;
  min-height: 174px;
  max-height: 174px;
  aspect-ratio: auto;
  flex: 0 0 174px;
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.partners img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(185, 144, 74, 0.18);
  border-radius: 0;
  background: #fff;
  filter: grayscale(0.08);
  box-shadow: 0 8px 18px rgba(41, 50, 58, 0.05);
}

.tilqazyna-partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.tilqazyna-partners img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(185, 144, 74, 0.18);
  background: #fff;
  filter: grayscale(0.08);
  box-shadow: 0 8px 18px rgba(41, 50, 58, 0.05);
}

.local-footer {
  margin-top: 36px;
  padding: 24px 20px;
  background: #293957;
  color: #ffffff;
  font-size: 16px;
}

.local-footer__inner {
  width: min(1210px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.local-footer__contacts {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.local-footer__contacts p,
.local-footer__title {
  margin: 0;
}

.local-footer__contacts p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  line-height: 1.4;
}

.local-footer__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.local-footer__icon--pin::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.local-footer__icon--mail::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 14px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.local-footer__icon--mail::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.local-footer__contacts a {
  color: #ffffff;
  text-decoration: none;
}

.local-footer__contacts a:hover {
  text-decoration: underline;
}

.local-footer__title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.cartoon-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.cartoon-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cartoon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 44, 52, 0.46);
  backdrop-filter: blur(6px);
}

.cartoon-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(185, 144, 74, 0.24);
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("/img/icons/background-ornament.png");
  background-size: 340px auto;
  box-shadow: 0 28px 72px rgba(29, 35, 42, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.cartoon-modal.is-open .cartoon-modal__panel {
  transform: translateY(0) scale(1);
}

.cartoon-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.cartoon-modal__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cartoon-modal__header h2 {
  margin: 0;
  color: #24343d;
  font-size: 30px;
  line-height: 1.2;
}

.cartoon-modal__close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c69a5c;
  border-radius: 0;
  background: #fff;
  color: #765025;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cartoon-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cartoon-card {
  display: flex;
  flex-direction: column;
  min-height: 388px;
  padding: 20px;
  border: 1px solid rgba(185, 144, 74, 0.24);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 22px rgba(41, 50, 58, 0.06);
  animation: detailItemIn 0.42s ease both;
}

.cartoon-card__copy {
  height: 98px;
  overflow: hidden;
}

.cartoon-card .video-frame {
  display: block;
  width: 100%;
  height: 202px !important;
  min-height: 202px;
  max-height: 202px;
  aspect-ratio: auto;
  flex: 0 0 202px;
}

.cartoon-card .info-card__actions {
  margin-top: auto;
  padding-top: 16px;
}

@keyframes projectIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes detailItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .projects-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-items {
    column-count: 1;
  }

  .search-hub__form,
  .search-panels {
    grid-template-columns: 1fr;
  }

  .search-hub__button {
    width: 100%;
  }

  .info-card--compact {
    height: auto;
    min-height: 220px;
  }

  .cartoon-modal {
    padding: 14px;
  }

  .cartoon-modal__panel {
    padding: 20px;
  }

  .cartoon-modal__grid {
    grid-template-columns: 1fr;
  }

  .cartoon-card {
    min-height: auto;
  }

  .cartoon-card__copy {
    min-height: 0;
  }

  .cartoon-card .video-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-strip,
  .hero-strip img {
    min-height: 360px;
  }

  .hero-strip__content {
    padding: 28px;
  }

  .local-nav {
    display: none;
  }

  .section {
    padding: 24px 18px;
  }

  .detail-hero {
    position: static;
  }

  .partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tilqazyna-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
