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

:root {
  --bg:    #fafaf8;
  --black: #0f0f0f;
  --gray:  #6b6b6b;
  --rule:  #e0deda;
  --warm:  #f4f1ec;

  /* ── Brand accents ── */
  --green: #2a6647;       /* celtic green  */
  --green-soft: rgba(42, 102, 71, 0.07);
  --blue:  #4e7fa8;       /* muted blue    */
  --blue-soft: rgba(78, 127, 168, 0.08);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  overflow-x: hidden;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
  mix-blend-mode: multiply;
  display: none;
}
#cursor.grow { width: 44px; height: 44px; opacity: 0.35; }


/* ── PAGE TOP ACCENT BAR ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  z-index: 200;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 48px;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
nav .logo {
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); text-decoration: none;
}
nav .nav-links { display: flex; gap: 40px; list-style: none; }
nav .nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
nav .nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
nav .nav-links a:hover { color: var(--green); }
nav .nav-links a:hover::after { transform: scaleX(1); }

/* ── HERO (split layout) ── */
#hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
#hero .hero-text {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 72px;
  position: relative;
}
#hero .hero-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue);                   /* ← muted blue */
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards;
}
#hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 300; line-height: 0.92; letter-spacing: -2px;
  color: var(--black);
  opacity: 0; animation: fadeUp 1.1s ease 0.4s forwards;
}
#hero h1 em { font-style: italic; }
#hero .hero-meta {
  margin-top: 40px; display: flex; flex-direction: column; gap: 8px;
  opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards;
}
#hero .hero-meta span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
}
#hero .hero-meta span:first-child { color: var(--blue); } /* ← blue on first meta */

.hero-scroll-hint {
  position: absolute; right: 48px; bottom: 72px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green);                  /* ← celtic green */
  writing-mode: vertical-rl;
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: var(--green);            /* ← celtic green */
  margin: 12px auto 0;
  animation: stretchDown 1.8s ease 1.4s infinite;
}

/* ── PHOTO PANEL ── */
#hero .hero-photo {
  position: relative; overflow: hidden;
  background: var(--warm);
  opacity: 0; animation: fadeIn 1.2s ease 0.6s forwards;
}
#hero .hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.04);
  transition: transform 8s ease;
}
#hero .hero-photo:hover img { transform: scale(1.04); }
#hero .hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 180px; pointer-events: none; mix-blend-mode: overlay; opacity: 0.5;
}
/* Blue-green gradient tint at bottom of photo */
#hero .hero-photo::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(42,102,71,0.25), transparent);
  pointer-events: none; z-index: 1;
}
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--blue-soft) 100%);
}
.photo-placeholder .initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300; line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.photo-placeholder .ph-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-top: 16px;   /* ← blue */
}

/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--rule); }

/* ── SECTION SHELL ── */
section { padding: 40px 48px; }
.section-header {
  display: flex; align-items: baseline; gap: 24px; margin-bottom: 64px;
}
.section-header h2 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); font-weight: 400;
}
.section-header .section-num {
  font-family: 'Cormorant Garamond', serif; font-size: 13px;
  color: var(--green);                  /* ← celtic green (was invisible --rule) */
}

/* ── ABOUT ── */
#about .body-text {
  max-width: 640px; font-size: 1.35rem; line-height: 1.65;
  color: var(--black);
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
}
.body-text--secondary {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.85;
  margin-top: 24px;
}

#about .tags {
  margin-top: 48px; display: flex; flex-wrap: wrap; gap: 10px;
}
#about .tags span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--blue);        /* ← muted blue border */
  padding: 6px 16px;
  color: var(--blue);                   /* ← muted blue text */
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
#about .tags span:hover {
  background: var(--green);            /* ← fill green on hover */
  border-color: var(--green);
  color: var(--white);                  /* ← white text */
}

/* ── FRAMEWORK ── */
#framework { padding: 100px 48px; }

.fw-intro {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 64px;
}

.fw-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 0;
}

/* SVG container */
.fw-svg-wrap { position: relative; }
.fw-svg-wrap svg { width: 100%; height: auto; overflow: visible; }

/* Spokes — green, animate draw-in */
.fw-spoke {
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: fw-draw 0.7s ease forwards;
}
#spoke-n { animation-delay: 0.4s; }
#spoke-e { animation-delay: 0.6s; }
#spoke-s { animation-delay: 0.8s; }
#spoke-w { animation-delay: 1.0s; }

/* Outer ring — blue, dashed, animate draw-in */
.fw-ring {
  stroke: var(--blue);
  stroke-width: 1;
  stroke-dasharray: 6 6;
  opacity: 0;
  animation: fw-fade 0.6s ease forwards;
}
.fw-ring-ne { animation-delay: 1.2s; }
.fw-ring-es { animation-delay: 1.4s; }
.fw-ring-sw { animation-delay: 1.6s; }
.fw-ring-wn { animation-delay: 1.8s; }

