:root {
  --ink: #211d18;
  --muted: #665f55;
  --paper: #f8f5ee;
  --panel: #eee8dc;
  --line: #d6ccbc;
  --rust: #8f3f2d;
  --olive: #55624d;
  --blue: #34495d;
  --gold: #b78a49;
  --white: #fffdf8;
  --focus: #0a6f72;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rust);
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  font-family: var(--serif);
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: clamp(280px, 31vw, 380px);
  height: auto;
}

.brand span {
  font-size: 1.45rem;
}

.brand small {
  color: var(--muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.92rem;
}

.primary-nav a,
.primary-nav summary {
  cursor: pointer;
  text-decoration: none;
}

.primary-nav details {
  position: relative;
}

.primary-nav summary {
  list-style: none;
}

.primary-nav summary::-webkit-details-marker {
  display: none;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: 1.7rem;
  min-width: 12rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(33, 29, 24, 0.12);
}

.nav-menu a {
  padding: 0.45rem 0.55rem;
}

main {
  min-height: 60vh;
}

.masthead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.72fr);
  grid-template-areas:
    "copy visual"
    "notice visual";
  gap: clamp(1.5rem, 4vw, 4.5rem) clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 76vh;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem) clamp(1.2rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(248, 245, 238, 0.97), rgba(248, 245, 238, 0.86)),
    url("/images/editorial/manuscript-lines.svg"),
    linear-gradient(145deg, rgba(214, 204, 188, 0.34), rgba(255, 253, 248, 0.2) 46%, rgba(85, 98, 77, 0.1));
  background-size: cover, cover, auto;
  overflow: hidden;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 3vw, 2.5rem) auto clamp(1rem, 3vw, 2.5rem) 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(33, 29, 24, 0.18), transparent);
  pointer-events: none;
}

.mast-copy {
  grid-area: copy;
  max-width: 56rem;
}

.editorial-mast-copy {
  align-self: end;
  max-width: 58rem;
}

.editorial-mast-copy .kicker {
  color: var(--olive);
}

.editorial-mast-copy h1 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.85rem, 4.35vw, 4.85rem);
  line-height: 1;
}

.editorial-mast-copy p:not(.kicker) {
  max-width: 46rem;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
}

.hero-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(33, 29, 24, 0.16);
}

.hero-text-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration-color: rgba(143, 63, 45, 0.45);
  text-underline-offset: 0.28em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.hero-text-links a:hover {
  color: var(--rust);
  text-decoration-color: currentColor;
}

.editorial-visual {
  grid-area: visual;
  position: relative;
  min-height: clamp(28rem, 44vw, 38rem);
  margin: 0;
  isolation: isolate;
}

.visual-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(33, 29, 24, 0.16);
  background: var(--white);
  box-shadow: 0 22px 52px rgba(33, 29, 24, 0.16);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-frame-main {
  inset: 4% 3% 16% 14%;
  z-index: 2;
}

.visual-frame-shelf {
  inset: 0 23% 54% 0;
  z-index: 1;
  filter: saturate(0.82);
}

.visual-cover-stack {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, clamp(7rem, 12vw, 9.75rem));
  gap: clamp(0.65rem, 1.2vw, 1rem);
  align-items: end;
}

.visual-cover-stack img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(33, 29, 24, 0.2);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(33, 29, 24, 0.24);
  image-rendering: auto;
}

.visual-cover-stack img:nth-child(2) {
  transform: translateY(-1.1rem);
}

.editorial-visual figcaption {
  position: absolute;
  right: 4%;
  top: 7%;
  z-index: 4;
  max-width: 12rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(33, 29, 24, 0.18);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 30px rgba(33, 29, 24, 0.1);
}

.editorial-visual figcaption span,
.hero-metadata li {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-visual figcaption strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-metadata {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 4;
  display: grid;
  gap: 0.35rem;
  max-width: 15rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--rust);
  background: rgba(248, 245, 238, 0.9);
  list-style: none;
}

.agency-bulletin {
  grid-area: notice;
  align-self: start;
  max-width: 58rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(33, 29, 24, 0.18);
  border-bottom: 1px solid rgba(33, 29, 24, 0.18);
}

