/* ============================================
   KYGenWeb – Global Design Tokens
   ============================================ */

:root {

  /* Core blues */
  --kyg-navy: #020924;
  --kyg-navy-soft: #0b1220;
  --kyg-navy-tint: #041431;
  --kyg-med-blue: #506a99;
  --kyg-navy-warm: #2e384d;
  --kyg-lt-blue: #f7f9fb;

  /* Golds */
  --kyg-accent: #c2923a;
  --kyg-accent-deep: #a87323;

  /* Neutrals */
  --kyg-cream: #f7f3eb;
  --kyg-cream-light: #fbf8f2;
  --kyg-cream-warm: #f0e4d2;
  --kyg-paper: #fdfaf5;
  --kyg-ink: #111111;
  --kyg-muted: #555555;
  --kyg-slate: #eef2f6;

  /* Header + footer colors */
  --kyg-header-top: var(--kyg-navy-warm);
  --kyg-footer: var(--kyg-navy-warm);
  --kyg-footer-text: var(--kyg-cream);

  --color-surface: #ffffff;

  /* ---------------------------------------------------------------------- */
  /* Fonts */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;

  /* Backgrounds */
  --bg-page: var(--kyg-paper);
  --bg-surface: var(--color-surface);
  --bg-muted: var(--kyg-cream);
  --bg-feature: var(--kyg-slate);

  /* Text */
  --text-main: var(--kyg-navy-tint);
  --text-muted: var(--kyg-muted);
  --text-heading: var(--kyg-navy-tint);
  --text-inverse: var(--kyg-cream-light);

  /* Borders */
  --border-subtle: rgba(80, 106, 153, 0.10);
  /* med-blue at 25% */

  /* Tables */
  --table-header-bg: var(--kyg-slate);
  --table-row-alt: var(--kyg-lt-blue);
  /* barely visible */


  /* Links */
  --link-default: var(--kyg-navy);
  --link-hover: var(--kyg-accent-deep);

  /* Header / nav */
  --header-top-bar: var(--kyg-header-top);
  --header-top-text: var(--kyg-cream-light);

  --nav-bg: var(--kyg-slate);
  --nav-link-default: var(--kyg-navy-tint);
  --nav-link-hover-bg: var(--kyg-med-blue);
  --nav-dropdown-bg: var(--bg-surface);
  --nav-dropdown-border: var(--border-subtle);

  /* Cards / hubs */
  --card-bg: var(--bg-surface);
  --card-border: var(--border-subtle);

  /* Footer */
  --footer-bg: var(--kyg-footer);
  --footer-text: var(--kyg-footer-text);
}


/* ============================================
   Reset / Base
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  /* was --color-text-main */
  background: var(--bg-page);
}

/* Remove default margins on common block elements */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

/* ============================================
   Layout Wrapper / Main
   ============================================ */

/* Layout shell */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--kyg-paper);
}

main.page {
  /* flex: 1 0 auto; */
  padding-top: .75rem;
  /* background: var(--kyg-paper);  */
}

/* section spacing */
main.page>section {
  margin-top: 1.5rem;
}

/* Page header wrapper */
.page-header {
  background: var(--kyg-paper);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  border: 1px solid var(--kyg-cream-warm);
}

/* Main page title */
.page-title,
.page-header h1 {
  margin: 0 0 0.35rem;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--kyg-navy-tint);
}

/* Optional subtitle line under H1 */
.page-subtitle {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--kyg-muted);
}

/* Intro paragraph */
.lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--kyg-ink);
}

.page-content {
  margin-top: 1.5rem;
}




/* ============================================
   Typography
   ============================================ */

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-weight: 700;
}

/* Base headings for legacy pages */
h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--kyg-navy-tint);
  margin: 1.75rem 0 0.75rem;
}

h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--kyg-navy-tint);
  margin: 1.5rem 0 0.5rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--kyg-navy-soft);
  margin: 1.25rem 0 0.35rem;
}

h4 {
  font-size: 1rem;
  margin: 0.8rem 0 0.3rem;
}

p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

/* Intro paragraph under page title */


/* Lists */
ul,
ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

li+li {
  margin-top: 0.15rem;
}

/* Links */
a {
  color: var(--link-default);
  text-decoration: none;
}

/* a:visited {
  color: var(--link-default);
} */

a:hover,
a:focus-visible {
  color: var(--link-hover);
}

/* Utility muted text */
.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   Section Heading with Top Bar (4)
   ============================================ */

.section-heading {
  margin: 1.75rem 0 1rem;
  padding-top: 0.6rem;
  border-top: 3px solid var(--kyg-accent);
  font-size: 1.35rem;
}


