/* ============================================
   Anadromi Labs
   ============================================ */

:root {
  --dark: #0a0a0a;
  --dark-elevated: #111111;
  --dark-surface: #161616;
  --dark-border: #1e1e1e;
  --light: #ede8e0;
  --light-dim: #b0aaa0;
  --light-faint: #6a655d;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--light);
  background-color: var(--dark);
  width: 100%;
  overflow-x: clip;
}

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

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---- Grain Overlay ---- */

.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
  animation: grain 0.8s steps(1) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  14% { transform: translate(-5%, -10%); }
  28% { transform: translate(-15%, 5%); }
  42% { transform: translate(7%, -25%); }
  57% { transform: translate(-5%, 25%); }
  71% { transform: translate(15%, 0%); }
  85% { transform: translate(0%, 15%); }
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav--scrolled {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-dim);
  transition: color 0.3s ease;
}

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

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 232, 224, 0.06) 0%, rgba(237, 232, 224, 0.02) 40%, transparent 70%);
  filter: blur(40px);
}

.hero-orb--secondary {
  top: 60%;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(237, 232, 224, 0.025) 0%, transparent 60%);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--light-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--light-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ---- Ethos ---- */

.ethos {
  padding: 10rem 3rem;
  display: flex;
  justify-content: center;
}

.ethos-inner {
  max-width: 720px;
}

.ethos-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--light-dim);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}

.ethos-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Scale Numbers ---- */

.scale-numbers {
  padding: 0 3rem 10rem;
  display: flex;
  justify-content: center;
}

.scale-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--dark-border);
}

.scale-stat {
  flex: 1;
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-stat.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scale-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.scale-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--light-faint);
  line-height: 1.5;
}

.scale-divider {
  width: 1px;
  height: 4rem;
  background-color: var(--dark-border);
  flex-shrink: 0;
}

/* ---- Section Shared ---- */

.section-header {
  padding: 0 3rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-faint);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ---- The Lab ---- */

.the-lab {
  padding: 8rem 0;
}

.the-lab .section-header {
  padding-left: 3rem;
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--dark-border);
}

.research-card {
  background-color: var(--dark);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.research-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.research-card--wide {
  grid-column: 1 / -1;
}

/* ---- Research Card Visuals (generative, no images) ---- */

.research-card-visual {
  position: relative;
  height: 360px;
  overflow: hidden;
  background-color: var(--dark);
}

.research-card--wide .research-card-visual {
  height: 440px;
}

.visual-layer {
  position: absolute;
  inset: 0;
}

.visual-noise {
  opacity: 0.12;
  filter: url(#noise-fine);
}

/*
 * Horizon scene:
 * Dark curved mass at the bottom, bright glow along the crest,
 * fading into a lighter sky.
 */
.visual-horizon {
  background: linear-gradient(
    to bottom,
    #1a1917 0%,
    #12110f 100%
  );
}

.visual-horizon-curve {
  background:
    radial-gradient(ellipse 120% 80% at 50% 110%, var(--dark) 48%, transparent 50%);
}

.visual-horizon-glow {
  background:
    radial-gradient(ellipse 60% 20% at 50% 62%, rgba(237, 232, 224, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 30% 15% at 50% 60%, rgba(237, 232, 224, 0.06) 0%, transparent 60%);
  filter: blur(8px);
}

.research-card:hover .visual-horizon-glow {
  filter: blur(6px);
  opacity: 1.15;
  transition: filter 0.8s ease, opacity 0.8s ease;
}

/*
 * Light shaft scene:
 * Diagonal beams of light cutting through total darkness,
 * with a small orb of light.
 */
.visual-shafts {
  background: #080807;
}

.visual-shaft {
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(237, 232, 224, 0.035) 40%,
    rgba(237, 232, 224, 0.06) 42%,
    rgba(237, 232, 224, 0.035) 44%,
    transparent 54%
  );
}

.visual-shaft--2 {
  background: linear-gradient(
    128deg,
    transparent 40%,
    rgba(237, 232, 224, 0.025) 50%,
    rgba(237, 232, 224, 0.045) 52%,
    rgba(237, 232, 224, 0.025) 54%,
    transparent 64%
  );
}

.visual-shafts-orb {
  background: radial-gradient(circle at 35% 40%, rgba(237, 232, 224, 0.10) 0%, rgba(237, 232, 224, 0.03) 15%, transparent 35%);
  filter: blur(4px);
}

/*
 * Diffusion scene:
 * Fog rising from below, soft top-light bleeding downward,
 * everything merging in atmosphere.
 */
.visual-diffusion {
  background: linear-gradient(
    to bottom,
    #12110f 0%,
    #0d0c0b 100%
  );
}

.visual-diffusion-fog {
  background:
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(237, 232, 224, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 90%, rgba(237, 232, 224, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 85%, rgba(237, 232, 224, 0.025) 0%, transparent 50%);
  filter: blur(20px);
}

.visual-diffusion-glow {
  background: radial-gradient(ellipse 50% 40% at 50% 15%, rgba(237, 232, 224, 0.045) 0%, transparent 60%);
  filter: blur(12px);
}

/* ---- Research Card Body ---- */

.research-card-body {
  padding: 2.5rem 3rem;
}

.research-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.research-card-body p {
  font-size: 0.95rem;
  color: var(--light-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.research-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-faint);
  transition: color 0.3s ease;
}

.research-card:hover .research-card-link {
  color: var(--light);
}

/* ---- Lab Founder ---- */

.lab-founder {
  padding: 0 3rem 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.lab-founder.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lab-founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  border: 1px solid var(--dark-border);
  padding: 3rem;
}

.lab-founder-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  margin-bottom: 1.5rem;
}

.lab-founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.lab-founder-bio h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.lab-founder-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-faint);
  margin-bottom: 1.25rem;
}

