:root {
  --plaster: #e7eaee;
  --plaster-deep: #d5dae2;
  --ink: #14181f;
  --ink-soft: rgba(20, 24, 31, 0.62);
  --ink-faint: rgba(20, 24, 31, 0.38);
  --paper: #f4f6f8;
  --accent: #2f5d62;
  --accent-soft: rgba(47, 93, 98, 0.16);
  --spotlight: rgba(255, 252, 246, 0.55);
  --shadow: rgba(12, 16, 24, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-ui: "Syne", "Helvetica Neue", sans-serif;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --rule: 1px solid rgba(20, 24, 31, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__image,
  .hero__scroll-line {
    animation: none;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, #f7f8fa 0%, transparent 55%),
    linear-gradient(180deg, var(--plaster) 0%, var(--plaster-deep) 100%);
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad-x);
  color: #f3f4f6;
  transition: color 0.35s ease, background 0.35s ease;
}

.site-header.is-light {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(231, 234, 238, 0.88), transparent);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.3s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid:hover,
.btn--solid:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #f7f7f5;
  background: rgba(20, 24, 31, 0.18);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: #fff;
  background: rgba(20, 24, 31, 0.35);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f7f7f5;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 24, 0.28) 0%, rgba(12, 16, 24, 0.18) 35%, rgba(12, 16, 24, 0.72) 100%),
    radial-gradient(80% 60% at 70% 20%, rgba(47, 93, 98, 0.28), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(44rem, 92vw);
  padding: 0 var(--pad-x) clamp(5.5rem, 12vh, 8rem);
  animation: rise-in 1.1s var(--ease) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__line {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: rgba(247, 247, 245, 0.88);
}

.hero__support {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(247, 247, 245, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.7);
  animation: rise-in 1.3s 0.2s var(--ease) both;
}

.hero__scroll-line {
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(180deg, rgba(247, 247, 245, 0.8), transparent);
  transform-origin: top;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.gallery {
  position: relative;
  background:
    radial-gradient(70% 50% at 50% 40%, rgba(255, 252, 246, 0.35), transparent 70%),
    linear-gradient(180deg, #cfd5de 0%, #b8c0cc 45%, #aeb6c3 100%);
}

.work {
  position: relative;
  height: 100vh;
  height: 100svh;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 1rem) 1.25rem 7rem;
}

.work__stage {
  position: relative;
  width: min(72vh, 92vw);
  max-width: 44rem;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
}

.work--wide .work__stage,
.work--highlight .work__stage {
  width: min(96vw, 72rem);
  max-width: 72rem;
  aspect-ratio: 21 / 9;
}

.work__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 28px 70px var(--shadow),
    0 0 120px rgba(255, 252, 246, 0.12);
  background: #1a1f28;
  transform: scale(0.9);
  filter: blur(12px) saturate(0.7);
  opacity: 0.38;
  transition:
    transform 0.75s var(--ease),
    filter 0.75s var(--ease),
    opacity 0.75s var(--ease),
    box-shadow 0.75s var(--ease);
  will-change: transform, filter, opacity;
}

.work.is-active .work__frame {
  transform: scale(1);
  filter: blur(0) saturate(1.05);
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 36px 90px rgba(12, 16, 24, 0.38),
    0 0 140px var(--spotlight);
}

.work--highlight.is-active .work__frame {
  transform: scale(1.04);
  filter: blur(0) saturate(1.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 42px 110px rgba(12, 16, 24, 0.42),
    0 0 180px rgba(255, 248, 230, 0.55);
}

.work.is-near .work__frame {
  transform: scale(0.94);
  filter: blur(6px) saturate(0.82);
  opacity: 0.58;
}

.work__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #141820;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.work.is-active .work__frame img {
  transform: scale(1);
}

.work--highlight.is-active .work__frame img {
  transform: scale(1.01);
}

.work__glow {
  pointer-events: none;
  position: absolute;
  inset: -18%;
  z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(255, 250, 240, 0.45), transparent 58%);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.work.is-active .work__glow {
  opacity: 1;
}

.gallery-tabs {
  position: sticky;
  top: calc(var(--header-h) - 0.35rem);
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(207, 213, 222, 0.92), rgba(207, 213, 222, 0.55), transparent);
}

