/*
  Minimal Newspaper Portfolio Styles
  - Classic serif typography
  - Thin rules, generous whitespace
  - Multi-column reading for longform sections
  - Responsive and print-friendly
*/

:root {
  --page-max-width: 960px;
  --gutter: 20px;
  --rule: 1px solid #111;
  --ink: #111;
  --muted: #6b6b6b;
  --paper: #fffdfa;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Serif 4", "EB Garamond", Georgia, serif;
  line-height: 1.5;
}

a { color: inherit; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Masthead */
.masthead { padding-top: 24px; padding-bottom: 16px; }
.masthead-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--gutter);
  font-size: 14px;
  color: var(--muted);
}
.masthead-left { text-align: left; }
.masthead-center { text-align: center; }
.masthead-right { text-align: right; }

.masthead-title {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.5px;
  text-align: center;
  margin: 8px 0 4px 0;
}

.masthead-title a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.masthead-title a:hover {
  opacity: 0.7;
}

.masthead-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 0 12px 0;
  white-space: nowrap;
  font-size: clamp(12px, 1.5vw, 18px);
}
.masthead-logo {
  height: 1.2em;
  vertical-align: middle;
  margin-left: 4px;
}

/* Hamburger menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 8px;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: var(--gutter);
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 8px 0;
}
.nav a { text-decoration: none; }
.nav a.active { font-weight: 700; text-decoration: underline; }

/* Sections */
.section { padding: 20px 0; }
.section-kicker {
  font: 600 14px/1 "Source Serif 4", Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: var(--rule);
  border-bottom: var(--rule);
  display: inline-block;
  padding: 6px 10px 4px 10px;
  margin: 16px 0 12px 0;
}

.section-subtitle {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

/* Lead */
.lead-article { max-width: 68ch; }
.headline {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.1;
  margin: 8px 0;
}
.byline { color: var(--muted); margin: 0 0 8px 0; font-size: 14px; }
.lead { font-size: 18px; }

/* Grid of stories */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story { border-top: var(--rule); padding-top: 12px; }
.story-head {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  margin: 8px 0 6px 0;
}
.story-deck { color: #222; margin: 0 0 8px 0; }
.story-meta { list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: 14px; display: flex; gap: 12px; flex-wrap: wrap; }
.story-meta a { color: inherit; }

/* Multi-column for about text */
.columns {
  column-count: 2;
  column-gap: 28px;
  max-width: 78ch;
}
.columns p { margin: 0 0 12px 0; }

/* About row (image + text) */
.about-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 960px;
}
.about-photo {
  width: 200px;
  /* height: 140px; */
  object-fit: cover;
  border-radius: 4px;
  border: var(--rule);
  background: #fff;
}
.about-text { flex: 1; }

/* CTA Button */
.cta-container {
  margin-top: 12px;
  text-align: center;
  padding: 12px 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: 2px solid var(--ink);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transition: left 0.3s ease;
  z-index: 0;
}

.cta-button span,
.cta-button i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.cta-button:hover {
  color: var(--ink);
  /* transform: translateY(-2px); */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
}

.cta-button:hover::before {
  left: 0;
}

.cta-button i:first-child {
  font-size: 20px;
}

.cta-button i:last-child {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover i:last-child {
  transform: translateX(4px);
}

/* Drop cap */
.dropcap::first-letter {
  float: left;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.9;
  padding-right: 10px;
  padding-top: 4px;
}

/* Contact - Business Card Style */
.section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.section-contact address { 
  font-style: normal; 
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.section-contact a { 
  text-decoration: none; 
}

/* Business Card Container */
.contact-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.contact-name {
  font-size: 28px;
  font-weight: 700;
  font-family: "EB Garamond", Georgia, serif;
  margin: 0 0 32px 0;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--ink);
  letter-spacing: 0.5px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
}

.contact-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--ink);
  margin-top: 1px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.contact-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  word-break: break-word;
  font-weight: 500;
}

.contact-value a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-value a:hover {
  border-bottom-color: var(--ink);
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  margin-top: 8px;
}

/* Small note styling */
.small-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
  line-height: 1.6;
}

/* Resources list styling */
.resources-list {
  max-width: 100%;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-item {
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.7;
}

.resource-item:last-of-type {
  border-bottom: none;
}

.resource-item a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.resource-item a:hover {
  border-bottom-color: var(--ink);
}

.resource-item strong {
  font-weight: 600;
}

/* Stuffs list styling */
.stuffs-list {
  max-width: 100%;
}

.stuffs-section {
  margin-bottom: 40px;
}

.stuffs-section:last-child {
  margin-bottom: 0;
}

.stuffs-subtitle {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}

.stuffs-section p {
  margin: 0 0 16px 0;
  line-height: 1.8;
}

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

.stuffs-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  padding: 12px 16px;
  background: #f9f9f9;
  border-left: 3px solid var(--muted);
  margin: 20px 0;
}