.lab-founder-bio p {
  font-size: 0.9rem;
  color: var(--light-dim);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.lab-founder-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.lab-founder-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--light-faint);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.lab-founder-links a:hover {
  color: var(--light);
}

.lab-founder-context p {
  font-size: 0.95rem;
  color: var(--light-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.lab-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-faint);
  transition: color 0.3s ease;
}

.lab-read-more:hover {
  color: var(--light);
}

/* ---- Article Page ---- */

.article {
  padding-top: 6rem;
}

.article-header {
  padding: 6rem 3rem 5rem;
  text-align: center;
  position: relative;
}

.article-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-faint);
  margin-bottom: 2rem;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.article-header h1 em {
  font-style: italic;
  font-weight: 300;
}

.article-lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--light-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--light-faint);
  letter-spacing: 0.04em;
}

.article-meta-sep {
  margin: 0 0.5rem;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 3rem 6rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  font-size: 1rem;
  color: var(--light-dim);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.article-body strong {
  color: var(--light);
  font-weight: 400;
}

.article-body em {
  font-style: italic;
}

.article-list {
  margin: 2rem 0;
  border-top: 1px solid var(--dark-border);
}

.article-list-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.95rem;
  color: var(--light-dim);
  line-height: 1.75;
}

.article-list-item strong {
  color: var(--light);
  font-weight: 400;
}

.article-quote {
  border-left: 2px solid var(--dark-border);
  padding: 1.25rem 0 1.25rem 2rem;
  margin: 3rem 0;
}

.article-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 0;
}

.article-compare {
  margin: 2.5rem 0;
  border: 1px solid var(--dark-border);
}

.article-compare-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 1px;
  background-color: var(--dark-border);
}

.article-compare-row + .article-compare-row {
  border-top: 1px solid var(--dark-border);
}

.article-compare-row span {
  background-color: var(--dark);
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--light-dim);
}

.article-compare-row span:first-child {
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--light-faint);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-compare-header span {
  font-size: 0.68rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-faint);
  padding: 0.75rem 1.25rem;
}

.article-compare-row span:last-child {
  color: var(--light);
}

.article-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.article-cta p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.article-cta .btn {
  margin: 0 auto;
}

/* ---- Contact ---- */

.contact {
  position: relative;
  padding: 12rem 3rem;
  text-align: center;
  overflow: hidden;
}

.contact-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 232, 224, 0.035) 0%, rgba(237, 232, 224, 0.01) 40%, transparent 60%);
  filter: blur(50px);
}

.contact-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-inner.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact p {
  font-size: 1.05rem;
  color: var(--light-dim);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--light);
  color: var(--dark);
  border: 1px solid var(--light);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--light-dim);
  border: 1px solid var(--dark-border);
}

.btn-ghost:hover {
  border-color: var(--light-faint);
  color: var(--light);
}

/* ---- Footer ---- */

.footer {
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 4rem 3rem;
  gap: 4rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--light-faint);
}

.footer-links {
  display: flex;
  gap: 5rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-faint);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--light-dim);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--light);
}

.footer-bottom {
  padding: 1.5rem 3rem;
  border-top: 1px solid var(--dark-border);
  font-size: 0.75rem;
  color: var(--light-faint);
}

/* ---- Stagger ---- */

.scale-stat:nth-child(1) { transition-delay: 0s; }
.scale-stat:nth-child(3) { transition-delay: 0.1s; }
.scale-stat:nth-child(5) { transition-delay: 0.2s; }
.scale-stat:nth-child(7) { transition-delay: 0.3s; }

.research-card:nth-child(2) { transition-delay: 0.15s; }

/* ---- Responsive ---- */

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

  .research-card--wide {
    grid-column: auto;
  }

  .lab-founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .article-compare-row {
    grid-template-columns: 100px 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .scale-numbers {
    padding: 0 1.5rem 6rem;
  }

  .scale-inner {
    flex-wrap: wrap;
  }

  .scale-stat {
    flex: 1 1 40%;
    padding: 1.75rem 1.5rem;
  }

  .scale-divider {
    display: none;
  }

  .nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .ethos {
    padding: 6rem 1.5rem;
  }

  .section-header {
    padding: 0 1.5rem;
  }

  .the-lab .section-header {
    padding-left: 1.5rem;
  }

  .lab-founder {
    padding: 0 1.5rem 3rem;
  }

  .lab-founder-inner {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .lab-founder-avatar {
    width: 92px;
    height: 92px;
  }

  .research-card-body {
    padding: 2rem 1.5rem;
  }

  .research-card-visual,
  .research-card--wide .research-card-visual {
    height: 240px;
  }

  .article-header {
    padding: 4rem 1.5rem 3rem;
  }

  .article-body {
    padding: 0 1.5rem 4rem;
  }

  .contact {
    padding: 8rem 1.5rem;
  }

  .footer-inner {
    padding: 3rem 1.5rem;
  }

  .footer-bottom {
    padding: 1.5rem;
  }

  .footer-links {
    gap: 3rem;
    flex-wrap: wrap;
  }

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

  .article-compare-header {
    display: none;
  }
}

@media (max-width: 480px) {
  .publication-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
