:root {
  --bg-0: #f5f7fa;
  --bg-1: #edf1f6;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-muted: #f1f4f8;
  --line: #d3dce7;
  --line-strong: #bfcbda;
  --text: #111b2c;
  --text-soft: #4a586b;
  --text-muted: #68778b;
  --brand: #104a72;
  --brand-strong: #0e5f86;
  --brand-soft: #e3edf6;
  --ok: #0f7a4d;
  --warn: #9a5f16;
  --shadow-sm: 0 4px 14px rgba(10, 23, 38, 0.06);
  --shadow-md: 0 12px 28px rgba(10, 23, 38, 0.08);
  --shadow-lg: 0 18px 38px rgba(10, 23, 38, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
  position: relative;
}

body::before {
  display: none;
}

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

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

.tm-icon {
  display: block;
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.8rem;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 0.35rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.84rem 1rem;
  border-radius: 14px;
  border: 1px solid #d9e1ea;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid #c9d8e8;
  background: #17527e;
  color: #f3f8fc;
  box-shadow: 0 6px 14px rgba(23, 82, 126, 0.18);
}

.brand-mark .tm-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-title {
  font-weight: 760;
  letter-spacing: -0.01em;
  font-size: 1rem;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.81rem;
}

.nav-actions,
.hero-actions,
.featured-actions,
.card-actions,
.compact-actions,
.pill-row,
.tag-list,
.search-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn .tm-icon {
  width: 0.95rem;
  height: 0.95rem;
}

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

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  outline-offset: 2px;
}

.btn-primary {
  color: #f7fbff;
  border-color: rgba(16, 74, 114, 0.42);
  background: linear-gradient(180deg, #145683, #104a72);
  box-shadow: 0 8px 16px rgba(16, 74, 114, 0.22);
}

.btn-soft {
  color: var(--text);
  background: #fbfdff;
  border-color: #ccdae9;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 20px rgba(16, 74, 114, 0.28);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: #f3f7fb;
  border-color: #b8c6d6;
}

main > * {
  animation: fade-lift 460ms ease both;
}

main > *:nth-child(2) {
  animation-delay: 70ms;
}

main > *:nth-child(3) {
  animation-delay: 120ms;
}

main > *:nth-child(4) {
  animation-delay: 150ms;
}

main > *:nth-child(5) {
  animation-delay: 190ms;
}

@keyframes fade-lift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.hero {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid #d8e1ec;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.02fr);
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.2rem);
  padding: clamp(1.15rem, 2.2vw, 2rem);
  min-height: clamp(450px, 38vw, 590px);
}

.hero-main {
  display: grid;
  align-content: center;
  padding: clamp(0.1rem, 0.6vw, 0.5rem);
  max-width: 640px;
  position: relative;
}

