:root {
  --primary: #0a0a0a;
  --on-primary: #ffffff;
  --brand-green: #00d4a4;
  --brand-green-deep: #00b48a;
  --brand-green-soft: #7cebcb;
  --brand-tag: #3772cf;
  --canvas: #ffffff;
  --canvas-dark: #0a0a0a;
  --surface: #f7f7f7;
  --surface-soft: #fafafa;
  --hairline: #e5e5e5;
  --hairline-soft: #ededed;
  --hairline-dark: #1f1f1f;
  --ink: #0a0a0a;
  --charcoal: #1c1c1e;
  --slate: #3a3a3c;
  --steel: #5a5a5c;
  --stone: #888888;
  --muted: #a8a8aa;
  --on-dark: #ffffff;
  --on-dark-muted: #b3b3b3;
  --hero-sky-from: #87a8c8;
  --hero-sky-to: #f5e9d8;
  --hero-dark-from: #1a3d4a;
  --hero-dark-to: #2d5a4f;
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 9999px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 20px;
  --sp-xl: 24px;
  --sp-xxl: 32px;
  --sp-xxxl: 40px;
  --sp-section: 64px;
  --sp-section-lg: 96px;
  --sp-hero: 120px;
  --font-ui: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', Menlo, Consolas, monospace;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
}

@media (max-width: 767px) {
  .container { padding: 0 var(--sp-md); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { display: block; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
  padding: 6px var(--sp-sm);
  border-radius: var(--r-sm);
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--ink); text-decoration: none; }
.nav-link.active { color: var(--ink); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
  color: var(--ink);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--canvas);
  z-index: 99;
  padding: var(--sp-xxl) var(--sp-xl);
  flex-direction: column;
  gap: var(--sp-xs);
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline-soft);
  display: block;
}

.mobile-nav-link:hover { color: var(--brand-green-deep); text-decoration: none; }

body.nav-open { overflow: hidden; }

@media (max-width: 1023px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .header-inner { padding: 0 var(--sp-md); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--hero-sky-from) 0%, var(--hero-sky-to) 100%);
  padding: var(--sp-hero) 0 80px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(0,0,0,0.2);
  border-radius: var(--r-full);
  padding: 4px 14px;
  margin-bottom: var(--sp-xl);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--on-dark);
  max-width: 800px;
  margin: 0 auto var(--sp-xl);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto var(--sp-xxxl);
}

.hero-cta {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--charcoal); text-decoration: none; }

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-accent:hover { background: var(--brand-green-deep); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: var(--steel); text-decoration: none; }

.btn-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--on-dark);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ===== SECTIONS ===== */
.section { padding: var(--sp-section-lg) 0; }
.section-sm { padding: var(--sp-section) 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--steel);
  max-width: 560px;
}

.section-header { margin-bottom: var(--sp-section); }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-xl);
}

.card {
  background: var(--canvas);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
}

.card:hover { box-shadow: rgba(0,0,0,0.08) 0px 4px 12px; }

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-md);
  overflow: hidden;
}

.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.badge-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: rgba(55, 114, 207, 0.12);
  color: var(--brand-tag);
  border-radius: var(--r-xs);
  padding: 2px 8px;
}

.card-date {
  font-size: 13px;
  color: var(--stone);
}

.card-read {
  font-size: 13px;
  color: var(--stone);
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--steel);
  flex: 1;
  margin-bottom: var(--sp-md);
}

.card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover { text-decoration: underline; }

/* ===== MAIN ARTICLE PREVIEW ===== */
.featured-article {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl);
  border: 1px solid var(--hairline-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.featured-article-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.featured-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: var(--sp-sm);
}

.featured-article h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.featured-article p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: var(--sp-xl);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.meta-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.meta-date, .meta-read {
  font-size: 13px;
  color: var(--stone);
}

.meta-sep {
  color: var(--hairline);
  font-size: 13px;
}

@media (max-width: 767px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
}

/* ===== EDITORIAL SUMMARY ===== */
.editorial-summary {
  background: linear-gradient(135deg, var(--hero-dark-from) 0%, var(--hero-dark-to) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl);
  color: var(--on-dark);
}

.editorial-summary h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
}

.editorial-summary p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

