/*
Theme Name: MAERTZ Landing
Theme URI: https://maertz.plus/
Author: MAERTZ
Description: Schlankes WordPress Theme für die MAERTZ Landingpage
Version: 1.0
Text Domain: maertz-landing
*/

:root {
  --teal: #00a499;
  --teal-strong: #008f86;
  --teal-soft: #d9f4f2;
  --teal-mist: #eefaf9;
  --slate: #5a6778;
  --slate-soft: #6b7888;
  --charcoal: #111827;
  --offwhite: #f9fafb;
  --lightgray: #e5e7eb;
  --midgray: #6b7280;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  --shadow-hover: 0 26px 56px rgba(17, 24, 39, 0.14);
  --radius: 18px;
  --max-width: 1440px;
  --section-space: clamp(72px, 10vw, 128px);
  --nav-height: 110px;

  --neutral-blue: #c9dde0;
  --neutral-blue-soft: #d8e6e8;
  --neutral-gray-blue: #dde4e8;
  --neutral-beige: #e7dfd2;
  --neutral-sand: #efe9df;
  --border-soft: rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-dark {
  background: linear-gradient(135deg, #7bb7b1 0%, #5a6778 52%, #6b7888 100%);
  color: var(--white);
}

.section-dark p,
.section-dark .eyebrow,
.section-dark .stat,
.section-dark .card p,
.section-dark .card li,
.section-dark .subtle {
  color: rgba(255, 255, 255, 0.88);
}

.section-soft {
  background: var(--neutral-gray-blue);
  color: var(--charcoal);
}

.section-soft p,
.section-soft .lead,
.section-soft .stat,
.section-soft .subtle {
  color: var(--midgray);
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-strong);
  margin-bottom: 14px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 12px;
}

p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  color: var(--midgray);
  max-width: 900px;
}

.section-dark p.lead {
  color: rgba(255, 255, 255, 0.92);
}

.section-soft p.lead {
  color: var(--midgray);
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--neutral-blue);
  padding-top: var(--nav-height);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  opacity: 0.32;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy p {
  color: rgba(17, 24, 39, 0.76);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 30px;
}

.headline-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(17, 24, 39, 0.92);
  margin-bottom: 22px;
  font-weight: 600;
}

.hero h1 {
  color: var(--charcoal);
}

.hero .eyebrow {
  color: var(--teal-strong);
}

.hero-logo {
  width: min(100%, 250px);
  height: auto;
  margin-bottom: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.stat {
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.52);
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  font-size: 0.96rem;
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.hero-card,
.mock-image,
.performol-box,
.system-box,
.target-card,
.portfolio-card,
.logo-item,
.accessory-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.46);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hero-card.main {
  top: 20px;
  right: 0;
  width: 72%;
  height: 380px;
}

.hero-card.alt {
  bottom: 10px;
  left: 0;
  width: 46%;
  height: 240px;
}

.hero-card.detail {
  bottom: 48px;
  right: 24px;
  width: 32%;
  height: 150px;
}

.mock-image {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    url('https://maertz.plus/wp-content/uploads/2026/03/Maertz-Schrank-Filament-Glue.png') center/cover no-repeat;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(17,24,39,0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-strong) 100%);
  color: var(--white);
}

.btn-secondary {
  color: var(--charcoal);
  border-color: rgba(17,24,39,0.12);
  background: rgba(255,255,255,0.56);
}

.section-header {
  max-width: 900px;
  margin-bottom: 42px;
}

.brand-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.brand-copy {
  padding-right: 12px;
}

.brand-copy p + p {
  margin-top: 16px;
}

.brand-facts {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.fact {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-mist) 100%);
  border: 1px solid rgba(0,164,153,0.16);
  border-radius: 16px;
  padding: 18px;
}

.fact strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.fact span {
  color: var(--midgray);
  font-size: 0.95rem;
}

.brand-visual {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    url('https://maertz.plus/wp-content/uploads/2026/03/maertz-brand.png') center/cover no-repeat;
}

.brand-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  background: rgba(0,164,153,0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 300px;
}

.brand-badge strong {
  display: block;
  margin-bottom: 6px;
}

.trust-wrap {
  display: grid;
  gap: 28px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.logo-item {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-mist) 100%);
  border: 1px solid rgba(0,164,153,0.16);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

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

.portfolio-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-mist) 100%);
  border: 1px solid rgba(0,164,153,0.16);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,164,153,0.28);
}

.portfolio-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  flex-grow: 1;
}

.portfolio-card li {
  color: var(--midgray);
  position: relative;
  padding-left: 16px;
}

.portfolio-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 10px;
}

.portfolio-button {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}