.stuffs-feature-list,
.stuffs-facts-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.stuffs-feature-list li,
.stuffs-facts-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.8;
  border-bottom: 1px solid #f0f0f0;
}

.stuffs-feature-list li:last-child,
.stuffs-facts-list li:last-child {
  border-bottom: none;
}

.stuffs-feature-list li::before {
  /* content: "•"; */
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: bold;
  font-size: 18px;
}

.stuffs-example-list {
  list-style: none;
  padding: 8px 0 8px 20px;
  margin: 12px 0;
  border-left: 2px solid #e0e0e0;
}

.stuffs-example-list li {
  padding: 6px 0;
  line-height: 1.7;
  font-size: 15px;
}

.stuffs-example-list li::before {
  /* content: "→"; */
  margin-right: 8px;
  color: var(--muted);
}

/* Stuffs photo styling */
.stuffs-photo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 4px;
  border: var(--rule);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: var(--rule);
}

/* Visitor Map */
.section-visitor-map {
  padding-top: 0;
  margin-top: 0;
}

.visitor-map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  margin-top: 0px;
  border-top: var(--rule);
}

.visitor-map-link {
  display: inline-block;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--ink) !important;
}

.social-link i {
  font-size: 18px;
}

.social-link:hover {
  background: var(--ink);
  color: var(--paper) !important;
  transform: translateY(-2px);
}

.social-link:hover i {
  color: var(--paper) !important;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bw-icon {
  filter: grayscale(100%) brightness(0);
}

.social-link:hover .social-icon-img {
  filter: brightness(0) invert(1);
}

/* Footer */
.footer { border-top: var(--rule); padding: 16px 0 40px 0; color: var(--muted); font-size: 14px; }

/* Responsiveness */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .columns { column-count: 1; }
  .about-row { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .masthead-title { font-size: 42px; }
  .nav-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: var(--rule);
    border-bottom: var(--rule);
    flex-direction: column;
    gap: 0;
    padding: 0;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 12px var(--gutter);
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    text-align: left;
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .masthead {
    position: relative;
  }
  .exp-date { min-width: 120px; font-size: 13px; }
  .pub-authors-line { margin-left: calc(120px + 12px); }
  .exp-details { margin-left: calc(120px + 12px); }
  .skills-title { min-width: 180px; }
  /* Contact */
  .section-contact {
    padding: 32px 0;
  }
  .contact-card {
    padding: 32px 28px;
    max-width: 90%;
  }
  .contact-name {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .contact-items {
    gap: 18px;
    margin-bottom: 24px;
  }
  .contact-item {
    gap: 14px;
  }
  .contact-item i {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .social-links {
    padding-top: 20px;
  }
  .cta-button { font-size: 16px; padding: 12px 24px; }
  .about-photo { width: 120px; height: 120px; }
  
  /* Visitor Map */
  .visitor-map-container {
    padding: 16px 0;
    margin-top: 24px;
  }
  
  /* Small note */
  .small-note {
    font-size: 12px;
    margin-top: 12px;
    padding-top: 10px;
  }
  
  /* Resources */
  .resource-item {
    padding: 10px 0;
  }
  
  /* Stuffs */
  .stuffs-section {
    margin-bottom: 32px;
  }
  
  .stuffs-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .stuffs-note {
    font-size: 13px;
    padding: 10px 14px;
    margin: 16px 0;
  }
  
  .stuffs-feature-list li,
  .stuffs-facts-list li {
    padding-left: 20px;
  }
  
  /* Stuffs photo */
  .stuffs-photo {
    margin: 16px auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
}

/* News list single-column */
.news-list { display: block; }
.news-list .story { border-top: var(--rule); padding-top: 12px; margin-bottom: 12px; }

/* Refined news line style */
.news-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-top: var(--rule);
}
.news-line:first-child { border-top: none; }
.news-date { color: var(--muted); min-width: 72px; font-size: 14px; }
.news-text { flex: 1; }

/* Experience single-line list */
.exp-list { display: block; }
.exp-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: var(--rule);
}
.exp-line:first-child { border-top: none; }
.exp-date { color: var(--muted); min-width: 160px; font-size: 14px; }
.exp-text { flex: 1; }

/* Publications authors line under the main line */
.pub-authors-line {
  margin-left: calc(160px + 12px);
  color: var(--muted);
  font-size: 14px;
}

/* Collaborators section */
.collaborators-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.collaborators-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
  font-size: 16px;
}

.collaborators-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: bold;
  font-size: 18px;
}