.agency-bulletin p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.agency-bulletin strong {
  color: var(--ink);
  font-weight: 700;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .visual-frame,
  .visual-cover-stack img {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .editorial-visual:hover .visual-frame-main {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(33, 29, 24, 0.18);
  }

  .editorial-visual:hover .visual-cover-stack img:nth-child(2) {
    transform: translateY(-1.35rem);
  }
}

.kicker,
.category {
  margin: 0 0 0.8rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

p {
  margin: 0 0 1rem;
}

.masthead p:not(.kicker),
.lede,
.page-hero p {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.masthead .editorial-mast-copy p:not(.kicker) {
  max-width: 46rem;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
}

.masthead .agency-bulletin p {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.cover-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(5.25rem, 1fr));
  align-items: end;
  gap: 0.8rem;
}

.book {
  position: relative;
  display: grid;
  gap: 0.7rem;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(33, 29, 24, 0.18);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(33, 29, 24, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.book:hover {
  color: var(--rust);
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(33, 29, 24, 0.2);
}

.book img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--panel);
}

.cover-wall .book {
  display: block;
  gap: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cover-wall .book:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.cover-wall .book:nth-child(2) {
  transform: translateY(-1.4rem);
}

.cover-wall .book:nth-child(2):hover {
  transform: translateY(-1.8rem);
}

.cover-wall .book img {
  border: 1px solid rgba(33, 29, 24, 0.18);
  box-shadow: 0 18px 34px rgba(33, 29, 24, 0.2);
}

.cover-wall .book span,
.cover-wall .book em {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.book span {
  padding: 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.05;
  background: var(--white);
}

.book em {
  margin-top: -0.35rem;
  padding: 0 0.8rem 0.85rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  background: var(--white);
}

.book-small span {
  font-size: 1rem;
}

.ticker {
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  background: var(--ink);
  color: var(--white);
}

.ticker-inner {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.05rem 0;
}

.ticker p {
  margin: 0;
  color: #d8c2a2;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.ticker-window {
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(30rem, 82vw), 1fr);
  align-items: stretch;
  gap: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ticker-track::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
  padding-right: clamp(1.1rem, 3vw, 2rem);
  color: #fffdf8;
  line-height: 1.25;
  text-decoration: none;
  scroll-snap-align: start;
}

.ticker-item + .ticker-item {
  padding-left: clamp(1.1rem, 3vw, 2rem);
  border-left: 1px solid rgba(255, 253, 248, 0.2);
}

.ticker-item span {
  flex: 0 0 auto;
  color: #d8c2a2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-item strong {
  font-weight: 500;
}

.ticker-item:hover strong {
  color: #d8c2a2;
}

.ticker-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ticker-controls button {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fffdf8;
  cursor: pointer;
  font: inherit;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ticker-controls button:hover,
.ticker-controls button:focus-visible {
  border-color: #d8c2a2;
  background: #d8c2a2;
  color: var(--ink);
}

.ticker-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.shelf-section,
.agents-teaser,
.related,
.agent-grid,
.client-grid,
.news-index,
.faq-list,
.portal-shell,
.article-page,
.prose-grid,
.sidebar-links,
.press-section,
.submission-notice,
.cta-band,
.client-profile,
.operational-strip,
.rights-note {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.shelf-section,
.agents-teaser,
.related,
.client-grid,
.news-index,
.faq-list,
.portal-shell,
.press-section,
.operational-strip,
.rights-note {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.operational-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(16rem, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.operational-strip article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.operational-strip article,
.prose-grid article,
.agent-card,
.client-grid article,
.fact-card,
.status-panel,
.portal-shell,
.submission-notice,
.cta-band {
  min-width: 0;
}

.operational-strip h2,
.rights-note h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.operational-strip figure {
  margin: 0;
}

.operational-strip img,
.rights-note img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.updated {
  color: var(--muted);
  font-size: 0.88rem !important;
}

.empty-state {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.rights-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.section-intro p {
  color: var(--muted);
}

.book-shelf,
.mini-shelf {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.book-shelf .book,
.mini-shelf .book {
  height: 100%;
}

.manifesto {
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--panel);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.text-link {
  color: var(--rust);
  font-weight: 700;
}

.agent-strip,
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.agent-grid {
  padding: 0 0 5rem;
}

.agent-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.agent-card h2 {
  margin-top: 0.5rem;
  font-size: 1.55rem;
}

.role {
  color: var(--muted);
  font-size: 0.9rem;
}

.portrait {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  background: var(--panel);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-open {
  color: var(--olive);
}

.status-paused {
  color: var(--gold);
}

.status-limited {
  color: #7a6a20;
}

.status-closed {
  color: var(--rust);
}

.submission-notice,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--ink);
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

.button.secondary {
  margin-left: 0.6rem;
  background: transparent;
  color: var(--ink);
}

.cta-band > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.cta-band > div:last-child .button.secondary {
  margin-left: 0;
}

.button.disabled,
.button:disabled {
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--line);
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) 1fr;
  gap: 3rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.footer-mark p:not(.kicker) {
  max-width: 28rem;
  color: #d8d0c2;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer-mark small {
  display: block;
  margin-top: 1.5rem;
  color: #a99e8e;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-directory h2 {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-directory a,
.socials a {
  display: block;
  margin: 0 0 0.55rem;
  color: #d8d0c2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.page-hero.narrow {
  max-width: 880px;
}

.page-hero h1 {
  max-width: 65rem;
}

.prose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.prose-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.prose-grid h2 {
  font-size: 1.8rem;
}

.sidebar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 0 5rem;
}

.team-stats,
.department-grid,
.full-roster,
.agent-filter-nav,
.agent-directory-section,
.availability-panel {
  width: min(1160px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.team-stats article {
  display: grid;
  align-content: center;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.team-stats strong {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  line-height: 0.95;
  overflow-wrap: normal;
}

.team-stats article:last-child strong {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.team-stats span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.department-grid,
.full-roster,
.agent-directory-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--line);
}

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

.department-grid .section-intro,
.full-roster .section-intro {
  grid-column: 1 / -1;
}

.department-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem;
  border-top: 2px solid var(--rust);
  background: rgba(255, 253, 248, 0.72);
}

.department-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.department-card p:not(.kicker),
.department-roster p {
  color: var(--muted);
}

.department-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.department-card li {
  display: grid;
  gap: 0.1rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(33, 29, 24, 0.12);
}

.department-card li span,
.department-roster strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.1;
}

.department-card li em,
.department-roster span {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.department-roster {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.department-roster h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.department-roster > div {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.75rem;
}

.department-roster a,
.department-roster > div > p {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.12);
  color: inherit;
  text-decoration: none;
}

.department-roster a:hover strong {
  color: var(--rust);
}

.agent-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1.2rem 0 0;
}

.agent-filter-nav a {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.agent-filter-nav a:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.availability-panel {
  margin: 2rem 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.availability-panel h2 {
  margin-top: 0;
}

.availability-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.availability-groups section {
  min-width: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.availability-groups h3 {
  margin: 0 0 0.7rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-groups ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.availability-groups li {
  display: grid;
  gap: 0.2rem;
}

.availability-groups a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.availability-groups span {
  color: var(--muted);
  font-size: 0.88rem;
}

.press-hero p {
  max-width: 52rem;
}

.press-section {
  border-bottom: 1px solid var(--line);
}

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

.recognition-card {
  min-width: 0;
  padding: 1rem;
  border-top: 2px solid var(--rust);
  background: rgba(255, 253, 248, 0.68);
}

.recognition-card h3,
.timeline-item h3,
.distinction-item h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.08;
}

.recognition-card .category {
  margin-bottom: 1rem;
}

.recognition-card p,
.timeline-item p,
.distinction-item p {
  color: var(--muted);
}

.recognition-card strong {
  color: var(--ink);
  font-weight: 600;
}

.timeline-list,
.distinction-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(8rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time,
.distinction-item span {
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distinction-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(232, 225, 214, 0.34) 100%);
}

.distinction-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.42fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.distinction-item > p {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.2;
}

.distinction-item span {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--sans);
}

.fine-print {
  margin-top: -0.35rem;
  font-size: 0.86rem;
}

.milestone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: milestones;
  list-style: none;
}

.milestone-list li {
  position: relative;
  min-width: 0;
  padding: 1.1rem 1.25rem 1.1rem 3.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  counter-increment: milestones;
}

.milestone-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.milestone-list li::before {
  position: absolute;
  left: 0.9rem;
  top: 1.05rem;
  color: var(--rust);
  content: counter(milestones, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.press-cta {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.profile-aside {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.fact-card {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.fact-card h2 {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.fact-card p {
  display: grid;
  gap: 0.2rem;
}

.fact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact-card a {
  display: block;
  width: fit-content;
  margin-top: 0.6rem;
  color: var(--ink);
  line-height: 1.25;
  text-decoration-color: rgba(33, 29, 24, 0.42);
  text-underline-offset: 0.18em;
}

.fact-card a + a {
  margin-top: 0.45rem;
}

.fact-card a:hover {
  color: var(--rust);
  text-decoration-color: currentColor;
}

.profile-main {
  max-width: 760px;
}

.profile-main h1 {
  margin-bottom: 0.5rem;
}

.profile-main h2 {
  margin-top: 2.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 2rem;
}

.profile-main li {
  margin: 0.45rem 0;
}

.guidelines {
  display: grid;
  grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.status-panel {
  align-self: start;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.status-panel h1 {
  max-width: 100%;
  overflow-wrap: normal;
  font-size: clamp(2.45rem, 4.2vw, 3.35rem);
  line-height: 1.04;
}

.status-panel p {
  color: #d8d0c2;
}

.guideline-copy h2 {
  margin-top: 2rem;
  font-size: 2rem;
}

.seeking-list li {
  margin: 0 0 0.85rem;
}

.ack-box,
.query-form,
.contact-form,
.status-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.ack-box label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.45;
}

.ack-box label span {
  display: block;
  min-width: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
  outline: 2px solid rgba(10, 111, 114, 0.18);
  outline-offset: 0;
}

input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  background: var(--panel);
  color: var(--muted);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

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

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.check input,
.ack-box input {
  flex: 0 0 auto;
  width: auto;
  min-height: auto;
  margin-top: 0.25rem;
}

.hp {
  position: absolute;
  left: -10000px;
}

.form-lock,
.captcha,
.form-errors,
.success,
.form-note {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  line-height: 1.45;
}

.form-lock.ok,
.success {
  border-color: var(--olive);
  background: #eef2e8;
}

.form-errors {
  color: var(--rust);
}

.form-errors:empty {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-note strong {
  color: var(--ink);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.news-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.news-row:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(33, 29, 24, 0.1);
}

.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.news-row h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.news-row time,
.article-page time {
  color: var(--muted);
}

.article-page {
  max-width: 820px;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}

.news-platform,
.deals-section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.news-platform {
  display: grid;
  gap: 1rem;
}

.news-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.news-rail a {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1rem;
  background: #211d18;
  color: var(--white);
}

.lead-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.lead-story > div {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.lead-story h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

.lead-story a {
  color: inherit;
}

.lead-story .category,
.lead-story time {
  color: #d8c2a2;
}

.secondary-stories,
.archive-grid,
.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archive-grid {
  padding-top: 1rem;
}

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

.article-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.article-page p:not(.lede) {
  font-size: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag-row a {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  text-decoration: none;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  align-items: stretch;
}

.catalogue-controls,
.client-catalogue-block,
.catalogue-stats {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.catalogue-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.catalogue-stats article {
  display: grid;
  align-content: center;
  min-height: 6.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.catalogue-stats strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.catalogue-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1.2rem 0 0;
}

.catalogue-controls a {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.catalogue-controls a:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.client-catalogue-block {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
}

.client-cover {
  display: block;
  width: min(72%, 14rem);
  margin: 1rem auto 0;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(33, 29, 24, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.client-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(33, 29, 24, 0.18);
}

.client-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(33, 29, 24, 0.18);
  background: var(--panel);
}

.client-card-copy {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem;
}

.client-card-copy .category {
  margin-bottom: 0.2rem;
}

.client-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.client-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.2;
}

.client-title span {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.client-card-copy p:not(.category):not(.client-title) {
  color: var(--muted);
  font-size: 0.96rem;
}

.rights-focus {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(33, 29, 24, 0.12);
  font-size: 0.86rem !important;
}

.year-shelf {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.category-shelf {
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.year-shelf h3,
.category-shelf h3 {
  margin: 0;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.year-shelf > div,
.category-shelf > div,
.roster-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.year-shelf a,
.category-shelf a,
.roster-list a {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.12);
  color: inherit;
  text-decoration: none;
}

.year-shelf span,
.category-shelf span,
.roster-list strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.15;
}

.year-shelf em,
.category-shelf em,
.roster-list span,
.roster-list em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.client-card-copy .text-link {
  align-self: end;
  margin-top: 0.35rem;
}

.client-profile {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.client-profile-cover {
  max-width: 18rem;
}

.client-profile-cover .book {
  box-shadow: 0 22px 44px rgba(33, 29, 24, 0.16);
}

.status-key {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .primary-nav,
  .ticker,
  .section-intro,
  .split,
  .site-footer,
  .profile-layout,
  .guidelines,
  .client-profile,
  .operational-strip,
  .rights-note,
  .timeline-item,
  .distinction-item {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .primary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .nav-menu {
    left: 0;
    right: auto;
  }

  .masthead {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "notice";
    min-height: auto;
  }

  .masthead::before {
    display: none;
  }

  .editorial-mast-copy {
    align-self: auto;
  }

  .editorial-mast-copy h1 {
    max-width: 15ch;
  }

  .editorial-visual {
    min-height: clamp(28rem, 76vw, 40rem);
  }

  .agency-bulletin {
    max-width: none;
  }

  .cover-wall,
  .book-shelf,
  .mini-shelf,
  .agent-strip,
  .agent-grid,
  .team-stats,
  .catalogue-stats,
  .department-grid,
  .department-roster > div,
  .availability-groups,
  .prose-grid,
  .recognition-grid,
  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .milestone-list {
    grid-template-columns: 1fr;
  }

  .milestone-list li:nth-child(odd) {
    border-right: 0;
  }

  .distinction-item > p {
    padding-left: 0;
    border-left: 0;
  }

  .department-roster {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-grid,
  .year-shelf > div,
  .category-shelf > div,
  .roster-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cover-wall {
    grid-template-columns: repeat(3, minmax(4rem, 1fr));
  }

  .ticker-inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 0 1.05rem;
  }

  .ticker-window {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .ticker-controls {
    justify-self: end;
  }

  .ticker-track {
    width: 100%;
    padding-bottom: 0.05rem;
    grid-auto-columns: minmax(82vw, 1fr);
  }

  .ticker-item {
    white-space: normal;
  }

  .lead-story,
  .secondary-stories,
  .archive-grid,
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .profile-aside {
    position: static;
  }

  .profile-aside .portrait {
    order: 2;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.65rem;
  }

  .masthead,
  .page-hero {
    padding-top: 2.5rem;
  }

  .masthead {
    gap: 1.6rem;
    padding-bottom: 1.4rem;
  }

  .editorial-mast-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-text-links {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .editorial-visual {
    min-height: 31rem;
  }

  .visual-frame-main {
    inset: 5% 0 20% 8%;
  }

  .visual-frame-shelf {
    inset: 0 38% 61% 0;
  }

  .visual-cover-stack {
    right: 0;
    bottom: 2%;
    left: 22%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .editorial-visual figcaption {
    right: 0;
    top: 4%;
  }

  .hero-metadata {
    left: 0;
    top: 1rem;
    bottom: auto;
    max-width: 13rem;
  }

  .cover-wall,
  .book-shelf,
  .mini-shelf,
  .agent-strip,
  .agent-grid,
  .team-stats,
  .catalogue-stats,
  .department-grid,
  .department-roster > div,
  .availability-groups,
  .prose-grid,
  .recognition-grid,
  .footer-directory,
  .two {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .compact-grid,
  .year-shelf,
  .category-shelf,
  .category-shelf > div,
  .year-shelf > div,
  .roster-list {
    grid-template-columns: 1fr;
  }

  .client-card {
    grid-template-columns: minmax(5.75rem, 7.5rem) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    padding: 1rem 0;
  }

  .client-cover {
    width: 100%;
    margin: 0;
    align-self: start;
  }

  .client-card-copy {
    padding: 0;
  }

  .cover-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .book {
    min-height: 0;
  }

  .submission-notice,
  .cta-band {
    display: grid;
  }

  .cta-band > div:last-child {
    justify-content: start;
  }

  .button {
    width: fit-content;
    max-width: 100%;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
