:root {
  --bg: #f4f3ef;
  --surface: #ffffff;
  --surface-strong: #111110;
  --ink: #171715;
  --muted: #6f706b;
  --line: #deded7;
  --accent: #d94f37;
  --accent-dark: #aa3522;
  --lime: #d7ef62;
  --blue: #8fc6e8;
  --shadow: 0 18px 54px rgba(20, 20, 18, 0.12);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(244, 243, 239, 0.94);
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.icon-button:hover {
  background: rgba(17, 17, 16, 0.06);
}

.icon-button:focus-visible,
.profile-button:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.filter-chip:focus-visible,
.save-button:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid rgba(217, 79, 55, 0.35);
  outline-offset: 2px;
}

.icon-button svg,
.mobile-nav svg,
.search-dialog-head svg,
.meta-item svg,
.button-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-button {
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

#app {
  min-height: calc(100vh - var(--header-height));
}

.page {
  animation: page-in 320ms ease both;
}

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

.page-width {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - var(--header-height)));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1918;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: brightness(0.58) saturate(0.9);
  transform: scale(1.015);
  animation: hero-reveal 1.1s ease both;
}

@keyframes hero-reveal {
  from { transform: scale(1.07); opacity: 0.7; }
  to { transform: scale(1.015); opacity: 1; }
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 11, 0.06) 20%, rgba(12, 12, 11, 0.88) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(90px, 14vw, 180px) 0 clamp(66px, 8vw, 104px);
  color: white;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8.4vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary-button {
  background: var(--accent);
  color: white;
}

.primary-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.secondary-button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.secondary-button:hover {
  background: white;
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.section + .section {
  padding-top: 10px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}

.section-title {
  font-size: clamp(34px, 5vw, 58px);
}

.section-link {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.venue-card {
  grid-column: span 4;
  min-width: 0;
  cursor: pointer;
}

.venue-card:nth-child(2) {
  margin-top: 54px;
}

.venue-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d7d6d0;
}

.venue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.7,.2,1);
}

.venue-card:hover .venue-media img {
  transform: scale(1.035);
}

.venue-index {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--surface);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 13px;
}

.save-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.save-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.save-button.saved {
  background: var(--lime);
}

.save-button.saved svg {
  fill: currentColor;
}

.venue-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid transparent;
}

.venue-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.venue-rating {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 13px;
  font-weight: 750;
}

.venue-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  stroke: var(--accent);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 400px;
  margin-top: 80px;
  background: var(--surface-strong);
  color: white;
}

.manifesto-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--blue);
}

.manifesto-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 82px);
}

.manifesto-copy p {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.14;
}

.manifesto-copy small {
  max-width: 470px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.page-hero {
  padding: clamp(64px, 9vw, 110px) 0 42px;
}

.page-title {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
}

.page-intro {
  max-width: 550px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.filter-bar {
  position: sticky;
  z-index: 12;
  top: var(--header-height);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(244, 243, 239, 0.95);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 24px;
  padding: 50px 0 100px;
}

.discover-grid .venue-card {
  grid-column: auto;
}

.discover-grid .venue-card:nth-child(2) {
  margin-top: 0;
}

.discover-grid .venue-media {
  aspect-ratio: 16 / 11;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 90px 20px;
  text-align: center;
}

.empty-state svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.4;
}

.empty-state h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.detail-hero {
  position: relative;
  min-height: min(680px, calc(100vh - var(--header-height)));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--surface-strong);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.86) 100%);
  content: "";
}