.collaborator-name-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.collaborator-name-link strong {
  font-weight: 700;
}

.collaborator-name-link u {
  text-decoration: underline;
}

.collaborators-list strong {
  font-weight: 700;
}

.collaborators-list u {
  text-decoration: underline;
}

#collaborators-content p {
  margin: 0 0 12px 0;
  line-height: 1.8;
  font-size: 16px;
}

.pub-authors--highlight { font-weight: 600; color: #000; }
.pub-badge {
  border: 1px solid #111;
  padding: 1px 6px;
  font-size: 12px;
  border-radius: 999px;
}

/* Skills row (icons) */
.skills-row { display: block; padding-top: 8px; margin-top: 6px; }
.skill-icon { width: 32px; height: 32px; object-fit: contain; filter: grayscale(30%); }

/* Skills grouped rows (line by line) */
.skills-cat { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.skills-cat + .skills-cat { margin-top: 2px; }
.skills-title { min-width: 230px; color: var(--muted); font-size: 14px; }
.skills-icons { display: flex; gap: 8px; flex-wrap: wrap; }

/* Tuning appearance of titles and icons */
.skills-title { text-transform: uppercase; letter-spacing: .04em; }
.skill-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(30%);
  background: rgba(0,0,0,0.03);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 3px;
  transition: filter .15s ease, background .15s ease, transform .15s ease;
}
.skill-icon:hover { filter: none; background: rgba(0,0,0,0.06); }

@media (max-width: 700px) {
  .skills-cat { flex-direction: column; align-items: flex-start; gap: 6px; }
  .skills-title { min-width: 0; }
}

/* Experience details toggle */
.exp-toggle {
  margin-left: auto;
  border: 1px solid #111;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  padding: 2px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}
.exp-toggle i {
  font-size: 12px;
}
.exp-toggle[aria-expanded="true"] { 
  background: #111; 
  color: #fff; 
}
.exp-toggle[aria-expanded="true"] i {
  color: #fff;
}

/* External link icons */
.exp-text a i.fa-arrow-up-right-from-square,
.exp-line a i.fa-arrow-up-right-from-square {
  font-size: 0.85em;
  margin-left: 2px;
  vertical-align: middle;
}

.exp-details {
  padding: 8px 0 12px 0;
  margin-left: calc(160px + 12px);
}
.exp-details.open { display: block; }

.exp-detail-list { list-style: none; padding: 0; margin: 0; }
.exp-detail-list > li { margin: 6px 0; }
.exp-detail-list ul { margin: 6px 0 0 18px; }
.proj-desc { margin-top: 6px; }
.proj-desc p { margin: 6px 0; }
.exp-subtitle {
  color: var(--muted);
  font-style: italic;
  font-weight: normal;
}

/* Professional Service grouped format */
.pro-service-group {
  padding: 12px 0;
  border-top: var(--rule);
}
.pro-service-group:first-child { border-top: none; }
.pro-service-title {
  margin-bottom: 8px;
  font-size: 16px;
}
.pro-locations-list {
  margin-left: 20px;
  padding-left: 0;
}
.pro-location-item {
  padding: 4px 0;
  font-size: 14px;
}
.pro-location-name {
  color: var(--ink);
}
.pro-location-year {
  color: var(--muted);
}


@media (max-width: 600px) {
  :root { --gutter: 14px; }
  .grid { grid-template-columns: 1fr; }
  .masthead-top { grid-template-columns: 1fr; text-align: center; gap: 4px; }
  .masthead-left, .masthead-right { text-align: center; }
  .masthead-title { font-size: 32px; }
  .masthead-subtitle { 
    font-size: clamp(11px, 3.5vw, 14px);
  }
  .masthead-logo { height: 1em; }
  
  /* Hamburger menu - ensure it works on mobile too */
  
  /* Experience/Education/Projects lines */
  .exp-line { 
    flex-wrap: wrap; 
    gap: 8px; 
    padding: 12px 0;
  }
  .exp-date { 
    min-width: 100%; 
    font-size: 12px; 
    margin-bottom: 4px;
    order: 1;
  }
  .exp-text { 
    width: 100%;
    order: 2;
    flex-basis: 100%;
  }
  .exp-toggle { 
    margin-left: 0; 
    margin-top: 4px;
    order: 3;
  }
  .exp-details { 
    margin-left: 0; 
    padding-left: 0;
    order: 4;
    width: 100%;
  }
  
  /* Publications */
  .pub-authors-line { 
    margin-left: 0; 
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  /* News */
  .news-line { 
    flex-wrap: wrap; 
    gap: 8px;
  }
  .news-date { 
    min-width: 100%; 
    margin-bottom: 4px;
    font-size: 12px;
  }
  .news-text { 
    width: 100%;
    font-size: 14px;
  }
  
  /* Contact */
  .section-contact {
    padding: 24px 0;
  }
  .contact-card {
    padding: 28px 20px;
    max-width: 95%;
    border-width: 1px;
  }
  .contact-name {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom-width: 2px;
  }
  .contact-items {
    gap: 16px;
    margin-bottom: 20px;
  }
  .contact-item { 
    flex-direction: row; 
    align-items: flex-start; 
    gap: 12px; 
  }
  .contact-item i { 
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .contact-item-content { 
    width: 100%; 
  }
  .contact-label {
    font-size: 9px;
  }
  .contact-value {
    font-size: 14px;
  }
  .social-links { 
    justify-content: center;
    padding-top: 18px;
    flex-wrap: wrap;
    gap: 8px;
    border-top-width: 1px;
  }
  .social-link {
    width: 36px;
    height: 36px;
  }
  .social-link i {
    font-size: 16px;
  }
  
  /* About */
  .about-photo { 
    width: 100px; 
    height: 100px; 
  }
  .about-row { 
    gap: 16px; 
  }
  
  /* Skills */
  .skills-cat { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 8px; 
  }
  .skills-title { 
    min-width: 0; 
    font-size: 12px; 
  }
  .skills-icons { 
    gap: 6px; 
  }
  .skill-icon { 
    width: 28px; 
    height: 28px; 
  }
  
  /* Professional Service */
  .pro-location { 
    margin-left: 8px; 
    font-size: 13px;
  }
  .pro-locations-list {
    margin-left: 12px;
  }
  
  /* CTA Button */
  .cta-button { 
    font-size: 15px; 
    padding: 12px 20px; 
    gap: 8px;
    /* width: 100%; */
    max-width: 280px;
  }
  .cta-button i:first-child,
  .cta-button i:last-child { 
    font-size: 16px; 
  }
  
  /* Headlines */
  .headline { 
    font-size: 24px; 
  }
  .story-head { 
    font-size: 17px; 
  }
  
  /* Section spacing */
  .section { 
    padding: 16px 0; 
  }
  .section-kicker { 
    font-size: 12px; 
    padding: 4px 8px; 
    margin: 12px 0 8px 0;
  }
  
  /* Story meta */
  .story-meta {
    font-size: 12px;
    gap: 8px;
  }
  
  /* Lead article */
  .lead { font-size: 16px; }
  .byline { font-size: 13px; }
  
  /* Drop cap */
  .dropcap::first-letter {
    font-size: 2.8em;
  }
  
  /* Visitor Map */
  .visitor-map-container {
    padding: 12px 0;
    margin-top: 20px;
  }
  
  /* Small note */
  .small-note {
    font-size: 11px;
    margin-top: 10px;
    padding-top: 8px;
  }
  
  /* Resources */
  .resource-item {
    padding: 8px 0;
    font-size: 14px;
  }
  
  /* Stuffs */
  .stuffs-section {
    margin-bottom: 28px;
  }
  
  .stuffs-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  
  .stuffs-section p {
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  .stuffs-note {
    font-size: 12px;
    padding: 8px 12px;
    margin: 12px 0;
  }
  
  .stuffs-feature-list li,
  .stuffs-facts-list li {
    padding: 10px 0;
    padding-left: 18px;
    font-size: 14px;
  }
  
  .stuffs-example-list {
    padding-left: 16px;
    margin: 10px 0;
  }
  
  .stuffs-example-list li {
    padding: 5px 0;
    font-size: 13px;
  }
  
  /* Stuffs photo */
  .stuffs-photo {
    margin: 12px auto;
    border-radius: 3px;
  }
  
  /* Collaborators */
  .collaborators-list li {
    padding: 6px 0;
    padding-left: 20px;
    font-size: 14px;
  }
  
  #collaborators-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Print styles: optimized for a clean single-column print */
@media print {
  :root { --ink: #000; --paper: #fff; }
  body { background: #fff; color: #000; }
  .nav, .section-contact a[href^="http"]::after { display: none !important; }
  .container { max-width: 720px; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .columns { column-count: 2; }
}


