/* =========================================================
   FLOCKIT.INFO
   MASTER STYLESHEET

   Shared by every page on Flockit.info.
   Make site-wide design changes here whenever possible.
   ========================================================= */


/* ---------- SITE VARIABLES ---------- */

:root {
  --black: #0b0d0f;
  --dark: #15181c;
  --dark-gray: #252a30;
  --gray: #66707a;
  --light-gray: #e7e9ec;
  --off-white: #f7f7f5;
  --white: #ffffff;
  --red: #c61f2b;

  --content-width: 1180px;
  --reading-width: 780px;
}


/* ---------- RESET ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}


/* ---------- SHARED PAGE WIDTH ---------- */

.content-width {
  width: min(90%, var(--content-width));
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  width: min(94%, var(--content-width));
  min-height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo span {
  color: var(--red);
}


/* ---------- MAIN NAVIGATION ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-nav a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--red);
}


/* =========================================================
   STANDARD PAGE HERO
   ========================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 75px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  width: 760px;
  height: 520px;
  transform: translateY(-50%);
  background-image: url("eye-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.28;
  pointer-events: none;
}

.page-hero .content-width {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;

  color: var(--black);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-intro {
  max-width: var(--reading-width);
  margin: 0;

  color: var(--dark-gray);
  font-size: 1.2rem;
  line-height: 1.65;
}


/* =========================================================
   STANDARD CONTENT
   ========================================================= */

.content-section {
  padding: 80px 0;
}

.content-section:nth-of-type(even) {
  background: var(--off-white);
}

.content-section h2 {
  max-width: 850px;
  margin: 0 0 24px;

  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.content-section h3 {
  margin-top: 35px;
  font-size: 1.35rem;
}

.content-section p {
  max-width: var(--reading-width);
  margin-top: 0;
  margin-bottom: 22px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;
  padding: 13px 20px;

  background: var(--black);
  color: var(--white);

  border: 2px solid var(--black);
  border-radius: 4px;

  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: var(--red);
  border-color: var(--red);
}

.button-outline {
  background: transparent;
  color: var(--black);
}

.button-outline:hover,
.button-outline:focus {
  color: var(--white);
}


/* =========================================================
   CARDS
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--black);
}

.card h3 {
  margin: 0 0 12px;
}

.card p {
  margin-bottom: 0;
}


/* =========================================================
   CALLOUT / IMPORTANT INFORMATION
   ========================================================= */

.callout {
  max-width: 900px;
  margin: 40px 0;
  padding: 30px;

  background: var(--black);
  color: var(--white);

  border-left: 6px solid var(--red);
}

.callout h2,
.callout h3 {
  margin-top: 0;
  color: var(--white);
}

.callout p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 55px 0 35px;
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  width: min(90%, var(--content-width));
  margin: 0 auto;
}

.footer-brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 5px 0 25px;
  color: #b7bdc4;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 22px 0;

  border-top: 1px solid #343a40;
  border-bottom: 1px solid #343a40;
}

.footer-nav a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--red);
}

.footer-legal {
  margin: 25px 0 0;
  color: #929aa2;
  font-size: 0.8rem;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .header-inner {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .page-hero {
    padding: 65px 0 55px;
  }

  .content-section {
    padding: 60px 0;
  }

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


@media (max-width: 600px) {

  body {
    font-size: 16px;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .callout {
    padding: 24px;
  }
}
.community-request-form {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-top: 2rem;
}

.community-request-form label {
  font-weight: 700;
}

.community-request-form input,
.community-request-form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #cfcfcf;
  font: inherit;
  background: #fff;
}

.community-request-form textarea {
  resize: vertical;
}

.community-request-form .button {
  width: fit-content;
  margin-top: 0.5rem;
  border: 0;
  cursor: pointer;
}

.form-note {
  max-width: 760px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
/* =========================================================
   SUPPORT THE WORK
   ========================================================= */

.support-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 2px solid var(--black);
  border-left: 6px solid var(--red);
  background: var(--white);
}

.support-cta h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.support-cta p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   COMMUNITY PROFILE — AT A GLANCE
   ========================================================= */

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 3.5rem;
  background: var(--black);
  border: 2px solid var(--black);
}

.profile-facts h2 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem 2rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
}

.profile-fact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 2rem;
  background: var(--white);
}

