/*
Theme Name:  JC Law
Theme URI:   https://joecunninghamlaw.com
Author:      Rivers Pearce
Description: Custom theme for Joe Cunningham Law. Editorial navy/gold design system. All page content delivered via Gutenberg Custom HTML blocks — this stylesheet is the global design system only.
Version:     1.0.0
License:     Private
Text Domain: jclaw
*/

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Brand palette (locked) */
  --ink:        #0E1822;
  --ink-2:      #1A2633;
  --ink-3:      #2A3947;
  --paper:      #F7F3EC;
  --paper-2:    #EFE8DB;
  --paper-3:    #E4DAC6;
  --rule:       #D9CFBA;
  --rule-ink:   rgba(247,243,236,0.14);
  --mute:       #6B7480;
  --mute-warm:  #8A7E66;
  --gold:       #B08437;
  --gold-deep:  #8E6826;
  --gold-soft:  #D9BF85;
  --gold-tint:  rgba(176,132,55,0.10);
  --slate:      #333E51;

  /* Typography */
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale */
  --fs-eyebrow: 11px;
  --fs-micro:   12px;
  --fs-small:   14px;
  --fs-body:    16px;
  --fs-lead:    19px;
  --fs-h5:      22px;
  --fs-h4:      28px;
  --fs-h3:      36px;
  --fs-h2:      48px;
  --fs-h1:      68px;
  --fs-display: 92px;

  /* Space scale */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Layout */
  --container:        1280px;
  --container-narrow: 920px;
  --container-wide:   1480px;

  /* Misc */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --t:         240ms;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 500; }
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.serif         { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic  { font-family: var(--serif); font-style: italic; font-weight: 400; }
.sans          { font-family: var(--sans); }
.italic-accent { font-style: italic; font-family: var(--serif); font-weight: 400; }

.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-family: var(--sans);
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--paper { color: var(--paper-2); }
.eyebrow--center { text-align: center; }

.text-ink   { color: var(--ink); }
.text-gold  { color: var(--gold); }
.text-mute  { color: var(--mute); }
.text-paper { color: var(--paper); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 13px var(--s-5);
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-2); border-color: var(--ink-2); }

.btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-tint); }

.btn--gold-filled {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold-filled:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247,243,236,0.3);
}
.btn--ghost:hover { border-color: var(--paper); }

.btn--ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost-ink:hover { border-color: var(--ink); }

.btn--sm { padding: 9px 16px; font-size: 12px; }
.btn--lg { padding: 16px 32px; font-size: 15px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,243,236,0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }

/* Dark nav variant — add .site-header--ink via body class or page template */
.site-header--ink {
  background: rgba(14,24,34,0.85);
  color: var(--paper);
}
.site-header--ink.is-scrolled { border-bottom-color: var(--rule-ink); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--s-6);
  max-width: var(--container-wide);
  margin: 0 auto;
}

/* Logo */
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav__brand-logo {
  display: block;
  height: 32px;
  width: auto;
}
.site-header     .nav__brand-logo--light { display: none; }
.site-header     .nav__brand-logo--dark  { display: block; }
.site-header--ink .nav__brand-logo--light { display: block; }
.site-header--ink .nav__brand-logo--dark  { display: none; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  font-size: var(--fs-small);
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color var(--t) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Phone CTA */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--gold);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t) var(--ease);
  flex-shrink: 0;
}
.site-header--ink .nav__phone { color: var(--paper); }
.nav__phone:hover { background: var(--gold-tint); }

.nav__phone-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--gold-tint);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
.nav__phone-stack { display: flex; flex-direction: column; }
.nav__phone-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.site-header--ink .nav__phone-label { color: var(--paper-3); }
.nav__phone-num {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* Mobile hamburger button */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: var(--s-5) var(--s-6);
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  display: block;
  padding: 12px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.nav__drawer a:last-of-type { border-bottom: none; }
.nav__drawer .nav__drawer-phone {
  margin-top: var(--s-4);
  padding: 14px var(--s-5);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper-2);
  border-top: 1px solid var(--rule-ink);
  padding: var(--s-9) 0 var(--s-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}

.footer__brand { line-height: 1; }
.footer__brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

.footer__about {
  margin-top: var(--s-4);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-3);
}

.footer__social {
  margin-top: var(--s-5);
  display: flex;
  gap: var(--s-3);
}
.footer__social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 248, 246, 0.18);
  border-radius: 50%;
  color: var(--paper-2);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.footer__col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 10px; font-size: 14px; list-style: none; padding: 0; margin: 0; }
.footer__col a {
  color: var(--paper-2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease);
}
.footer__col a:hover { border-bottom-color: var(--gold); }

.footer__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-6);
  border-top: 1px solid var(--rule-ink);
  font-size: 12px;
  color: var(--paper-3);
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer__foot a {
  color: var(--paper-3);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease);
}
.footer__foot a:hover { border-bottom-color: var(--paper-3); }
.footer__foot-links { display: flex; gap: var(--s-5); }

.footer__disc {
  font-size: 11px;
  color: var(--paper-3);
  max-width: 80ch;
  line-height: 1.6;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--rule-ink);
  opacity: 0.8;
}

/* ================================================================
   SITE LAYOUT
   ================================================================ */