/* ============================================
   Header (Site ID, NAV, Banner)
   ============================================ */

.ky-header {
  margin-bottom: 0.75rem;
}

/* Top dark bar */
.ky-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--header-top-bar);
  color: var(--header-top-text);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
}

.ky-top-bar a {
  color: var(--header-top-text);
  text-decoration: none;
}

.ky-top-em a {
  font-weight: 600;
}

/* Banner (image) */
.ky-header .banner {
  padding: 0.25rem 0;
  text-align: center;
  background: var(--color-surface);
}

.ky-header .banner img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  /* adjust for “small” banner */
  display: block;
  margin: 0 auto;
}

/* Social Icons */





/* ============================================
   NAV BAR
   ============================================ */
/* Nav bar wrapper */
.ky-nav-bar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.4rem 0.75rem;
}

/* Nav layout */
.ky-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Main nav list */
.ky-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.nav-icon {
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}

.ky-nav-links>li {
  position: relative;
  /* required for dropdown positioning */
}

/* Top-level nav links */
.ky-nav-links>li>a {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--nav-link-default);
  border-radius: 4px;
}

.ky-nav-links>li>a:hover,
.ky-nav-links>li>a:focus-visible {
  background: var(--nav-link-hover-bg);
}

/* Dropdown menu */
.ky-nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--nav-dropdown-bg);
  border: 1px solid var(--nav-dropdown-border);
  border-radius: 4px;
  padding: 0.35rem 0;
  margin-top: 0.1rem;
  z-index: 10;
}

.ky-nav-links .dropdown li {
  list-style: none;
}

.ky-nav-links .dropdown a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  color: var(--nav-link-default);
  text-decoration: none;
}

.ky-nav-links .dropdown a:hover,
.ky-nav-links .dropdown a:focus-visible {
  background: var(--nav-link-hover-bg);
}

/* Show dropdown on hover or keyboard focus */
.ky-nav-links>li.has-dropdown:hover>.dropdown,
.ky-nav-links>li.has-dropdown:focus-within>.dropdown {
  display: block;
}

/* ----- DROPDOWN ARROWS ----- */

/* Add arrow to items with dropdowns */
.ky-nav-links>li.has-dropdown>a {
  position: relative;
  padding-right: 1rem;
  /* room for arrow */
}

/* Arrow glyph */
.ky-nav-links>li.has-dropdown>a::after {
  content: "▾";
  /* down arrow */
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.75em;
  vertical-align: middle;
  opacity: 0.8;
}

/* Rotate arrow when open */
.ky-nav-links>li.has-dropdown:hover>a::after,
.ky-nav-links>li.has-dropdown:focus-within>a::after {
  transform: rotate(180deg);
}

/* Search form */
.ky-nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ky-nav-search input[type="text"] {
  padding: 0.25rem 0.4rem;
  font-size: 0.85rem;
}

.ky-nav-search button {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  background: var(--kyg-med-blue);
  border: 1px solid var(--kyg-navy-warm);
  color: #fff;
}

button:hover {
  background: var(--kyg-navy-warm);
}

/* =================================================== */

/* ============================================
   Generic Page Containers (Hub & Page)
   ============================================ */
main.page,
article.page,
article.hub {
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 1.25rem 1.4rem 1.8rem;
  margin-bottom: 1.5rem;
}

/* Page header block */
.page-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

/* Generic content section */
.page-content {
  margin-top: 1rem;
}

/* Optional narrower text column */
.page-content.narrow {
  max-width: 48rem;
}


/* ONE PANEL PATTERN */

/* used in section as a class */

.panel {
  margin-top: 1.75rem;
  /* instead of 1.25rem */
  /* margin: 2rem 0; */
  padding: 1.5rem 1.75rem 1.3rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--kyg-paper);
}

.panel>h2:first-child,
.panel>h3:first-child {
  margin-top: 0;
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
}



/* ============================================
   Hub Layout (Collections, Research, etc.)
   ============================================ */

.hub-intro {
  margin-bottom: 1rem;
}

/* Grid of hub “cards” */
.card-grid,
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Individual hub card */
.card,
.hub-card {
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 0.9rem 0.9rem 1rem;
  background: var(--card-bg);
}

.hub-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.hub-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Card title links */
.hub-card h2 a {
  text-decoration: none;
}

.hub-card h2 a:hover,
.hub-card h2 a:focus-visible {
  text-decoration: underline;
}

/* ============================================
   Tables
   ============================================ */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
}

