:root {
  color-scheme: light;
  --paper: #f6efe8;
  --paper-strong: rgba(255, 251, 247, 0.74);
  --ink: #372728;
  --muted: #755f61;
  --shadow: 0 22px 60px rgba(87, 54, 53, 0.14);
  --hero-shadow: 0 28px 80px rgba(85, 54, 51, 0.18);
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 240, 231, 0.9), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(220, 168, 177, 0.18), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(126, 181, 170, 0.16), transparent 20%),
    linear-gradient(180deg, #fbf7f3 0%, #f4ede7 46%, #efe6df 100%);
  color: var(--ink);
  font-family: "Spectral", Georgia, serif;
  transition: background-color 180ms ease, color 180ms ease, background 180ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(117, 95, 97, 0.08) 0.8px, transparent 0.8px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%);
  background-size: 18px 18px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.page-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(129, 94, 89, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 223, 231, 0.8), transparent 22%),
    radial-gradient(circle at 70% 82%, rgba(167, 214, 205, 0.48), transparent 22%),
    linear-gradient(135deg, rgba(255, 246, 241, 0.98), rgba(246, 235, 230, 0.94) 50%, rgba(233, 242, 239, 0.96));
  box-shadow: var(--hero-shadow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), transparent 24%),
    radial-gradient(circle at 70% 68%, rgba(197, 86, 115, 0.14), transparent 28%),
    radial-gradient(circle at 52% 46%, rgba(255, 207, 218, 0.48), transparent 44%);
  filter: blur(6px);
  opacity: 0.9;
}

.hero::before {
  left: -42px;
  bottom: -26px;
}

.hero::after {
  top: 8%;
  right: -6%;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 46% 36%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle at 58% 58%, rgba(108, 168, 169, 0.24), transparent 28%),
    radial-gradient(circle at 34% 72%, rgba(255, 223, 182, 0.44), transparent 34%);
}

.hero__meta {
  color: rgba(77, 58, 59, 0.7);
  font-size: 15px;
}

.hero__controls {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(118, 82, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.78);
  color: #7c5160;
  box-shadow: 0 10px 26px rgba(106, 76, 78, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(251, 239, 243, 0.96);
  color: #5f3946;
  box-shadow: 0 14px 28px rgba(106, 76, 78, 0.16);
  outline: none;
}

.theme-toggle__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.theme-toggle__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle__icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  display: inline-flex;
}

