/* ==========================================================================
   THE GROOVE ALMANAC — museum-walkthrough editorial design system
   Palette (locked by build spec): navy #1B263B / gold #C9A227 / cream #F4F1EA / slate #778DA9
   Type: Archivo Black (display) + Spectral (text)
   ========================================================================== */

:root {
  --navy: #1B263B;
  --navy-deep: #131C2E;
  --gold: #C9A227;
  --gold-soft: #D9B94F;
  --cream: #F4F1EA;
  --cream-warm: #EFEAE0;
  --slate: #778DA9;
  --ink: #1B263B;
  --ink-soft: #44566E;      /* secondary text on cream — AA contrast */
  --line: rgba(27, 38, 59, 0.14);
  --card: #FFFFFF;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-text: "Spectral", Georgia, serif;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --measure: 68ch;
  --radius: 4px;
  --shadow-lift: 0 14px 34px -14px rgba(19, 28, 46, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.15rem;              /* ≥18px body for 45+ readability */
  line-height: 1.65;
  font-kerning: normal;
}

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

a { color: var(--ink); text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- accessibility ---------- */

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--cream);
  padding: 0.75rem 1.25rem; z-index: 200; font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- type scale ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;                 /* Archivo Black is a single 400 weight */
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: 0.01em; }

p { margin: 0 0 1.35em; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 0.55rem; height: 0.55rem;
  background: var(--gold);
  display: inline-block;
}

.lede {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- layout shells ---------- */

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.wrap--narrow { max-width: 960px; }

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

/* ---------- header / nav ---------- */

.site-header {
  background: var(--navy);
  color: var(--cream);
  border-bottom: 4px solid var(--gold);
  position: relative;
  z-index: 50;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.brand:hover { color: var(--gold-soft); }
.brand__disc {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--gold) 0 18%, var(--navy) 19% 30%,
      var(--cream) 31% 34%, var(--navy) 35% 55%, var(--cream) 56% 58%,
      var(--navy) 59% 100%);
  flex: none;
}

.site-nav ul {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.15rem;
  border-bottom: 3px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-soft); border-bottom-color: var(--gold); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--gold-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: var(--radius);
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .site-header__bar { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 0.5rem 0 1rem; }
  .site-nav a { display: block; padding: 0.75rem 0.15rem; font-size: 0.9rem; }
}

/* ---------- oversized typographic hero ---------- */

.hero {
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.05), rgba(0, 0, 0, 0) 40%),
    var(--navy);
  color: var(--cream);
  padding: clamp(4rem, 10vw, 8.5rem) 0 clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  position: relative;
}
.hero::after {                       /* faint oversized groove rings, pure CSS ornament */
  content: "";
  position: absolute;
  right: -18vw; top: -22vw;
  width: 58vw; height: 58vw;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 234, 0.10);
  box-shadow:
    0 0 0 3.5vw rgba(244, 241, 234, 0.035),
    0 0 0 7vw rgba(244, 241, 234, 0.05),
    0 0 0 10.5vw rgba(244, 241, 234, 0.03),
    0 0 0 14vw rgba(244, 241, 234, 0.045);
  pointer-events: none;
}

.hero__kicker {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  margin-bottom: var(--space-3);
}

.hero__title {
  font-size: clamp(2.9rem, 9.5vw, 8.7rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  max-width: 14ch;
  position: relative;
  z-index: 1;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__standfirst {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  color: #C7D0DE;
  max-width: 52ch;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.hero__years {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  letter-spacing: 0.22em;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: var(--space-4);
}
.hero__years span { color: var(--gold); }

.hero__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: var(--radius);
  transition: background 180ms ease, transform 180ms ease;
  cursor: pointer;
}
.hero__cta:hover { background: var(--gold-soft); color: var(--navy); transform: translateY(-2px); }

/* ---------- gallery plaque headers ---------- */

.plaque { margin-bottom: var(--space-4); }
.plaque__roman {
  font-family: var(--font-display);
  color: var(--slate);
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.plaque h2 { margin-bottom: 0.75rem; }
.plaque__rule {
  width: 5.5rem; height: 5px;
  background: var(--gold);
  border: 0; margin: 0;
}
.plaque--center { text-align: center; }
.plaque--center .plaque__rule { margin: 0 auto; }

/* ---------- decade selector (signature feature) ---------- */

.decade-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: var(--space-3) 0 var(--space-4);
}
.decade-btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  min-height: 44px;
}
.decade-btn:hover { border-color: var(--gold); color: var(--gold); }
.decade-btn[aria-pressed="true"] {
  background: var(--navy);
  color: var(--cream);
  box-shadow: inset 0 -4px 0 var(--gold);
}
.decade-count {
  font-family: var(--font-text);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  margin: -1.4rem 0 var(--space-3);
}

/* ---------- exhibit card grid ---------- */

.exhibit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4) var(--space-3);
}
@media (max-width: 1024px) { .exhibit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .exhibit-grid { grid-template-columns: 1fr; } }

.exhibit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.exhibit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.exhibit-card.is-hidden { display: none; }

.exhibit-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
}
.exhibit-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.exhibit-card:hover .exhibit-card__media img { transform: scale(1.045); }

.era-chip {
  position: absolute;
  left: 0.9rem; top: 0.9rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.exhibit-card__body { padding: var(--space-3); display: flex; flex-direction: column; flex: 1; }
.exhibit-card__no {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.exhibit-card h3 { margin-bottom: 0.7rem; }
.exhibit-card h3 a { text-decoration: none; }
.exhibit-card h3 a:hover { color: var(--gold); }
.exhibit-card p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 1.1rem; }
.exhibit-card__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: none;
}
.exhibit-card__link::after { content: " \2192"; color: var(--gold); }
.exhibit-card__link:hover { color: var(--gold); }