.fact-label {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-fact strong {
  font-size: 1.1rem;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts h2 {
    padding: 1.25rem 1.5rem;
  }

  .profile-fact {
    padding: 1.25rem 1.5rem;
  }
}
.profile-verified {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 2rem 1.25rem;
  background: var(--black);
  color: #b8bec5;
  font-size: 0.85rem;
}
/* =========================================================
   COMMUNITY PROFILE — VEHICLE FINGERPRINT
   ========================================================= */

.vehicle-fingerprint {
  margin: 3.5rem 0;
  padding: 2.5rem;
  background: var(--black);
  color: var(--white);
}

.vehicle-fingerprint .eyebrow {
  margin-top: 0;
  color: var(--red);
}

.vehicle-fingerprint h2 {
  margin: 0.5rem 0 1rem;
  color: var(--white);
  font-size: 2.5rem;
}

.vehicle-fingerprint-intro {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

.fingerprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2rem 0;
  background: #444;
  border: 1px solid #444;
}

.fingerprint-grid span {
  padding: 1rem 1.25rem;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.vehicle-fingerprint-note {
  max-width: 900px;
  margin: 2rem 0 0;
}

@media (max-width: 768px) {
  .vehicle-fingerprint {
    padding: 1.5rem;
  }

  .vehicle-fingerprint h2 {
    font-size: 2rem;
  }

  .fingerprint-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   COMMUNITY PROFILE — DATA SHARING
   ========================================================= */

.sharing-section {
  margin: 3.5rem 0;
}

.sharing-section h2 {
  margin: 0.5rem 0 1.75rem;
  font-size: 2.5rem;
}

.sharing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 2px solid var(--black);
}

.sharing-card {
  padding: 2rem;
  background: var(--white);
}

.sharing-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sharing-card p {
  margin: 0;
}
.technology-section + .technology-section {
  margin-top: 4rem;
}
.sharing-question {
  margin-top: 1px;
  padding: 2rem;
  background: var(--black);
  color: var(--white);
}

.sharing-question p {
  max-width: 900px;
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .sharing-section h2 {
    font-size: 2rem;
  }

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

  .sharing-card,
  .sharing-question {
    padding: 1.5rem;
  }
}
/* =========================================================
   COMMUNITY PROFILE — CONTRACT RENEWAL
   ========================================================= */

.renewal-section {
  margin: 3.5rem 0;
}

.renewal-section h2 {
  margin: 0.5rem 0 1.75rem;
  font-size: 2.5rem;
}

.renewal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 1.75rem;
  background: var(--black);
  border: 2px solid var(--black);
}

.renewal-facts > div {
  padding: 1.5rem 2rem;
  background: var(--white);
}

.renewal-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.renewal-facts strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .renewal-section h2 {
    font-size: 2rem;
  }

  .renewal-facts {
    grid-template-columns: 1fr;
  }

  .renewal-facts > div {
    padding: 1.25rem 1.5rem;
  }
}
/* =========================================================
   COMMUNITY PROFILE — PROPOSED EXPANSION
   ========================================================= */

.expansion-section {
  margin: 3.5rem 0;
}

.expansion-section h2 {
  margin: 0.5rem 0 1rem;
  font-size: 2.5rem;
}

.expansion-intro {
  max-width: 850px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.expansion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 2px solid var(--black);
}

.expansion-item {
  padding: 1.5rem 2rem;
  background: var(--white);
}

.expansion-item span {
  font-weight: 800;
  line-height: 1.35;
}

.expansion-removed {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1px;
  padding: 1.5rem 2rem;
  background: #f2f2f2;
  border: 2px solid var(--black);
  border-top: 0;
}

.expansion-label {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expansion-removed strong {
  font-size: 1.1rem;
}

.expansion-claim {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--black);
  color: var(--white);
}

.expansion-claim p {
  max-width: 950px;
  margin: 0.75rem 0 0;
}

@media (max-width: 768px) {
  .expansion-section h2 {
    font-size: 2rem;
  }

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

  .expansion-item,
  .expansion-removed,
  .expansion-claim {
    padding: 1.5rem;
  }
}
/* =========================================================
   COMMUNITY PROFILE — OPEN QUESTIONS
   ========================================================= */

.unknown-section {
  margin: 3.5rem 0;
}

.unknown-section h2 {
  margin: 0.5rem 0 1.75rem;
  font-size: 2.5rem;
}

.unknown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 2px solid var(--black);
}

.unknown-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--white);
}

.unknown-item span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.unknown-item p {
  margin: 0;
}

.unknown-note {
  padding-top: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .unknown-section h2 {
    font-size: 2rem;
  }

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

  .unknown-item {
    padding: 1.5rem;
  }
}
/* =========================================================
   COMMUNITY PROFILE — PUBLIC COST
   ========================================================= */

.cost-section {
  margin: 3.5rem 0;
}

.cost-section h2 {
  margin: 0.5rem 0 1.75rem;
  font-size: 2.5rem;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 2px solid var(--black);
}

.cost-item {
  padding: 2rem;
  background: var(--white);
}

.cost-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cost-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  line-height: 1.1;
}

.cost-item p {
  margin: 0;
}

.cost-detail {
  margin-top: 0.75rem !important;
  font-size: 0.95rem;
}

.cost-note {
  padding-top: 1.5rem;
  margin: 0;
  max-width: 950px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cost-section h2 {
    font-size: 2rem;
  }

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

  .cost-item {
    padding: 1.5rem;
  }
}
/* =========================================================
   COMMUNITY PROFILE — SOURCE RECORDS
   ========================================================= */