.hero-main::before {
  display: none;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(330px, 34vw, 500px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: auto;
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  display: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center right;
  transform: none;
  filter: saturate(1.04) contrast(1.02) drop-shadow(0 16px 22px rgba(42, 66, 90, 0.14));
  display: block;
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-content: center;
  justify-items: center;
  color: var(--text-muted);
  background: linear-gradient(135deg, #eef7ff, #effcf9);
}

.hero-media-fallback .tm-icon {
  width: 1.55rem !important;
  height: 1.55rem !important;
}

.hero-media.is-missing {
  min-height: 220px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(180deg, #f7f9fc, #f0f4f9);
}

.hero-media.is-missing::before {
  display: none;
}

.hero-media.is-missing .hero-media-fallback {
  display: grid;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d0dae7;
  background: #f1f5fa;
  color: #34516d;
  font-size: 0.7rem;
  font-weight: 740;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-copy h2,
.featured-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 780;
}

.hero h1 {
  margin-top: 0.82rem;
  max-width: 14ch;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.01;
  color: #172339;
}

.hero-copy {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 1rem;
}

.hero-actions .btn {
  min-height: 2.7rem;
  padding-inline: 1rem;
}

.pill-row {
  margin-top: 0.95rem;
  gap: 0.5rem;
}

.pill,
.tag,
.tag-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
}

.pill {
  padding: 0.5rem 0.82rem;
  background: #ffffff;
  border: 1px solid #d1dae5;
  color: #43566d;
  font-size: 0.94rem;
}

.panel {
  border: 1px solid #d3dce7;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.empty-icon,
.footer-mark,
.demo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: var(--brand-soft);
  color: #0f766e;
}

.empty-icon .tm-icon,
.footer-mark .tm-icon,
.demo-mark .tm-icon {
  width: 1rem;
  height: 1rem;
}

.section-subcopy,
.catalog-subtitle,
.compact-subtitle,
.featured-subtitle,
.toolbar-copy,
.funding-link,
.site-footer,
.panel-empty p {
  color: var(--text-soft);
}

.catalog-subtitle,
.compact-subtitle,
.featured-subtitle,
.panel-empty p {
  margin: 0.3rem 0 0;
  line-height: 1.58;
}

.section-block {
  margin-top: 2.6rem;
}

.section-copy {
  margin-bottom: 1.1rem;
}

.section-copy.centered {
  text-align: center;
}

.section-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.05;
  color: #1a273c;
}

.section-subcopy {
  margin: 0.65rem 0 0;
  line-height: 1.72;
  max-width: 50rem;
}

.section-copy.centered .section-subcopy {
  margin-left: auto;
  margin-right: auto;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.panel-featured {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background: #ffffff;
}

.panel-featured::before {
  display: none;
}

.featured-shell {
  display: grid;
  gap: 1rem;
}

.featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.featured-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2f4f70;
  font-size: 0.86rem;
  font-weight: 700;
}

.featured-inline-link:hover {
  color: #1f3f5f;
}

.featured-content {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(220px, 0.76fr);
  gap: 0.95rem;
  align-items: stretch;
}

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

.featured-side {
  border: 1px solid #d5dfeb;
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.85rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.featured-side h4 {
  margin: 0;
  font-size: 0.9rem;
  color: #203b59;
  letter-spacing: -0.01em;
}

.featured-points {
  display: grid;
  gap: 0.62rem;
}

.featured-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.featured-point .tm-icon {
  margin-top: 0.03rem;
  color: #2f587f;
}

.featured-point-label {
  display: block;
  font-size: 0.72rem;
  color: #6a7d95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-point strong {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.88rem;
  color: #243d5a;
}

.featured-side-media {
  padding: 0;
  overflow: hidden;
}

.featured-image-wrap {
  position: relative;
  min-height: 220px;
  height: 100%;
  background: linear-gradient(180deg, #f6f9ff, #eef4fb);
}

.featured-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #243d5a;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0), rgba(246, 250, 255, 0.96));
}

.featured-image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #56708d;
}

.featured-image-wrap.is-missing .featured-image-fallback {
  display: flex;
}

.catalog-card,
.compact-row,
.panel-controls,
.funding-item,
.panel-empty {
  background: var(--surface);
}

.panel-controls,
.funding-item,
.panel-empty {
  padding: 1.1rem;
}

.catalog-top,
.compact-top,
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.featured-badges {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.status-badge,
.featured-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-size: 0.79rem;
  padding: 0.38rem 0.72rem;
  font-weight: 800;
}

.status-badge {
  border: 1px solid #b9dfcf;
  background: #ebf9f2;
  color: #136745;
}

.status-neutral {
  color: #586a80;
  border-color: #d1dae5;
  background: #f3f6fa;
}

.featured-kicker {
  color: #8f5918;
  border: 1px solid #efcea0;
  background: #fdf5ea;
}

.featured-headline,
.catalog-title-wrap,
.compact-title-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.demo-mark {
  background: linear-gradient(180deg, #145683, #104a72);
  color: #edfaff;
}

.demo-mark-large {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
}

.featured-title {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.tag-list {
  margin-top: 0.95rem;
}

.tag {
  padding: 0.4rem 0.75rem;
  border: 1px solid #d0dbe8;
  background: #f7f9fc;
  color: #4d6078;
  font-size: 0.8rem;
}

.panel-controls {
  display: grid;
  gap: 0.95rem;
  border-color: #d2dce8;
  background: #ffffff;
}

.controls-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.controls-title {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  color: #1a2e48;
}

.controls-hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  min-height: 1.3rem;
  padding: 0 0.35rem;
  border-radius: 7px;
  border: 1px solid #c4cfdd;
  background: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(131, 151, 173, 0.34);
  color: #314860;
  font-family: inherit;
  font-size: 0.79rem;
  font-weight: 700;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.search-input-wrap {
  position: relative;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrap input {
  padding-left: 2.4rem;
  border-color: #c2d0e0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.search-actions {
  justify-content: flex-end;
}

.filters-panel {
  border-radius: var(--radius-md);
  border: 1px solid #d4dde9;
  background: #f9fbfe;
  padding: 0.9rem;
}

.filters-panel summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-panel summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #4e657f;
  border-bottom: 2px solid #4e657f;
  transform: rotate(45deg);
  transition: transform 140ms ease;
}

.filters-panel[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.filters-panel summary::-webkit-details-marker {
  display: none;
}

.summary-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.filters-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 210px) auto auto;
  gap: 0.75rem;
  align-items: end;
}

.tag-filter-group {
  margin: 0;
  border: 0;
  padding: 0;
}

.tag-filter-group legend {
  margin-bottom: 0.55rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.tag-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-filter {
  padding: 0.42rem 0.7rem;
  border: 1px solid #cfd9e6;
  background: #ffffff;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.tag-filter:hover {
  border-color: #b3c4d9;
  background: #f5f8fc;
  transform: translateY(-1px);
}

.tag-filter.active {
  border-color: #a5c0dc;
  background: #eef4fb;
}

.tag-filter input {
  width: auto;
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--brand);
}

.control-stack {
  display: grid;
  gap: 0.35rem;
  min-width: 7.5rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

input:not([type="checkbox"]),
select {
  width: 100%;
  min-height: 2.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid #c5d1df;
  padding: 0.62rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.apply-button {
  min-width: 8.8rem;
}

.toolbar-copy {
  margin: 0;
  font-size: 0.86rem;
  color: #4b6078;
}

.toolbar-controls {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-controls {
  display: grid;
  grid-template-columns: auto minmax(70px, 88px) auto;
  align-items: center;
  gap: 0.4rem;
}

.page-btn {
  min-height: 2.4rem;
  min-width: 2.4rem;
  padding: 0;
}

.page-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.catalog-list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.75rem;
}

.catalog-card,
.compact-row {
  padding: 1.05rem;
  border-color: #d2dce8;
  background: #ffffff;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.catalog-card:hover,
.compact-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c0cfdf;
}

.catalog-title,
.compact-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
  font-weight: 760;
}

.compact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.compact-body {
  min-width: 0;
}

.compact-actions {
  align-self: center;
  justify-content: flex-end;
}

.compact-actions .btn {
  min-width: 7rem;
}

.card-actions .btn,
.compact-actions .btn {
  min-height: 2.55rem;
}

.panel-empty {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.85rem;
}

.panel-empty strong {
  display: block;
  margin-bottom: 0.2rem;
}

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

.funding-item {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  border-color: #d2dce8;
  background: #ffffff;
}

.funding-logo-slot {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funding-logo {
  object-fit: contain;
}

.funding-logo-vinnova {
  max-height: 6.3rem;
}

.funding-logo-kks {
  max-height: 7rem;
}

.funding-logo-aurora {
  max-height: 4.5rem;
}

.funding-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1f4f75;
  font-weight: 730;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #d2dbe7;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9rem;
  color: #5a6b82;
}

.footer-mark {
  width: 1.85rem;
  height: 1.85rem;
}

.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;
}

@media (max-width: 1024px) {
  .hero-grid,
  .featured-layout,
  .funding-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1rem;
    min-height: auto;
    padding: 1.15rem;
  }

  .hero-main {
    max-width: none;
    padding: 0;
  }

  .hero-main::before {
    display: none;
  }

  .hero-media {
    min-height: 300px;
    justify-content: center;
    padding-top: 0;
  }

  .hero-media img {
    width: min(100%, 760px);
    transform: none;
  }

  .featured-content {
    grid-template-columns: 1fr;
  }

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

  .filters-grid .tag-filter-group {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 1rem, 1180px);
    padding-bottom: 2rem;
  }

  .navbar {
    border-radius: 20px;
  }

  .navbar,
  .nav-actions,
  .search-form,
  .catalog-toolbar,
  .toolbar-controls {
    display: grid;
  }

  .hero-grid {
    padding: 1rem;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .hero-copy {
    max-width: none;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 230px;
  }

  .hero-media img {
    width: min(100%, 680px);
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .controls-head {
    display: grid;
    gap: 0.35rem;
  }

  .search-actions {
    justify-content: stretch;
  }

  .search-actions .btn,
  .nav-actions .btn,
  .featured-actions .btn,
  .card-actions .btn,
  .compact-actions .btn,
  .apply-button {
    width: 100%;
  }

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

  .catalog-top,
  .compact-top {
    align-items: flex-start;
  }

  .catalog-title-wrap,
  .compact-title-wrap,
  .featured-headline {
    grid-template-columns: 1fr;
  }

  .featured-top {
    align-items: flex-start;
  }

  .compact-row {
    grid-template-columns: 1fr;
  }

  .compact-actions {
    justify-content: stretch;
  }

  .site-footer {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