.hero__ribbon,
.hero__stats,
.section-banner__kicker,
.section-banner__title,
.section-banner__subtitle {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin: 0 0 10px;
  color: rgba(91, 69, 70, 0.68);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero__title,
.section-banner__title,
.stat-card__value,
.entry-card__title,
.rating-badge__value {
  font-family: "Cormorant Unicase", "Times New Roman", serif;
}

.hero__title {
  margin: 0;
  font-size: clamp(48px, 10vw, 98px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #412c2d;
  text-shadow: 0 10px 28px rgba(255, 255, 255, 0.55);
}

.hero__tagline {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.15;
  color: #4d3436;
}

.hero__description {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(118, 82, 79, 0.16);
  background: rgba(255, 250, 246, 0.72);
  box-shadow: 0 10px 30px rgba(110, 82, 81, 0.08);
  backdrop-filter: blur(12px);
}

.stat-card__value {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #4a3134;
}

.stat-card__label {
  display: block;
  margin-top: 8px;
  color: rgba(78, 58, 59, 0.72);
  font-size: 16px;
  line-height: 1.3;
}

.catalog {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(116, 82, 78, 0.14);
  background: rgba(255, 250, 246, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.catalog-toolbar__label {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.catalog-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(116, 82, 78, 0.08);
}

.catalog-switch__button {
  min-width: 168px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(88, 66, 67, 0.76);
  font-family: "Cormorant Unicase", "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.catalog-switch__button:hover:not(:disabled),
.catalog-switch__button:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  color: #4d3436;
  background: rgba(244, 227, 231, 0.56);
  outline: none;
}

.catalog-switch__button.is-active {
  color: #fff8f4;
  background: linear-gradient(135deg, #d88798, #af6f89);
  box-shadow: 0 10px 24px rgba(140, 82, 97, 0.22);
}

.catalog-switch__button:disabled {
  opacity: 0.45;
  cursor: default;
}

.catalog-section {
  display: grid;
  gap: 18px;
}

.section-banner {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  padding: 28px 32px;
  border-radius: 28px;
  border: 1px solid rgba(113, 79, 74, 0.16);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-banner::before,
.section-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-banner::before {
  background:
    radial-gradient(circle at 44% 26%, rgba(255, 255, 255, 0.36), transparent 16%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.26), transparent 16%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.16), transparent 22%);
}

.section-banner::after {
  background:
    linear-gradient(90deg, rgba(82, 47, 51, 0.2) 0%, rgba(82, 47, 51, 0.08) 36%, rgba(255, 255, 255, 0.08) 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.section-banner--viewed {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 230, 235, 0.28), transparent 16%),
    radial-gradient(circle at 62% 76%, rgba(255, 205, 214, 0.28), transparent 20%),
    linear-gradient(130deg, #cd8a92 0%, #e1a4aa 38%, #c87078 100%);
}

.section-banner--queue {
  background:
    radial-gradient(circle at 78% 24%, rgba(226, 247, 243, 0.28), transparent 18%),
    radial-gradient(circle at 64% 78%, rgba(182, 228, 220, 0.3), transparent 22%),
    linear-gradient(130deg, #7eb8b2 0%, #9dcfc8 44%, #6fa5a4 100%);
}

.section-banner__kicker {
  margin: 0 0 4px;
  color: rgba(255, 247, 242, 0.82);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-banner__title {
  width: fit-content;
  margin: 0;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.95;
  color: #fffaf7;
  text-shadow: 0 10px 28px rgba(55, 39, 40, 0.36), 0 1px 0 rgba(89, 47, 52, 0.45);
}

.section-banner__title::before,
.section-banner__title::after {
  content: "✦";
  display: inline-block;
  margin: 0 12px;
  font-size: 0.48em;
  vertical-align: middle;
}

.section-banner__subtitle {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 248, 242, 0.94);
  font-size: 18px;
  line-height: 1.35;
  text-shadow: 0 3px 16px rgba(55, 39, 40, 0.22);
}

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

.catalog-empty {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(115, 82, 77, 0.14);
  background: rgba(255, 250, 246, 0.72);
  color: var(--muted);
  font-size: 20px;
  box-shadow: var(--shadow);
}

.entry-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(113, 81, 76, 0.14);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.entry-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  min-height: 184px;
  box-shadow: inset 0 0 0 1px rgba(118, 82, 79, 0.1);
}

.entry-card__image,
.entry-card__fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.entry-card__image {
  object-fit: cover;
  object-position: center;
  background: #f2e5df;
}

.entry-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 24% 24%, hsla(var(--hue-a) 78% 95% / 0.86), transparent 18%),
    radial-gradient(circle at 78% 32%, hsla(var(--hue-b) 68% 76% / 0.62), transparent 22%),
    radial-gradient(circle at 58% 82%, hsla(var(--hue-c) 58% 88% / 0.7), transparent 26%),
    linear-gradient(160deg, hsl(var(--hue-a) 48% 84%), hsl(var(--hue-b) 36% 72%) 56%, hsl(var(--hue-c) 30% 68%));
  color: rgba(58, 38, 40, 0.82);
  font-family: "Cormorant Unicase", "Times New Roman", serif;
  font-size: 42px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.entry-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.entry-card__order {
  margin: 0;
  color: rgba(97, 74, 75, 0.66);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.entry-card__title {
  margin: 8px 0 0;
  font-size: 33px;
  line-height: 1;
  color: #452f31;
  overflow-wrap: anywhere;
}

.entry-card__section-pill {
  align-self: flex-start;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(79, 60, 61, 0.82);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-card__section-pill--viewed {
  background: rgba(232, 150, 171, 0.18);
  color: #8b3750;
}

.entry-card__section-pill--queue {
  background: rgba(109, 174, 170, 0.18);
  color: #31696a;
}

.entry-card__description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.entry-card__footer {
  margin-top: auto;
  padding-top: 14px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  color: #4b3435;
  box-shadow: 0 8px 24px rgba(103, 75, 73, 0.08);
}

.rating-badge__label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.rating-badge__value {
  font-size: 24px;
  line-height: 1;
}

.rating-badge--muted {
  border-color: rgba(145, 125, 127, 0.3);
}

.rating-badge--soft {
  background: rgba(222, 198, 193, 0.56);
  border-color: rgba(171, 125, 116, 0.34);
  color: #6d4643;
}

.rating-badge--warm {
  background: rgba(245, 213, 181, 0.64);
  border-color: rgba(200, 155, 98, 0.34);
  color: #8a5f28;
}

.rating-badge--sage {
  background: rgba(198, 228, 213, 0.66);
  border-color: rgba(116, 166, 142, 0.34);
  color: #2f6d50;
}

.rating-badge--berry {
  background: rgba(239, 199, 213, 0.74);
  border-color: rgba(197, 86, 115, 0.34);
  color: #8b3750;
}

.site-footer {
  margin-top: 30px;
  text-align: center;
}

.site-footer__credit {
  margin: 0;
  color: rgba(84, 63, 64, 0.72);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top, rgba(64, 116, 137, 0.16), transparent 34%),
    radial-gradient(circle at 16% 16%, rgba(156, 88, 112, 0.2), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(74, 132, 123, 0.18), transparent 22%),
    linear-gradient(180deg, #10141d 0%, #131923 44%, #0c1017 100%);
  color: #f3eef7;
}

html[data-theme="dark"] body::before {
  background-image:
    radial-gradient(rgba(171, 191, 214, 0.08) 0.8px, transparent 0.8px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.32;
}

html[data-theme="dark"] .hero {
  border-color: rgba(127, 156, 186, 0.16);
  background:
    radial-gradient(circle at 12% 24%, rgba(132, 164, 209, 0.14), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(176, 96, 127, 0.18), transparent 22%),
    radial-gradient(circle at 70% 82%, rgba(79, 138, 133, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(18, 24, 37, 0.98), rgba(21, 28, 42, 0.96) 50%, rgba(16, 22, 34, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .hero::before,
html[data-theme="dark"] .hero::after {
  opacity: 0.62;
}

html[data-theme="dark"] .hero__meta {
  color: rgba(207, 219, 236, 0.78);
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgba(118, 153, 190, 0.18);
  background: rgba(23, 30, 44, 0.92);
  color: #f0c889;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus-visible {
  background: rgba(29, 37, 52, 0.98);
  color: #ffd788;
}

html[data-theme="dark"] .hero__eyebrow {
  color: rgba(191, 204, 225, 0.72);
}

html[data-theme="dark"] .hero__title {
  color: #f8f2ff;
  text-shadow: 0 10px 30px rgba(126, 171, 223, 0.14);
}

html[data-theme="dark"] .hero__tagline {
  color: #e4d7e8;
}

html[data-theme="dark"] .hero__description {
  color: #b8bfd2;
}

html[data-theme="dark"] .stat-card {
  border-color: rgba(123, 152, 179, 0.16);
  background: rgba(17, 24, 36, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .stat-card__value {
  color: #f6ebff;
}

html[data-theme="dark"] .stat-card__label {
  color: rgba(199, 209, 225, 0.76);
}

html[data-theme="dark"] .catalog-toolbar {
  border-color: rgba(120, 149, 177, 0.16);
  background: rgba(17, 24, 36, 0.68);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .catalog-toolbar__label {
  color: #c6cfdf;
}

html[data-theme="dark"] .catalog-switch {
  background: rgba(13, 18, 28, 0.78);
  box-shadow: inset 0 0 0 1px rgba(120, 149, 177, 0.12);
}

html[data-theme="dark"] .catalog-switch__button {
  color: rgba(220, 229, 244, 0.82);
}

html[data-theme="dark"] .catalog-switch__button:hover:not(:disabled),
html[data-theme="dark"] .catalog-switch__button:focus-visible:not(:disabled) {
  color: #ffffff;
  background: rgba(53, 67, 92, 0.62);
}

html[data-theme="dark"] .catalog-switch__button.is-active {
  color: #fff9f7;
  background: linear-gradient(135deg, #6d86b3, #9d6583);
  box-shadow: 0 12px 24px rgba(26, 32, 48, 0.38);
}

html[data-theme="dark"] .section-banner {
  border-color: rgba(124, 154, 184, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .section-banner::before {
  background:
    radial-gradient(circle at 44% 26%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.05), transparent 22%);
}

html[data-theme="dark"] .section-banner::after {
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.34) 0%, rgba(13, 20, 32, 0.14) 36%, rgba(255, 255, 255, 0.04) 100%);
}

html[data-theme="dark"] .section-banner--viewed {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 207, 223, 0.14), transparent 16%),
    radial-gradient(circle at 62% 76%, rgba(255, 164, 191, 0.12), transparent 20%),
    linear-gradient(130deg, #4b2d39 0%, #66384f 38%, #7d4d64 100%);
}

html[data-theme="dark"] .section-banner--queue {
  background:
    radial-gradient(circle at 78% 24%, rgba(183, 236, 230, 0.12), transparent 18%),
    radial-gradient(circle at 64% 78%, rgba(117, 185, 177, 0.1), transparent 22%),
    linear-gradient(130deg, #27444a 0%, #2c6060 44%, #386f73 100%);
}

html[data-theme="dark"] .entry-card {
  border-color: rgba(121, 149, 177, 0.14);
  background: rgba(17, 24, 36, 0.76);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .entry-card::after {
  border-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .entry-card__media {
  background: rgba(10, 14, 22, 0.72);
  box-shadow: inset 0 0 0 1px rgba(121, 149, 177, 0.12);
}

html[data-theme="dark"] .entry-card__order {
  color: rgba(191, 205, 224, 0.66);
}

html[data-theme="dark"] .entry-card__title {
  color: #f7f1ff;
}

html[data-theme="dark"] .entry-card__section-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(230, 235, 246, 0.9);
}

html[data-theme="dark"] .entry-card__section-pill--viewed {
  background: rgba(215, 122, 157, 0.18);
  color: #ffbfd2;
}

html[data-theme="dark"] .entry-card__section-pill--queue {
  background: rgba(102, 177, 171, 0.18);
  color: #bcebe4;
}

html[data-theme="dark"] .entry-card__description {
  color: #bec7da;
}

html[data-theme="dark"] .rating-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #f5efff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .catalog-empty {
  border-color: rgba(121, 149, 177, 0.14);
  background: rgba(17, 24, 36, 0.76);
  color: #bec7da;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .site-footer__credit {
  color: rgba(197, 208, 225, 0.68);
}

@media (max-width: 980px) {
  .entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 18px;
  }

  .hero {
    padding: 52px 22px 22px;
    border-radius: 26px;
  }

  .hero__meta {
    font-size: 13px;
  }

  .hero__controls {
    top: 18px;
    right: 22px;
    gap: 10px;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__title {
    font-size: clamp(42px, 16vw, 78px);
  }

  .hero__tagline {
    font-size: 24px;
  }

  .hero__description {
    font-size: 18px;
  }

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

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-switch {
    width: 100%;
  }

  .catalog-switch__button {
    flex: 1 1 180px;
    min-width: 0;
  }

  .section-banner {
    min-height: 132px;
    padding: 22px 24px;
    border-radius: 24px;
  }

  .section-banner__title {
    font-size: clamp(34px, 11vw, 56px);
  }

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

  .entry-card__media {
    min-height: 240px;
  }
}

@media (max-width: 460px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .section-banner__title::before,
  .section-banner__title::after {
    margin: 0 8px;
  }
}