/* ===== ARTICLE PAGE ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-section);
  align-items: start;
}

.article-body { min-width: 0; }

.article-header { margin-bottom: var(--sp-xxl); }

.article-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: var(--sp-sm);
}

.article-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.article-summary {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: var(--sp-xl);
  padding-left: var(--sp-md);
  border-left: 3px solid var(--brand-green);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: var(--sp-xxl);
  font-size: 14px;
  color: var(--steel);
}

.article-hero-img {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: var(--sp-xxl);
}

.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.toc-sidebar {
  position: sticky;
  top: 88px;
}

.toc-box {
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.toc-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--sp-md);
}

.toc-list { display: flex; flex-direction: column; gap: 2px; }

.toc-list a {
  font-size: 13px;
  color: var(--steel);
  padding: 3px 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: var(--sp-sm);
  transition: color 0.15s, border-color 0.15s;
}

.toc-list a:hover {
  color: var(--ink);
  border-left-color: var(--brand-green);
  text-decoration: none;
}

.toc-list a.active {
  color: var(--ink);
  border-left-color: var(--brand-green);
  font-weight: 500;
}

.article-prose h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: var(--sp-section) 0 var(--sp-md);
  padding-top: var(--sp-sm);
}

.article-prose h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-sm);
}

.article-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
}

.article-prose ul, .article-prose ol {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.article-prose ul li, .article-prose ol li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--sp-xs);
}

.article-prose ol { list-style: decimal; }

.key-context-box {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-soft);
  padding: var(--sp-xl);
  margin: var(--sp-xxl) 0;
}

.key-context-box .kc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-green-deep);
  margin-bottom: var(--sp-sm);
}

.not-covered-box {
  background: var(--surface-soft);
  border-left: 3px solid var(--steel);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-xl);
  margin: var(--sp-xxl) 0;
}

.not-covered-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: var(--sp-sm);
}

.not-covered-box ul { list-style: disc; padding-left: var(--sp-xl); }
.not-covered-box ul li { font-size: 14px; color: var(--slate); margin-bottom: 4px; }

.related-articles { margin-top: var(--sp-section); }

.related-articles h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
}

@media (max-width: 1023px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc-sidebar { display: none; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-md) 0;
  font-size: 13px;
  color: var(--steel);
}

.breadcrumbs a { color: var(--steel); }
.breadcrumbs a:hover { color: var(--ink); text-decoration: none; }
.breadcrumb-sep { color: var(--hairline); }

/* ===== PAGE HERO (dark) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--hero-dark-from) 0%, var(--hero-dark-to) 100%);
  padding: var(--sp-section) 0;
  color: var(--on-dark);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
}

.page-hero p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 560px;
}

/* ===== PROSE PAGES ===== */
.prose-content {
  max-width: 720px;
}

.prose-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: var(--sp-xxxl) 0 var(--sp-md);
  padding-top: var(--sp-sm);
}

.prose-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-sm);
}

.prose-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
}

.prose-content ul {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.prose-content ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--sp-xs);
}

.prose-content a { color: var(--brand-green-deep); text-decoration: underline; }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  font-size: 16px;
  color: var(--ink);
  height: 44px;
  outline: none;
  transition: border-color 0.15s;
}

.form-group textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border: 2px solid var(--brand-green);
}

.form-message {
  display: none;
  background: var(--surface);
  border: 1px solid var(--brand-green-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-top: var(--sp-xl);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

.form-message.show { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-section) 0 var(--sp-xxl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-section);
  margin-bottom: var(--sp-xxl);
}

.footer-brand .logo-name { font-size: 16px; margin-bottom: var(--sp-sm); }

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 320px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer-links a {
  font-size: 14px;
  color: var(--steel);
  padding: 2px 0;
}

.footer-links a:hover { color: var(--ink); text-decoration: none; }

.footer-bottom {
  padding-top: var(--sp-xxl);
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-copyright {
  font-size: 13px;
  color: var(--stone);
}

.footer-handle {
  font-size: 13px;
  color: var(--stone);
}

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-xxl); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--canvas-dark);
  color: var(--on-dark);
  padding: var(--sp-md) var(--sp-xxl);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  min-width: 200px;
}

.cookie-text a { color: var(--brand-green); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--brand-green);
  color: var(--primary);
  border: none;
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cookie-reject {
  background: transparent;
  color: var(--on-dark-muted);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cookie-settings {
  background: none;
  border: none;
  color: var(--on-dark-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

@media (max-width: 767px) {
  .cookie-banner { padding: var(--sp-md); }
}

/* ===== UTILITIES ===== */
.surface-section { background: var(--surface-soft); }

.text-center { text-align: center; }

.divider {
  border: none;
  border-top: 1px solid var(--hairline-soft);
  margin: var(--sp-xxl) 0;
}

.image-placeholder {
  width: 100%;
  background: var(--surface);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-mono);
  min-height: 200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  font-size: 12px;
  color: var(--stone);
  margin-top: 4px;
  text-align: center;
}

.img-caption {
  font-size: 12px;
  color: var(--stone);
  margin-top: 6px;
  font-style: italic;
}