/* ---------- full-bleed artifact panorama ---------- */

.panorama { margin: 0; background: var(--navy-deep); }
.panorama img { width: 100%; max-height: 460px; object-fit: cover; }
.panorama figcaption {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem) 1.4rem;
  color: var(--slate);
  font-size: 0.95rem;
  font-style: italic;
}
.panorama figcaption strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  display: block;
  margin-bottom: 0.2rem;
}
.panorama a { color: var(--slate); }

/* ---------- stat strip (listening room by the numbers) ---------- */

.stats { background: var(--navy); color: var(--cream); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats__grid { grid-template-columns: 1fr; } }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label { color: #C7D0DE; font-size: 1.02rem; font-style: italic; }
.stats__source { color: var(--slate); font-size: 0.9rem; margin-top: var(--space-4); font-style: italic; }
.stats__source a { color: var(--slate); }

/* ---------- spotlight ---------- */

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 860px) { .spotlight { grid-template-columns: 1fr; gap: var(--space-4); } }
.spotlight__media img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.spotlight__media figcaption { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; padding-top: 0.6rem; }

/* ---------- ad slots (placeholders, clearly labeled) ---------- */

.ad-slot {
  margin: var(--space-5) auto;
  text-align: center;
}
.ad-slot__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.ad-slot__frame {
  margin: 0 auto;
  border: 1px dashed rgba(27, 38, 59, 0.3);
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-style: italic;
  max-width: 100%;
}
.ad-slot--leaderboard .ad-slot__frame { width: 728px; height: 90px; }
.ad-slot--rect .ad-slot__frame { width: 336px; height: 280px; }
.ad-slot--rect-sm .ad-slot__frame { width: 300px; height: 250px; }
.ad-slot--half .ad-slot__frame { width: 300px; height: 600px; }
.ad-slot--dark .ad-slot__label { color: var(--slate); }
.ad-slot--dark .ad-slot__frame { background: rgba(244,241,234,0.05); border-color: rgba(244,241,234,0.25); color: var(--slate); }

/* ---------- article pages ---------- */

.article-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-5) 0 var(--space-5);
  border-bottom: 4px solid var(--gold);
}
.article-hero .eyebrow { color: var(--gold); }
.article-hero h1 { max-width: 20ch; }
.article-hero__meta {
  color: var(--slate);
  font-style: italic;
  font-size: 1rem;
}
.article-hero__meta b { color: var(--gold-soft); font-weight: 600; }

.breadcrumbs {
  font-size: 0.9rem;
  padding: 1rem 0 0;
  color: var(--slate);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.45rem; color: var(--slate); }
.breadcrumbs a { color: #C7D0DE; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-soft); }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-5);
  padding: var(--space-5) 0 var(--space-6);
}
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } }

.article-body { max-width: var(--measure); }
.article-body h2 { margin-top: var(--space-5); font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body figure { margin: var(--space-4) 0; }
.article-body figcaption, .figure-credit {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  padding-top: 0.55rem;
  line-height: 1.5;
}
.article-body img { border: 1px solid var(--line); border-radius: var(--radius); }
.article-body blockquote {
  margin: var(--space-4) 0;
  padding: 0.35rem 0 0.35rem var(--space-3);
  border-left: 5px solid var(--gold);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-soft);
}
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 0 0 1.35em; }
.article-body li { margin-bottom: 0.5em; }

.sidebar { display: flex; flex-direction: column; gap: var(--space-4); }
.sidebar .ad-slot { margin: 0; }
.sidebar-box {
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  background: var(--card);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.sidebar-box h2 {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-2);
}
.sidebar-box ul { list-style: none; margin: 0; padding: 0; }
.sidebar-box li { border-bottom: 1px solid var(--line); }
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box a {
  display: block;
  padding: 0.8rem 0;
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.4;
}
.sidebar-box a:hover { color: var(--gold); }
.sidebar-box .era-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* prev / next exhibit walk */
.exhibit-walk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  margin-top: var(--space-5);
}
@media (max-width: 640px) { .exhibit-walk { grid-template-columns: 1fr; } }
.exhibit-walk a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.exhibit-walk a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); color: var(--ink); }
.exhibit-walk .walk-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.exhibit-walk .walk-title { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; line-height: 1.3; }
.exhibit-walk a.walk-next { text-align: right; }

/* ---------- static pages / forms ---------- */

.page-body { max-width: var(--measure); padding: var(--space-5) 0 var(--space-6); }
.page-body h2 { margin-top: var(--space-4); }

.contact-form { display: grid; gap: var(--space-3); max-width: 560px; }
.contact-form label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.45rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid var(--gold); outline-offset: 1px; }
.btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease;
  min-height: 48px;
}
.btn:hover { background: var(--navy-deep); box-shadow: inset 0 -4px 0 var(--gold); }
.form-note { font-size: 0.95rem; color: var(--ink-soft); font-style: italic; }
.form-success {
  border: 2px solid var(--gold);
  background: #FCF7E8;
  padding: var(--space-3);
  border-radius: var(--radius);
}

/* ---------- 404 ---------- */

.notfound {
  text-align: center;
  padding: var(--space-6) 0;
}
.notfound .display { font-size: clamp(4rem, 16vw, 11rem); color: var(--navy); line-height: 1; }
.notfound .display em { color: var(--gold); font-style: normal; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: #C7D0DE;
  border-top: 4px solid var(--gold);
  padding: var(--space-5) 0 var(--space-4);
  font-size: 1rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h2 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: #C7D0DE; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); text-decoration: underline; text-decoration-color: var(--gold); }
.site-footer__legal {
  border-top: 1px solid rgba(199, 208, 222, 0.18);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ---------- utility ---------- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
