/* ================================================================
   Kansas Property Tax Education Series
   Stylesheet — WCAG 2.1 AA Compliant
   Government-style, accessible, responsive
   ================================================================ */

/* === CSS Custom Properties ======================================= */
:root {
  --c-navy:       #1B3869;
  --c-blue:       #2D60A8;
  --c-blue-lt:    #e4ecf7;
  --c-blue-bg:    #edf2fb;
  --c-gray:       #f3f4f6;
  --c-gray-mid:   #e5e7eb;
  --c-gray-dk:    #6b7280;
  --c-border:     #d1d5db;
  --c-red:        #ba0c2f;
  --c-red-dk:     #8c0921;
  --c-gold:       #f1ad02;   /* KDOR official gold */
  --c-gold-dk:    #d89b02;
  --c-gold-bg:    #fef9e7;
  --c-text:       #1f2937;
  --c-white:      #ffffff;
  --c-focus:      #ffbf47;
  --c-amber-bg:   #fef9e7;
  --c-amber-bdr:  #f1ad02;   /* aligned to KDOR gold */
  --c-amber-txt:  #7a4f00;
  --c-green-txt:  #166534;

  --ff: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --fs-sm:   1rem;        /* 16 px */
  --fs-base: 1.125rem;   /* 18 px */
  --fs-lg:   1.25rem;    /* 20 px */
  --fs-xl:   1.5rem;     /* 24 px */
  --fs-2xl:  2rem;       /* 32 px */
  --fs-3xl:  2.5rem;     /* 40 px */
  --fs-4xl:  3rem;       /* 48 px */

  --lh-body: 1.65;
  --lh-head: 1.2;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;

  --max-w:     1100px;
  --radius:    0.375rem;
  --radius-lg: 0.625rem;
  --shadow:    0 2px 8px rgba(0,0,0,.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
}

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

html { font-size: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-gray);
  line-height: var(--lh-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* === Skip Link =================================================== */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--sp-4);
  background: var(--c-focus);
  color: var(--c-text);
  font-weight: 700;
  font-size: var(--fs-lg);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius);
  text-decoration: none;
  z-index: 9999;
  white-space: nowrap;
}
.skip-link:focus { top: var(--sp-4); }

/* === Screen Reader Only ========================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === Global Focus ================================================ */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* === Site Header ================================================= */
.site-header {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-4) var(--sp-6) 0;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-bottom: var(--sp-4);
}
.header-branding { display: flex; flex-direction: column; gap: var(--sp-1); }
.header-state {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .82;
}
.header-dept { font-size: var(--fs-lg); font-weight: 700; }

.slide-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Progress bar */
.header-progress {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 5px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}
.header-progress-fill {
  height: 100%;
  background: var(--c-gold);
}

/* KDOR logo in site header */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.kdor-logo   { height: 81px; width: auto; display: block; }

/* === Top Nav (breadcrumb) ======================================== */
.top-nav {
  background: var(--c-blue);
  border-bottom: 3px solid var(--c-gold);
}
.top-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}
.top-nav a {
  color: var(--c-white);
  text-decoration: none;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius);
}
.top-nav a:hover { background: rgba(255,255,255,.2); text-decoration: underline; }
.top-nav-sep { color: rgba(255,255,255,.45); }
.top-nav-current { color: rgba(255,255,255,.9); font-weight: 600; }

/* === Main ======================================================== */
.site-main {
  flex: 1;
  padding: var(--sp-8) var(--sp-6);
}
.slide-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* === Slide Header ================================================ */
.slide-header { margin-bottom: var(--sp-6); }

.slide-num-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-3);
}

.slide-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-navy);
  line-height: var(--lh-head);
  padding-bottom: var(--sp-4);
  border-bottom: 4px solid var(--c-gold);
  margin-bottom: var(--sp-3);
}

.slide-subtitle {
  font-size: var(--fs-xl);
  color: var(--c-text);
  font-weight: 400;
  margin-top: var(--sp-3);
}

/* === Content Panel =============================================== */
.content-panel {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
  margin-bottom: var(--sp-8);
}
.content-panel h2 {
  font-size: var(--fs-xl);
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--c-blue-lt);
}
.content-panel h3 {
  font-size: var(--fs-lg);
  color: var(--c-blue);
  font-weight: 600;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.content-panel p { margin-bottom: var(--sp-4); }
.content-panel p:last-child { margin-bottom: 0; }

/* === Bullet Lists ================================================ */
.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 2.25rem;
  position: relative;
  border-bottom: 1px solid var(--c-gray-mid);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: var(--sp-3);
  top: 1.15em;
  width: .625rem;
  height: .625rem;
  background: var(--c-red);
  border-radius: 50%;
}
.bullet-list li strong { color: var(--c-navy); }