/* Orbital dot */
.fw-orbital {
  fill: var(--blue);
  opacity: 0;
  animation: fw-fade 0.5s ease 2.8s forwards;
}

/* Outer node circles */
.fw-ring-node {
  fill: var(--bg);
  stroke: var(--green);
  stroke-width: 1.5;
  transition: fill 0.3s ease, stroke-width 0.3s ease, r 0.3s ease;
}
.fw-node { cursor: none; }
.fw-node:hover .fw-ring-node,
.fw-node.active .fw-ring-node {
  fill: var(--green-soft);
  stroke-width: 2.5;
}

/* Invisible large hit area */
.fw-hit { fill: transparent; }

/* Center node */
.fw-center-fill {
  fill: var(--green);
  transform-box: fill-box;
  transform-origin: center;
  animation: fw-pulse 3.5s ease-in-out 2s infinite;
}
.fw-center-glow {
  fill: var(--green);
  opacity: 0.25;
  transform-box: fill-box;
  transform-origin: center;
  animation: fw-pulse-outer 3.5s ease-in-out 2s infinite;
}

/* Node labels */
.fw-center-label {
  fill: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-anchor: middle;
  pointer-events: none;
}
.fw-node-label {
  fill: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s;
}
.fw-node:hover .fw-node-label,
.fw-node.active .fw-node-label { fill: var(--green); }

/* Bridge intersection labels */
.fw-bridge {
  fill: var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-anchor: middle;
  pointer-events: none;
  opacity: 0;
  animation: fw-fade 0.5s ease forwards;
}
.fw-ring-ne ~ text:nth-of-type(1),
.fw-ring-ne ~ text:nth-of-type(2) { animation-delay: 2.0s; }

/* Dim non-active nodes */
.fw-svg-wrap.has-active .fw-node:not(.active) .fw-ring-node { opacity: 0.3; }
.fw-svg-wrap.has-active .fw-node:not(.active) .fw-node-label { opacity: 0.3; }
.fw-svg-wrap.has-active .fw-spoke   { opacity: 0.2; }
.fw-svg-wrap.has-active .fw-bridge  { opacity: 0.15; }
.fw-svg-wrap.has-active .fw-node.active ~ .fw-spoke { opacity: 1; }

/* Detail panel */
.fw-detail {
  padding: 0 0 0 64px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.fw-hint {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rule);
  line-height: 1.8;
}
.fw-detail-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.fw-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 18px;
}
.fw-detail-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--gray);
}
.fw-detail-intersect {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.fw-detail-intersect-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.fw-detail-intersect p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray);
}

/* Keyframes */
@keyframes fw-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes fw-fade {
  to { opacity: 1; }
}
@keyframes fw-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes fw-pulse-outer {
  0%, 100% { transform: scale(1);    opacity: 0.2; }
  50%       { transform: scale(1.18); opacity: 0.35; }
}

@media (max-width: 900px) {
  .fw-wrap { grid-template-columns: 1fr; }
  .fw-detail { padding: 40px 0 0; min-height: auto; }
}

/* ── WRITING / BLOG ── */
#writing .articles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.article-card {
  padding: 40px 0;
  cursor: pointer; position: relative;
}
#wrinting-index { padding-top: 40px; }


.article-card .art-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px;
  display: flex; gap: 12px; align-items: center;
}
.art-label .art-tag {
  border: 1px solid var(--rule); padding: 3px 10px;
  border-radius: 2px; color: var(--gray);
}
/* "New" badge — solid green fill + white text */
.art-label .art-new {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  letter-spacing: 2px;
}
.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400; line-height: 1.25;
  color: var(--black); margin-bottom: 16px;
}
.article-card .art-excerpt {
  font-size: 0.88rem; line-height: 1.75; color: var(--gray);
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.article-card .art-action {
  margin-top: 20px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);                  /* ← green CTA */
  display: inline-flex; align-items: center; gap: 8px;
  transform-origin: left center;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}
.article-card .art-action .arrow {
  display: inline-block; transition: transform 0.3s ease;
}
.article-card:hover .art-action {
  transform: scale(1.12);
  letter-spacing: 3px;
}
.article-card:hover .art-action .arrow { transform: translateX(4px); }

/* ── INLINE ARTICLE READER ── */
.article-reader {
  max-height: 0; overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.16,1,0.3,1);
  background: var(--white);
}
.reader-inner { padding: 72px 48px 80px; max-width: 680px; }
.reader-close {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); background: none; border: none;
  cursor: none; margin-bottom: 48px; transition: color 0.25s;
}
.reader-close:hover { color: var(--green); }  /* ← green */
.reader-meta {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);                   /* ← blue meta */
  margin-bottom: 32px; display: flex; gap: 24px;
}
.reader-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--black); margin-bottom: 40px;
}
.reader-body p {
  font-size: 1rem; line-height: 1.85; color: #2a2a2a; margin-bottom: 24px;
}
.reader-body h2,
.reader-body h3,
.reader-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--green);
  margin: 36px 0 14px;
}
.reader-body .pull-quote {
  border-left: 3px solid var(--green); /* ← celtic green */
  padding-left: 28px; margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  font-weight: 300; line-height: 1.5; color: var(--black);
}