.gallery-tabs__btn {
  appearance: none;
  border: 1px solid rgba(20, 24, 31, 0.14);
  background: rgba(244, 246, 248, 0.72);
  backdrop-filter: blur(8px);
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.gallery-tabs__btn.is-active,
.gallery-tabs__btn:hover,
.gallery-tabs__btn:focus-visible {
  color: var(--ink);
  border-color: rgba(20, 24, 31, 0.35);
  background: rgba(244, 246, 248, 0.95);
}

.gallery__disclaimer {
  position: sticky;
  top: calc(var(--header-h) + 2.85rem);
  z-index: 29;
  margin: 0;
  padding: 0 var(--pad-x) 0.85rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(20, 24, 31, 0.58);
  background: linear-gradient(180deg, rgba(207, 213, 222, 0.72), rgba(207, 213, 222, 0));
}

.gallery__meta {
  position: sticky;
  bottom: 1.5rem;
  z-index: 5;
  margin-top: -5.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.1rem;
  align-items: end;
  width: min(36rem, calc(100% - 2 * var(--pad-x)));
  margin-left: var(--pad-x);
  margin-right: auto;
  padding: 0.85rem 1.1rem 0.95rem;
  pointer-events: none;
  color: #f7f7f5;
  background: rgba(12, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(12, 16, 24, 0.28);
  backdrop-filter: blur(12px);
}

.gallery__index {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.62);
}

.gallery__caption {
  justify-self: stretch;
  text-align: left;
  min-width: 0;
}

.gallery__caption h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.gallery__caption p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(247, 247, 245, 0.78);
}

.gallery__note {
  max-width: 36ch;
  margin-top: 0.45rem !important;
  font-size: 0.78rem !important;
  line-height: 1.45;
  color: rgba(247, 247, 245, 0.58) !important;
}

.gallery__progress {
  grid-column: 1 / -1;
  height: 2px;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.gallery__progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #8fb6b8, #fff);
  transition: width 0.35s var(--ease);
}