/* Sub-lists */
.sub-list { list-style: none; padding: 0; margin-top: var(--sp-2); }
.sub-list li {
  padding: var(--sp-1) var(--sp-2) var(--sp-1) 1.75rem;
  position: relative;
  font-size: var(--fs-sm);
  border-bottom: none;
}
.sub-list li::before {
  content: "–";
  position: absolute;
  left: var(--sp-3);
  top: .35em;
  color: var(--c-blue);
  font-weight: 700;
}

/* === Key Takeaway Box ============================================ */
.takeaway-box {
  background: var(--c-amber-bg);
  border: 2px solid var(--c-amber-bdr);
  border-left: 6px solid var(--c-amber-bdr);
  border-radius: var(--radius);
  padding: var(--sp-6);
  margin-top: var(--sp-8);
}
.takeaway-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-amber-txt);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-2);
}
.takeaway-box p {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

/* === Formula Box ================================================= */
.formula-box {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  margin: var(--sp-6) 0;
  text-align: center;
}
.formula-step {
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: .01em;
}
.formula-step .fv  { color: #93c5fd; }
.formula-step .fop { color: var(--c-focus); font-weight: 900; }
.formula-step .fr  { color: #86efac; font-weight: 900; }
.formula-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.2);
  margin: var(--sp-4) auto;
  width: 80%;
}
.formula-step-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: var(--sp-2);
}

/* === Table Footnote ============================================== */
.table-footnote {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin: calc(var(--sp-2) * -1) 0 var(--sp-6);
  padding: 0 var(--sp-2);
  line-height: 1.6;
}

/* === Data Tables ================================================= */
.table-wrap {
  overflow-x: auto;
  margin: var(--sp-6) 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
  min-width: 380px;
}
caption {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-blue);
  text-align: left;
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-gray);
  border-bottom: 2px solid var(--c-border);
}
th {
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-size: var(--fs-base);
}
td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-gray-mid);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: var(--c-gray); }
tbody tr:hover td { background: var(--c-blue-lt); }

.rate-low  { color: var(--c-green-txt); font-weight: 700; }
.rate-mid  { color: var(--c-amber-txt); font-weight: 700; }
.rate-high { color: var(--c-red);       font-weight: 700; }

/* === Two-Column Layout =========================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin: var(--sp-6) 0;
}
.col-card {
  background: var(--c-gray);
  border-radius: var(--radius);
  padding: var(--sp-6);
  border-top: 4px solid var(--c-blue);
}
.col-card.red-top  { border-top-color: var(--c-red); }
.col-card.gold-top { border-top-color: var(--c-gold); }
.col-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-4);
  margin-top: 0;
}

/* === Three-Column Layout ========================================= */
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin: var(--sp-6) 0;
}
.col-note {
  background: #fffbeb;
  border-radius: var(--radius);
  padding: var(--sp-6);
  border-top: 4px solid var(--c-gold);
}
.col-note h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: #92400e;
  margin-bottom: var(--sp-3);
  margin-top: 0;
}
.col-note p {
  font-size: var(--fs-sm);
  color: #78350f;
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.col-note p:last-child { margin-bottom: 0; }

/* === Info Grid / Cards =========================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.info-card {
  background: var(--c-gray);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border-left: 4px solid var(--c-blue);
}
.info-card.red-left  { border-left-color: var(--c-red); }
.info-card.gold-left { border-left-color: var(--c-gold); }
.info-card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
  margin-top: 0;
}
.info-card p { font-size: var(--fs-sm); margin: 0; }

/* === Emphasis / Alert Boxes ====================================== */
.emphasis-box {
  background: var(--c-blue-bg);
  border: 2px solid var(--c-blue);
  border-left: 6px solid var(--c-blue);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.emphasis-box p {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-navy);
  margin: 0;
}
.alert-box {
  background: #fff1f2;
  border: 2px solid var(--c-red);
  border-left: 6px solid var(--c-red);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.alert-box p {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: #7f1d1d;
  margin: 0;
}

/* === Slide Figures =============================================== */
.slide-figure {
  margin: var(--sp-6) 0;
  text-align: center;
}
.slide-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

/* === Graphic Placeholders ======================================== */
.graphic-placeholder {
  background: var(--c-gray);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: var(--sp-8) var(--sp-6);
  margin: var(--sp-6) 0;
  text-align: center;
}
.ph-icon { font-size: 2.5rem; margin-bottom: var(--sp-3); }
.ph-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 var(--sp-1);
}
.ph-desc {
  font-size: var(--fs-sm);
  color: var(--c-gray-dk);
  margin: 0;
}

/* === Process Steps =============================================== */
.steps-list { list-style: none; padding: 0; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--c-gray-mid);
  font-size: var(--fs-base);
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: var(--sp-3);
  top: var(--sp-4);
  width: 2rem;
  height: 2rem;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
}