/* ── ROLE ── */
#role .role-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 48px; flex-wrap: wrap;
}
#role .role-left { flex: 1; min-width: 240px; }
#role .role-left .company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; line-height: 1.1;
}
#role .role-left .title-line {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);                   /* ← blue title line */
  margin-top: 16px;
}
#role .role-right { flex: 1; min-width: 260px; max-width: 420px; }
#role .role-right p { font-size: 0.95rem; line-height: 1.8; color: var(--gray); }
#role .role-right .highlight-block {
  margin-top: 28px; padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--green); /* ← green left border */
  background: var(--green-soft);       /* ← soft green tint */
  font-size: 0.9rem; line-height: 1.75; color: var(--black);
}
#role .role-right .highlight-block strong { font-weight: 500; color: var(--green); }

/* ── CERTIFICATIONS ── */
#certs .cert-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0;
}
.cert-item {
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  position: relative;
  transition: padding-left 0.3s ease;
}
/* Green left bar slides in on hover */
.cert-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 2px; background: var(--green);
  transform: scaleY(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.cert-item:hover::before { transform: scaleY(1); }
.cert-item:hover { padding-left: 14px; }
.cert-item:nth-child(odd)  { padding-right: 40px; }
.cert-item:nth-child(even) { padding-left: 40px; }
.cert-item:hover:nth-child(even) { padding-left: 54px; }
.cert-name { font-size: 0.95rem; color: var(--black); font-weight: 400; }
.cert-date {
  font-size: 11px; letter-spacing: 1px;
  color: var(--blue);                   /* ← muted blue dates */
  white-space: nowrap; text-transform: uppercase;
}

/* ── MEMBERSHIPS ── */
#memberships .mem-list { display: flex; flex-direction: column; }
.mem-item {
  padding: 26px 0;
  display: flex; align-items: center; gap: 24px;
  transition: padding-left 0.3s ease;
}
.mem-item:hover { padding-left: 16px; }
.mem-item .mem-num {
  font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
  color: var(--green);                  /* ← green numbers */
  min-width: 28px;
}
.mem-item .mem-name { font-size: 1rem; color: var(--black); }
.mem-item .mem-role {
  margin-left: auto; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);                  /* ← white text on blue pill */
  background: var(--blue);             /* ← muted blue pill */
  padding: 4px 12px; border-radius: 2px;
}

/* ── EDUCATION & LANGUAGES ── */
#edu-lang { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
#edu-lang > div { padding: 100px 48px; }
.edu-school {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 300; margin-bottom: 12px;
}
.edu-years {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);                   /* ← blue years */
}
.lang-item { margin-bottom: 28px; }
.lang-item:last-child { margin-bottom: 0; }
.lang-name {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
}
.lang-level {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-top: 4px;  /* ← blue level */
}

/* ── FOOTER ── */
footer {
  padding: 48px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
footer .footer-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300;
}
footer .footer-links { display: flex; gap: 32px; }
footer .footer-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.25s;
}
footer .footer-links a:hover { color: var(--green); } /* ← green hover */

/* ── NAV CURRENT PAGE ── */
nav .nav-links a.nav-current { color: var(--green); }
nav .nav-links a.nav-current::after { transform: scaleX(1); }

/* ── WRITING PAGE ── */
.writing-page-header { padding-top: 120px; padding-bottom: 0px;}

.article-back {
  display: inline-block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.25s;
}
.article-back:hover { color: var(--green); }

.writing-list { padding: 0 48px 120px; }

.writing-piece {
  max-width: 680px;
  padding: 80px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .writing-list { padding: 0 24px 80px; }
  .writing-piece { padding: 56px 0; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes stretchDown {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(1.7); transform-origin: top; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav .nav-links { gap: 20px; }
  nav .nav-links a { letter-spacing: 1.5px; }
  #hero { grid-template-columns: 1fr; height: auto; }
  #hero .hero-photo { height: 60vw; }
  #hero .hero-text { padding: 48px 24px 56px; }
  .hero-scroll-hint { display: none; }
  section { padding: 72px 24px; }
  #writing .articles-grid { grid-template-columns: 1fr; }
  .article-card:nth-child(odd) { padding-right: 0; }
  .article-card:nth-child(even) { padding-left: 0; }
  .reader-inner { padding: 48px 24px 64px; }
  #edu-lang { grid-template-columns: 1fr; }
  #edu-lang > div { padding: 72px 24px; }
  .cert-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .cert-item:nth-child(even) { padding-left: 0; }
  footer { padding: 40px 24px; }
}