.gallery__hints {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery__hints.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.gallery__hint {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(20, 24, 31, 0.18);
  background: rgba(244, 246, 248, 0.55);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.gallery__hint:hover,
.gallery__hint:focus-visible {
  background: rgba(244, 246, 248, 0.9);
  border-color: rgba(20, 24, 31, 0.4);
}

.exhibitions,
.news,
.about,
.visit {
  padding: clamp(5rem, 12vh, 8rem) var(--pad-x);
}

.exhibitions {
  background: linear-gradient(180deg, #dfe4eb 0%, #eef1f5 55%, #f2f4f7 100%);
}

.news {
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(47, 93, 98, 0.1), transparent 55%),
    linear-gradient(180deg, #e8ebf0 0%, #dfe4eb 100%);
}

.about {
  background: linear-gradient(180deg, #f2f4f7 0%, #e8ebf0 100%);
}

.visit {
  background:
    radial-gradient(90% 80% at 10% 20%, var(--accent-soft), transparent 55%),
    linear-gradient(180deg, #dde2e9 0%, #cfd6df 100%);
}

.exhibitions__inner,
.news__inner {
  width: min(72rem, 100%);
  margin: 0 auto;
}

.exhibitions__inner {
  width: min(68rem, 100%);
}

.exhibitions__header,
.news__header {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.exhibitions__eyebrow,
.news__eyebrow,
.about__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.exhibitions__title,
.news__title,
.about__title,
.visit__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.about__title,
.visit__title {
  margin-bottom: 1.25rem;
}

.exhibitions__support,
.news__support,
.about__text,
.visit__text {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about__text {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.visit__text {
  margin-bottom: 1.75rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
  border-bottom: var(--rule);
  padding-bottom: 0.15rem;
}

.category-tabs__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.category-tabs__btn::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.category-tabs__btn:hover,
.category-tabs__btn:focus-visible,
.category-tabs__btn.is-active {
  color: var(--ink);
}

.category-tabs__btn.is-active::after {
  transform: scaleX(1);
}

.exhibitions__list,
.news__list {
  display: flex;
  flex-direction: column;
}

.news__list {
  gap: clamp(1.75rem, 4vh, 2.75rem);
}

.exhibitions__empty,
.news__empty {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.exhibit,
.news-card {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  animation: rise-in 0.7s var(--ease) both;
  animation-delay: var(--delay, 0ms);
}

.exhibit {
  grid-template-columns: minmax(7rem, 12rem) 1fr;
  align-items: start;
  padding: clamp(1.5rem, 3vh, 2.25rem) 0;
  border-top: var(--rule);
}

.exhibit:last-child {
  border-bottom: var(--rule);
}

.news-card {
  grid-template-columns: minmax(12rem, 22rem) 1fr;
  align-items: stretch;
  padding-bottom: clamp(1.75rem, 4vh, 2.75rem);
  border-bottom: var(--rule);
}

.news-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.exhibit__media,
.news-card__media {
  overflow: hidden;
  background: #1a1f28;
  aspect-ratio: 4 / 5;
}

.exhibit__media img,
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.exhibit__media img {
  filter: saturate(0.92);
}

.exhibit:hover .exhibit__media img,
.exhibit:focus-within .exhibit__media img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.news-card:hover .news-card__media img {
  transform: scale(1.03);
}

.exhibit__meta,
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.exhibit__status,
.news-card__tag {
  color: var(--accent);
}

.exhibit__status--past,
.exhibit__type,
.news-card__date {
  color: var(--ink-faint);
}

.exhibit__status--upcoming {
  color: #4a6b4e;
}

.exhibit__title,
.news-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.news-card__title {
  margin-bottom: 0.65rem;
}

.exhibit__venue {
  margin: 0;
  font-size: 0.95rem;
}

.exhibit__dates {
  margin: 0.2rem 0 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.exhibit__note,
.news-card__blurb {
  margin: 0;
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.news-card__blurb {
  margin-bottom: 1.15rem;
}

.news-card__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.news-card__strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1a1f28;
}

.about__inner,
.visit__inner,
.about__mohini {
  width: min(40rem, 100%);
}

.about__mohini {
  width: min(72rem, 100%);
  margin: clamp(3rem, 7vh, 4.5rem) auto 0;
  padding-top: clamp(2rem, 5vh, 3rem);
  border-top: var(--rule);
}

.about__inner {
  width: min(40rem, 100%);
  margin: 0 auto;
}

.about__subtitle {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.about__text em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
}

.about__pillars {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}

.about__pillars li {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(20, 24, 31, 0.14);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.about__pillars span {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit__phone {
  border-color: rgba(20, 24, 31, 0.22);
  color: var(--ink);
  background: rgba(244, 246, 248, 0.55);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem var(--pad-x) 2rem;
  background: #c6ced8;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.site-footer__note {
  opacity: 0.75;
}

@media (max-width: 720px) {
  .nav {
    gap: 0.55rem;
    font-size: 0.6rem;
  }

  .hero__brand {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero__scroll {
    display: none;
  }

  .work__stage {
    width: min(78vh, 90vw);
  }

  .gallery__meta {
    grid-template-columns: 1fr;
    width: calc(100% - 2 * var(--pad-x));
  }

  .gallery__note {
    display: none;
  }

  .exhibit {
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
  }

  .category-tabs__btn {
    padding: 0.75rem 0.65rem;
    letter-spacing: 0.1em;
  }

  .about__pillars {
    grid-template-columns: 1fr 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card__media {
    max-width: 22rem;
    aspect-ratio: 3 / 4;
  }
}

@media (min-width: 721px) {
  .gallery__hints.is-visible {
    display: flex;
  }
}