.detail-back {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: max(20px, calc((100vw - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(17,17,16,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.detail-back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.detail-heading {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 60px;
  color: white;
}

.detail-heading h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(60px, 10vw, 126px);
  font-weight: 400;
  line-height: 0.9;
}

.detail-heading p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.detail-actions .secondary-button.saved {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(50px, 8vw, 110px);
  padding: 74px 0 100px;
}

.detail-story h2,
.detail-aside h2 {
  margin: 0 0 24px;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.detail-story > p {
  margin: 0;
  color: #444540;
  font-size: 17px;
  line-height: 1.9;
}

.detail-meta {
  display: grid;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meta-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
}

.meta-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.meta-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.gallery-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 80px 0 24px;
}

.gallery-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.gallery-heading span {
  color: var(--muted);
  font-size: 13px;
}

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

.gallery-item {
  position: relative;
  grid-column: span 6;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  background: #ddd;
  border: 0;
  cursor: zoom-in;
}

.gallery-item:nth-child(3n + 1) {
  grid-column: span 7;
}

.gallery-item:nth-child(3n + 2) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.search-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(620px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 0;
  box-shadow: var(--shadow);
}

.search-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(17, 17, 16, 0.7);
  backdrop-filter: blur(5px);
}

.search-dialog-head {
  display: grid;
  grid-template-columns: 24px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 24px;
  border-bottom: 1px solid var(--line);
}

.search-dialog-head input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
}

.search-dialog-head input::placeholder {
  color: #a2a39d;
}

.search-results {
  max-height: 470px;
  overflow-y: auto;
  padding: 8px;
}

.search-result {
  display: grid;
  width: 100%;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.search-result:hover {
  background: var(--bg);
}

.search-result img {
  width: 88px;
  height: 70px;
  object-fit: cover;
}

.search-result strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.search-result span {
  color: var(--muted);
  font-size: 12px;
}

.search-result svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.search-hint {
  padding: 50px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.98);
  border: 0;
  color: white;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
}

.lightbox figure {
  display: grid;
  max-width: min(1100px, calc(100vw - 180px));
  max-height: calc(100vh - 80px);
  justify-self: center;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 14px;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  color: white;
}

.lightbox-prev,
.lightbox-next {
  justify-self: center;
  color: white;
}

.toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 13px 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav {
  display: none;
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .brand-name {
    font-size: 12px;
  }

  .profile-button {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #8b8b86;
    font-size: 10px;
    font-weight: 650;
  }

  .mobile-nav a.active {
    color: var(--ink);
  }

  .mobile-nav svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 40px);
  }

  .hero-content {
    width: min(100% - 36px, 1180px);
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .section {
    padding: 64px 0;
  }

  .page-width {
    width: min(100% - 36px, 1180px);
  }

  .section-header {
    align-items: flex-start;
  }

  .section-link {
    margin-top: 11px;
  }

  .venue-grid {
    display: flex;
    margin-right: -18px;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .venue-grid::-webkit-scrollbar {
    display: none;
  }

  .venue-grid .venue-card {
    flex: 0 0 min(82vw, 340px);
    margin-top: 0;
    scroll-snap-align: start;
  }

  .manifesto {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .manifesto-art {
    min-height: 320px;
  }

  .manifesto-copy {
    padding: 44px 26px 50px;
  }

  .page-hero {
    padding: 60px 0 34px;
  }

  .page-title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 34px;
  }

  .discover-grid .venue-media {
    aspect-ratio: 4 / 3;
  }

  .detail-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .detail-heading {
    width: calc(100% - 36px);
    padding-bottom: 52px;
  }

  .detail-heading h1 {
    font-size: clamp(58px, 20vw, 90px);
  }

  .detail-heading p {
    font-size: 15px;
  }

  .detail-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 54px;
  }

  .detail-aside {
    grid-row: 1;
  }

  .gallery-heading {
    margin-top: 58px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 1),
  .gallery-item:nth-child(3n + 2) {
    grid-column: auto;
    min-height: 260px;
  }

  .lightbox[open] {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .lightbox figure {
    max-width: calc(100vw - 92px);
  }

  .toast {
    right: 18px;
    bottom: 88px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 16vw;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .primary-button,
  .secondary-button {
    padding: 0 15px;
  }

  .section-header {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 18px;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .search-result {
    grid-template-columns: 68px 1fr 18px;
    gap: 12px;
  }

  .search-result img {
    width: 68px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