.site-main {
  min-height: 60vh;
}

/* Admin bar offset for sticky nav */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-tint); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .nav__links,
  .nav__phone-label { display: none; }

  .nav__toggle { display: flex; }
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
}

@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__foot {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ================================================================
   BLOG — single.php & archive.php
   ================================================================ */

/* ── Archive header ─────────────────────────────────────────── */
.archive-header {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 72px;
  text-align: center;
}

.archive-header__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.archive-header__title {
  font-size: clamp(36px, 5vw, var(--fs-h2));
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 12px 0 20px;
}

.archive-header__desc {
  font-size: var(--fs-lead);
  color: var(--paper-2);
  line-height: 1.6;
  margin: 0;
}

/* ── Archive grid ───────────────────────────────────────────── */
.archive-grid-section {
  padding: 72px 0 96px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .archive-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Post card ──────────────────────────────────────────────── */
.post-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  box-shadow: 0 8px 32px rgba(14,24,34,0.10);
  transform: translateY(-2px);
}

.post-card__image-link {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-2);
}

.post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card__image {
  transform: scale(1.03);
}

.post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__cat {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 10px;
}

.post-card__cat:hover { color: var(--gold-deep); }

.post-card__title {
  font-size: var(--fs-h5);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 12px;
}

.post-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.post-card__title a:hover { color: var(--gold-deep); }

.post-card__excerpt {
  font-size: var(--fs-small);
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.post-card__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  color: var(--slate);
  border-top: 1px solid var(--paper-2);
  padding-top: 16px;
  margin-top: auto;
}

.post-card__date { flex: 1; }

.post-card__read {
  background: var(--paper-2);
  padding: 2px 8px;
  border-radius: 2px;
}

.post-card__arrow {
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.post-card__arrow:hover { transform: translateX(3px); }

/* ── Archive pagination ─────────────────────────────────────── */
.archive-pagination { text-align: center; }

.archive-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--paper-3);
  border-radius: 2px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.archive-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

/* ── Archive empty state ────────────────────────────────────── */
.archive-empty {
  text-align: center;
  padding: 64px 0;
}

.archive-empty p { font-size: var(--fs-lead); margin-bottom: 24px; }


/* ── Single post header ─────────────────────────────────────── */
.post-single__header {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 64px;
}

.post-single__header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.post-single__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-micro);
  color: var(--paper-2);
  margin-bottom: 20px;
}

.post-single__breadcrumb a {
  color: var(--paper-2);
  text-decoration: none;
}

.post-single__breadcrumb a:hover { color: var(--paper); }

.post-single__breadcrumb span[aria-current] {
  color: var(--paper-3);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
}

.post-single__cat-wrap { margin-bottom: 16px; }

.post-single__cat {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
}

.post-single__cat:hover { color: var(--gold); }

.post-single__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 24px;
}

.post-single__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--paper-2);
}

.post-single__meta-divider { color: var(--paper-3); }

/* ── Single featured image ──────────────────────────────────── */
.post-single__image {
  background: var(--ink-2);
  max-height: 520px;
  overflow: hidden;
}

.post-single__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}

/* ── Single body ────────────────────────────────────────────── */
.post-single__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--s-5) 80px;
}

/* Prose typography for the_content() output */
.prose { font-size: var(--fs-lead); line-height: 1.7; color: var(--slate); }

.prose h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2em 0 0.6em;
  line-height: 1.25;
}

.prose h3 {
  font-size: var(--fs-h5);
  font-weight: 500;
  color: var(--ink);
  margin: 1.8em 0 0.5em;
}

.prose p { margin: 0 0 1.4em; }

.prose ul,
.prose ol {
  margin: 0 0 1.4em;
  padding-left: 1.5em;
}

.prose li { margin-bottom: 0.5em; }

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

.prose a { color: var(--gold-deep); text-decoration: underline; }
.prose a:hover { color: var(--ink); }

.prose blockquote {
  border-left: 3px solid var(--gold);
  margin: 2em 0;
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1em;
  color: var(--ink);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--paper-3);
  margin: 2.5em 0;
}

/* ── Tags ───────────────────────────────────────────────────── */
.post-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--paper-3);
}

.post-single__tag {
  font-size: var(--fs-micro);
  font-weight: 500;
  color: var(--slate);
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: 2px;
  padding: 4px 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.post-single__tag:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ── Attorney disclaimer ────────────────────────────────────── */
.post-single__disc {
  font-size: var(--fs-micro);
  color: var(--slate);
  line-height: 1.6;
  border-top: 1px solid var(--paper-3);
  padding-top: 20px;
  margin-top: 32px;
  font-style: italic;
}

/* ── Post CTA strip ─────────────────────────────────────────── */
.post-cta {
  background: var(--ink-2);
  color: var(--paper);
  padding: 80px var(--s-5);
  text-align: center;
}

.post-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.post-cta__heading {
  font-size: clamp(28px, 4vw, var(--fs-h3));
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 12px 0 16px;
}

.post-cta__sub {
  font-size: var(--fs-lead);
  color: var(--paper-2);
  line-height: 1.6;
  margin: 0 0 36px;
}

.post-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 480px) {
  .post-cta__actions { flex-direction: column; align-items: center; }
  .post-cta__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