.profile-records {
  margin: 3.5rem 0;
}

.profile-records h2 {
  margin: 0.5rem 0 1rem;
  font-size: 2.5rem;
}

.profile-records-intro {
  max-width: 850px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.records-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 2px solid var(--black);
}

.record-item {
  padding: 1.75rem 2rem;
  background: var(--white);
}

.record-type {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-item strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.35;
}

.record-item p {
  margin: 0 0 1rem;
}

.record-item a,
.record-status {
  font-weight: 700;
}

.record-status {
  color: #666;
}

@media (max-width: 768px) {
  .profile-records h2 {
    font-size: 2rem;
  }

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

  .record-item {
    padding: 1.5rem;
  }
}

/* =========================================================
   SOURCES & RECORDS — LIBRARY
   ========================================================= */

.records-library-section {
  margin: 3.5rem 0 0;
}

.records-library-section h2 {
  margin: 0 0 0.75rem;
  font-size: 2.5rem;
}

.records-library-section > p {
  max-width: 850px;
}

.records-library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--black);
  border: 2px solid var(--black);
}

.records-library-item {
  padding: 1.75rem 2rem;
  background: var(--white);
}

.records-library-item strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.35;
}

.records-library-item p {
  margin: 0 0 1rem;
}

.records-library-item a,
.records-library-item .record-status {
  font-weight: 700;
}

.records-library-note {
  padding-top: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .records-library-section h2 {
    font-size: 2rem;
  }

  .records-library-grid {
    grid-template-columns: 1fr;
  }

  .records-library-item {
    padding: 1.5rem;
  }
}

/* =========================================================
   HOMEPAGE — MICHIGAN CITY FINDINGS
   ========================================================= */

.home-findings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 2rem 0;
  background: var(--black);
  border: 2px solid var(--black);
}

.home-finding {
  padding: 1.5rem 2rem;
  background: var(--white);
}

.home-finding span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-finding strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .home-findings-grid {
    grid-template-columns: 1fr;
  }

  .home-finding {
    padding: 1.25rem 1.5rem;
  }
}

/* =========================================================
   PLATE SEARCH LOOKUP
   ========================================================= */

.plate-lookup {
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  background: var(--black);
  color: var(--white);
}

.plate-lookup .eyebrow {
  margin-top: 0;
  color: var(--red);
}

.plate-lookup h2 {
  margin: 0.5rem 0 1rem;
  color: var(--white);
}

.plate-lookup p {
  max-width: 900px;
}

.plate-lookup .button {
  margin-top: 0.5rem;
  background: var(--white);
  color: var(--black);
}

.plate-lookup .button:hover {
  background: var(--red);
  color: var(--white);
}

/* =========================================================
   TAKE ACTION CHECKLIST
   ========================================================= */

.action-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--black);
  border: 2px solid var(--black);
}

.action-checklist-item {
  padding: 1.75rem 2rem;
  background: var(--white);
}

.action-checklist-item span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.action-checklist-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.action-checklist-item p {
  margin: 0;
}

@media (max-width: 768px) {
  .action-checklist {
    grid-template-columns: 1fr;
  }

  .action-checklist-item {
    padding: 1.5rem;
  }
}

/* =========================================================
   REAL-WORLD EXAMPLE
   ========================================================= */

.real-world-example {
  background: var(--white);
  color: var(--black);
}

.real-world-example .content-width {
  padding: 3rem;
  background: var(--black);
  color: var(--white);
}

.real-world-example .eyebrow {
  margin-bottom: 1rem;
  color: var(--red);
}

.real-world-example h2 {
  color: var(--white);
}

.real-world-example a {
  color: var(--white);
  font-weight: 800;
}

.real-world-example a:hover,
.real-world-example a:focus {
  color: var(--red);
}

@media (max-width: 768px) {
  .real-world-example .content-width {
    padding: 1.5rem;
  }
}

/* =========================================================
   KNOW YOUR RIGHTS CHECKLIST
   ========================================================= */

.rights-checklist {
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--black);
  color: var(--white);
}

.rights-checklist .eyebrow {
  margin-top: 0;
  color: var(--red);
}

.rights-checklist h2 {
  max-width: 850px;
  margin-bottom: 2rem;
  color: var(--white);
}

.rights-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
}

.rights-checklist-item {
  padding: 1.5rem;
  background: var(--white);
  color: var(--black);
}

.rights-checklist-item span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rights-checklist-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.rights-checklist-item p {
  margin: 0;
}

@media (max-width: 768px) {
  .rights-checklist {
    padding: 1.5rem;
  }

  .rights-checklist-grid {
    grid-template-columns: 1fr;
  }
}

.historical-quote {
  padding: 4rem 0 4.5rem;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
}

.historical-quote blockquote {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-style: italic;
  line-height: 1.35;
  font-weight: 400;
}

.quote-attribution {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-emphasis {
  color: var(--red);
}