thead {
  background: var(--table-header-bg);
}

th,
td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  /* horizontal only */
}

thead th {
  border-bottom: 2px solid var(--border-subtle);
  background: var(--bg-muted);
  font-weight: 600;
}

th {
  font-weight: 600;
}

/* Base header setup */
table.sortable th {
  position: relative;
  padding-right: 1.2rem;
  /* room for arrow */
  user-select: none;
  cursor: pointer;
}

/* Neutral arrow on all sortable headers */
table.sortable th::after {
  content: "⇅";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  opacity: 0.35;
  /* subtle but visible */
  pointer-events: none;
}

/* Active ascending */
table.sortable th[data-sort-dir="asc"]::after {
  content: "▲";
  opacity: 0.85;
  font-size: 0.75rem;
}

/* Active descending */
table.sortable th[data-sort-dir="desc"]::after {
  content: "▼";
  opacity: 0.85;
  font-size: 0.75rem;
}




/* ============================================
   Basic Responsiveness
   ============================================ */

@media (max-width: 700px) {
  .wrapper {
    padding: 1rem 0.75rem 2rem;
  }

  article.page,
  article.hub {
    padding: 1rem 0.9rem 1.4rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .ky-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .ky-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .ky-nav-search {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  /* If dropdowns feel fussy on small screens you can later add
     a JS-driven toggle; this CSS keeps them usable for now. */
}


/* ------------------------------
   FLEXIBLE TWO-COLUMN WITH IMAGE
   ------------------------------ */

.kyg-two-col {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

/* columns — can contain ANYTHING */
.kyg-two-col .col {
  flex: 1;
  min-width: 0;
}

  .kyg-two-col.auto-left .col:first-child {
    flex: 0 0 auto;
  }

  .kyg-two-col.auto-right .col:last-child {
    flex: 0 0 auto;
  }

  /* figure styling */
  figure {
    margin: 0 0 0.5rem 0;
  }

  figure img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }

  figure figcaption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    text-align: center;
  }

  /* Left-align figcaption when used in a two-column layout */
  .kyg-two-col figure figcaption {
    text-align: left;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
  }

  /* ratio modifiers */
  .kyg-two-col.ratio-30-70 .col:first-child {
    flex: 0 0 30%;
  }

  .kyg-two-col.ratio-30-70 .col:last-child {
    flex: 0 0 70%;
  }

  .kyg-two-col.ratio-50-50 .col {
    flex: 0 0 50%;
  }

  /* example: <div class="kyg-two-col ratio-50-50"> */

  /* mobile stacking */
  @media (max-width: 700px) {
    .kyg-two-col {
      flex-direction: column;
    }

    .kyg-two-col .col {
      flex: none !important;
    }
  }

  /* ------------------------------
   CONTENT TYPOGRAPHY – SINGLE SOURCE OF TRUTH
   ------------------------------ */

  /* Page header spacing */
  .page-header {
    margin-bottom: 1.25rem;
  }

  .page-header p {
    max-width: 110ch;
    line-height: 1.7;
    padding-bottom: 1rem;
  }

  /* Base paragraphs in main content */
  /* Body paragraphs */
  main p {
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0 0 0.9rem;
  }

  /* Indented lists in content */
  main ul,
  main ol {
    padding-left: 1.9rem;
    margin: 0.8rem 0 1rem;
  }

  main li {
    margin-bottom: 0.35rem;
  }

  /* Space before h3 section headings */
  main h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.55rem;
  }



  .kyg-form {
    max-width: 40rem;
    margin: 1.5rem auto;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
  }

  .kyg-fieldset {
    margin: 1rem 0;
    padding: 0.5rem 0 0.75rem;
    border: none;
    border-top: 1px solid var(--border-subtle);
  }

  .kyg-fieldset legend {
    font-weight: 600;
    padding: 0 0.25rem;
  }

  .kyg-field {
    margin: 0.5rem 0;
  }

  .kyg-field input[type="text"],
  .kyg-field input[type="email"],
  .kyg-field select,
  .kyg-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.4rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font: inherit;
  }

  .kyg-actions {
    margin-top: 1rem;
    text-align: left;
  }

  .kyg-actions button {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    font: inherit;
    cursor: pointer;
  }

  /* Hide honeypot field from humans */
  .kyg-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
  }

  /* Cards */

  /* Choice cards (same as Biographies layout) */
  .choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
  }

  .choice-card {
    background: var(--kyg-sand, #eee3c4);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 1.75rem 1rem;
    width: 280px;
    /* or whatever your bio cards use */
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }

  .choice-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: 0.15s ease;
  }

  /* ICON FIX — This is the part you are missing */
  .choice-icon {
    width: 70px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
  }