.performol-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 30px;
  align-items: stretch;
}

.performol-box {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(17,24,39,0.08);
  padding: 32px;
}

.performol-box p + p {
  margin-top: 14px;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,164,153,0.18);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-strong) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.performol-visual {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    url('https://maertz.plus/wp-content/uploads/2026/03/Maertz-Performol.png') center/cover no-repeat;
}

.performol-visual .overlay-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,24,39,0.08);
  color: var(--charcoal);
  border-radius: 16px;
  padding: 18px;
  max-width: 330px;
}

.accessory-grid,
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.accessory-box,
.system-box {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-mist) 100%);
  border: 1px solid rgba(0,164,153,0.16);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accessory-box:hover,
.system-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.content-box {
  padding: 28px;
}

.mini-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mini-image.one { background-image: url('https://maertz.plus/wp-content/uploads/2026/03/maertz-glue.png'); }
.mini-image.two { background-image: url('https://maertz.plus/wp-content/uploads/2026/03/Maertz-Isosea-Performol-Glue.png'); }

.content-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.content-box li {
  color: var(--midgray);
  padding-left: 16px;
  position: relative;
}

.content-box li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 10px;
}

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

.target-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-mist) 100%);
  border: 1px solid rgba(0,164,153,0.16);
  padding: 24px;
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.target-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 164, 153, 0.4);
  box-shadow: var(--shadow-hover);
}

.target-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 164, 153, 0.18) 0%, rgba(0, 164, 153, 0.34) 100%);
  border: 1px solid rgba(0, 164, 153, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-strong);
  font-weight: 800;
}

.closing {
  text-align: center;
}

.closing p {
  max-width: 720px;
  margin: 0 auto 28px;
}

.closing-hero {
  min-height: auto;
  padding: var(--section-space) 0;
}

.closing-hero .container {
  position: relative;
  z-index: 2;
}

.closing-hero h2 {
  color: var(--charcoal);
}

.closing-hero .eyebrow {
  color: var(--teal-strong);
}

.closing-hero p.lead {
  color: var(--midgray);
}

.closing-hero .btn-row {
  justify-content: center;
}

.form-wrap {
  max-width: 860px;
  margin: 36px auto 0;
  text-align: left;
  padding: 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(94, 121, 128, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  color: var(--charcoal);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  color: rgba(17,24,39,0.72);
  font-size: 1rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.62);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle-bars {
  position: relative;
  width: 22px;
  height: 16px;
}

.menu-toggle-bars span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 7px; }
.menu-toggle-bars span:nth-child(3) { top: 14px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-height) - 6px);
  left: 20px;
  right: 20px;
  z-index: 99;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--charcoal);
  background: rgba(0,164,153,0.06);
  border: 1px solid rgba(0,164,153,0.08);
}

.mobile-menu a:hover {
  background: rgba(0,164,153,0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,164,153,0.14);
  border: 1px solid rgba(0,164,153,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  animation: pulseArrow 2.2s infinite ease-in-out;
  z-index: 5;
}

.scroll-indicator span {
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(45deg);
  margin-top: -4px;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,164,153,0.28) 0%, rgba(0,164,153,0.08) 38%, transparent 72%);
  opacity: 0.6;
  pointer-events: none;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,164,153,0.14), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

@keyframes pulseArrow {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
}

.site-footer {
  background: rgba(94,121,128,0.72);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.legal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(94, 121, 128, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.legal-nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-brand {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.legal-back {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.legal-main {
  flex: 1;
  padding: clamp(48px, 8vw, 100px) 0;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}

.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 30px;
}

.legal-card p,
.legal-card li {
  color: var(--charcoal);
}

.legal-card ul,
.legal-card ol {
  padding-left: 20px;
  margin: 12px 0 18px;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card a {
  color: var(--teal-strong);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .split,
  .brand-box,
  .performol-layout,
  .accessory-grid,
  .systems-grid,
  .portfolio-grid,
  .target-grid,
  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 10px);
  }

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

  .hero-visual {
    min-height: 480px;
  }

  .brand-box,
  .performol-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-stats,
  .brand-facts,
  .portfolio-grid,
  .target-grid,
  .logo-grid,
  .accessory-grid,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-card.main {
    width: 78%;
    height: 260px;
  }

  .hero-card.alt {
    width: 54%;
    height: 170px;
  }

  .hero-card.detail {
    width: 42%;
    height: 110px;
    bottom: 22px;
    right: 10px;
  }

  .brand-visual,
  .performol-visual {
    min-height: 360px;
  }

  .section {
    padding: 76px 0;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .brandmark {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .hero-logo {
    width: min(100%, 260px);
  }
}