/* === Summary Grid (slide 15) ===================================== */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.summary-item {
  background: var(--c-gray);
  border-radius: var(--radius);
  padding: var(--sp-5);
  border-top: 3px solid var(--c-gold);
}
.summary-item h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
  margin-top: 0;
}
.summary-item p { font-size: var(--fs-sm); margin: 0; }

/* === Thank You (slide 15) ======================================== */
.thank-you-box {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  margin-top: var(--sp-8);
}
.thank-you-box h2 {
  font-size: var(--fs-3xl);
  color: var(--c-white);
  border: none;
  padding: 0;
  margin-bottom: var(--sp-4);
}
.thank-you-box p {
  font-size: var(--fs-lg);
  opacity: .9;
  margin-bottom: var(--sp-8);
}
.return-home-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-red);
  color: var(--c-white);
  text-decoration: none;
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--fs-lg);
  font-weight: 700;
  border-radius: var(--radius);
  min-height: 52px;
}
.return-home-btn:hover { background: var(--c-red-dk); text-decoration: underline; }

/* === Index / Landing Page ======================================== */
.hero-panel {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  margin-bottom: var(--sp-8);
}
.hero-eyebrow {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
  margin-bottom: var(--sp-4);
}
.hero-title {
  font-size: var(--fs-4xl);
  font-weight: 900;
  line-height: var(--lh-head);
  margin-bottom: var(--sp-4);
}
.hero-subtitle {
  font-size: var(--fs-xl);
  opacity: .9;
  max-width: 600px;
  margin: 0 auto var(--sp-8);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-red);
  color: var(--c-white);
  text-decoration: none;
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--fs-xl);
  font-weight: 700;
  border-radius: var(--radius);
  min-height: 56px;
}
.hero-cta:hover { background: var(--c-red-dk); text-decoration: underline; }

.index-h2 {
  font-size: var(--fs-xl);
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.slide-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--sp-4);
}
.slide-index-item {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  text-decoration: none;
  color: var(--c-text);
  border: 2px solid transparent;
}
.slide-index-item:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow);
  text-decoration: underline;
}
.slide-index-num {
  background: var(--c-navy);
  color: var(--c-white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-base);
  flex-shrink: 0;
}
.slide-index-title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-navy);
  margin: 0;
  padding-top: .35rem;
}

/* === Site Footer / Navigation ==================================== */
.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-6);
  margin-top: auto;
}
.footer-nav {
  max-width: var(--max-w);
  margin: 0 auto var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: none;
  min-width: 130px;
  min-height: 48px;
  justify-content: center;
  white-space: nowrap;
}
.footer-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
  text-decoration: underline;
}
.footer-btn.home { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-navy); }
.footer-btn.home:hover { background: var(--c-gold-dk); border-color: var(--c-gold-dk); color: var(--c-navy); }
.footer-btn[aria-disabled="true"] {
  opacity: .35;
  pointer-events: none;
  cursor: default;
}
.footer-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  text-align: center;
}

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

/* === Responsive ================================================== */
@media (max-width: 860px) {
  :root { --fs-3xl: 2rem; --fs-4xl: 2.25rem; }
  .two-col   { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --fs-3xl: 1.75rem; }
  .slide-title  { font-size: 1.625rem; }
  .content-panel { padding: var(--sp-5); }
  .site-main    { padding: var(--sp-4); }
  .footer-nav   { flex-direction: column; align-items: stretch; }
  .footer-btn   { width: 100%; }
  .hero-title   { font-size: 1.875rem; }
  .hero-panel   { padding: var(--sp-10) var(--sp-5); }
  .slide-index-grid { grid-template-columns: 1fr; }
  .info-grid    { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  table { min-width: 320px; }
}

/* === Print ======================================================= */
@media print {
  .skip-link, .top-nav, .site-footer { display: none; }
  .content-panel { box-shadow: none; border: 1px solid #ccc; }
  body { background: white; }
}

/* === Attribution / Disclaimer ==================================== */
.resource-credit {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #d6d6d6;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 2rem;
  padding: 1rem;
  border-left: 4px solid #555;
  background: #f7f7f7;
}

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

.external-link::after {
  content: " (opens external site)";
  font-size: 0.85em;
}

.site-footer .resource-credit {
  color: rgba(255,255,255,.85);
  border-top-color: rgba(255,255,255,.25);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.site-footer .resource-credit a.external-link {
  color: var(--c-gold);
}
.site-footer .resource-credit a.external-link:hover {
  text-decoration: underline;
}
.footer-copy a {
  color: rgba(255,255,255,.7);
}
.footer-copy a:hover {
  color: var(--c-white);
}