/* Button */



.btn {
  display: inline-block;
  padding: 0.3rem .7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  width: 200px;
  
}



.feature-btn {
  background-image: linear-gradient(135deg, var(--kyg-med-blue), var(--kyg-navy-warm));
  color: var(--kyg-cream);
}

.btn-nowrap {
  white-space: nowrap;   /* forces the text onto one line */
  padding-left: 1.5rem;  /* give it a bit more width */
  padding-right: 4.5rem; /* same here */
}

/* ------------------------------
   FEATURE LAYOUT (image/card + text)
   ------------------------------ */

/* Wrapper strip */
.kyg-section.kyg-feature {
  background: var(--bg-feature);
  padding: 2.5rem 1rem;
}

/* Inner two-column layout */
.kyg-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap; /* stack on small screens */
}

/* Left + right columns */
.kyg-feature-inner > * {
  flex: 1 1 0;
}

/* Text column tweaks */
.kyg-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Make the collection card a reasonable size in feature layout */
.kyg-feature-inner .kyg-collection-card {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.feature-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;       /* larger */
  font-weight: 700;        /* much bolder */
  color: var(--kyg-accent);
  margin: 0 0 1rem;
}


  /* --- collection Cards --- */
  /* Base collection card */
  .kyg-collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.9rem;
    text-decoration: none;
    color: var(--kyg-cream-light);
  }

  /* Optional cream overlay */
  .kyg-collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(243, 237, 228, 0) 20%,
        rgba(243, 237, 228, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Image box with fixed ratio */
  .kc-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: inherit;
  }

  .kc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out;
  }

  /* Gradient overlay + text */
  .kc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(to top,
        rgba(2, 9, 36, 0.90),
        rgba(2, 9, 36, 0.35),
        transparent);
    color: var(--kyg-cream-light);
  }

.kc-title {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: var(--kyg-cream-light);
}

.kc-text {
  font-size: 0.9rem;
  color: var(--kyg-cream-light);
  line-height: 1.5;
  margin: 0 0 0.6rem;
  max-width: 20rem;
}

.kc-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--kyg-accent);
}
  .kyg-collection-card:hover .kc-image img {
    transform: scale(1.05);
  }

  /* Standalone card constraint */
  .kc-standalone {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .kc-standalone .kyg-collection-card {
    max-width: 220px;
    width: 100%;
  }

  .kc-standalone .kc-image {
    aspect-ratio: 16 / 7 !important;
  }

  /* HEIGHT cap for the image when used standalone */
  .kc-standalone .kc-image {
    height: 220px;
    /* <-- main control: shrink or grow this */
    aspect-ratio: auto;
    /* ignore the global 16/10 ratio here */
  }

  .kc-standalone .kc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* ============================================
   GLOBAL FOOTER (BASE)
   ============================================ */

.kyg-footer {
  margin-top: 1rem;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 1.5rem 1rem 0;
  font-family: var(--font-sans);
}

/* Inner container (matches wrapper width) */
.kyg-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}

.kyg-footer p a {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--footer-text);
}

/* Footer links */
.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-surface);
  text-decoration: underline;
}


/* ============================================
   LOGO ROW
   ============================================ */

.footer-logos {
  margin: 0.8rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
}

.footer-logos img {
  display: block;
  max-height: 55px;
  height: auto;
}

/* ============================================
   DISCLAIMER / NOTES
   ============================================ */

.footer-note,
.endorsement {
  font-size: 0.75rem;
  margin-top: 0.6rem;
  color: var(--kyg-footer-text);
  opacity: 0.85;
}

/* ============================================
   DELUXE FOOTER (OPTIONAL)
   ============================================ */

.kyg-footer.deluxe .kyg-footer-inner {
  text-align: left;
}

/* Grid layout inside deluxe footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 1.5rem;
}

.footer-col h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--footer-text);
  letter-spacing: 0.04em;
}

.footer-col p,
.footer-col ul {
  font-size: 0.85rem;
  color: var(--footer-text);
}

.footer-col ul {
  padding-left: 1rem;
  margin: 0.6rem 0;
  color: var(--footer-text);
}

/* ============================================
   FOOTER BOTTOM BAR (SHARED)
body: var(--kyg-footer-text);
   ============================================ */

.footer-bottom {
  background: var(--footer-bg);
  border-top: 1px solid var(--bg-muted);
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.9;
}


.footer-bottom .footnote {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  opacity: 0.75;
  
}

