/*
Theme Name: Aimahdi
Theme URI: https://aimahdi.com/
Author: Amimul Ihsan
Author URI: https://aimahdi.com/
Description: Clean teal & white WordPress theme for aimahdi.com/blog — matches the main portfolio design exactly with DM Serif Display, DM Sans, and JetBrains Mono fonts.
Version: 4.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aimahdi
Tags: clean, teal, modern, blog, two-columns, right-sidebar, accessibility-ready, custom-colors, custom-menu, featured-images, microformats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* ── TEST: CSS IS LOADING ── */
body { background: #ff0000 !important; }

/* ── DESIGN TOKENS ── */
:root {
  /* Teal palette */
  --t:   #007a7a;
  --td:  #005f5f;
  --tm:  #009898;
  --tl:  #daf0f0;
  --tp:  #f0fafa;
  --tbb: rgba(0,122,122,.08);

  /* Neutrals */
  --w:   #ffffff;
  --off: #f7f9f9;
  --g50: #f2f5f5;
  --g100:#e3ebeb;
  --g200:#c5d5d5;
  --g300:#97b3b3;
  --g400:#6a9090;
  --g600:#384f4f;
  --g800:#1c3030;
  --blk: #0b1e1e;

  /* Amber accent (awards) */
  --am:  #b8710a;
  --aml: #fff7e6;
  --amt: #7c4a05;

  /* Type */
  --fd: 'DM Serif Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fm: 'JetBrains Mono', monospace;

  /* Layout */
  --nav: 68px;
  --r:   6px;
  --rl:  12px;
  --xl:  1200px;

  /* Shadows */
  --sh:  0 1px 4px rgba(0,100,100,.06), 0 1px 2px rgba(0,0,0,.04);
  --shm: 0 4px 20px rgba(0,122,122,.10), 0 2px 8px rgba(0,0,0,.04);
  --shl: 0 16px 48px rgba(0,122,122,.13), 0 4px 16px rgba(0,0,0,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #ffffff !important;
  color: var(--g800);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--t); text-decoration: none; transition: color .15s; }
a:hover { color: var(--tm); }

.wrap { max-width: var(--xl); margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--g100);
  height: var(--nav);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,100,100,.08); }
.nav-i {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--xl); margin: 0 auto; padding: 0 32px; gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; background: var(--t);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: .95rem; color: #fff; letter-spacing: -.01em;
  box-shadow: 0 2px 8px rgba(0,122,122,.25);
}
.logo-txt { font-family: var(--fd); font-size: 1.05rem; color: var(--blk); line-height: 1.1; }
.logo-txt small {
  display: block; font-family: var(--fb); font-size: .59rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--t);
}

/* Desktop nav */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 7px 13px; font-size: .84rem; font-weight: 500;
  color: var(--g600); border-radius: var(--r);
  transition: all .15s; display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--t); background: var(--tp); }
.nav-links > li > a.has-dd::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; opacity: .5; margin-left: 2px;
}

/* Dropdown */
.nav-dd {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--w); border: 1px solid var(--g100); border-radius: var(--rl);
  box-shadow: var(--shl); min-width: 200px; overflow: hidden; z-index: 999;
}
.nav-links > li:hover .nav-dd { display: block; }
.nav-dd a {
  display: block; padding: 9px 16px; font-size: .84rem; color: var(--g600);
  transition: all .12s;
}
.nav-dd a:hover { color: var(--t); background: var(--tp); }

.nav-cta {
  flex-shrink: 0; padding: 9px 22px;
  background: var(--t); color: #fff; font-size: .84rem; font-weight: 600;
  border-radius: var(--r); transition: all .18s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,122,122,.22);
}
.nav-cta:hover { background: var(--td); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,122,122,.3); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: var(--g50); border: 1px solid var(--g100);
  border-radius: var(--r); cursor: pointer; flex-shrink: 0;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--g600); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none !important; position: fixed; top: var(--nav); left: 0; right: 0; bottom: 0;
  background: var(--w); z-index: 890; overflow-y: auto; border-top: 1px solid var(--g100);
}
.mob-menu.open { display: block !important; }
.mob-menu ul { list-style: none; padding: 8px 0; margin: 0; }
.mob-menu ul li a {
  display: block; padding: 14px 28px; font-size: 1rem;
  font-weight: 500; color: var(--g800); border-bottom: 1px solid var(--g50);
  text-decoration: none;
}
.mob-menu ul li a:hover { color: var(--t); background: var(--tp); }
.mob-menu .mob-sub {
  display: none; padding-left: 20px; background: var(--tp);
}
.mob-menu .mob-sub.open { display: block; }
.mob-menu .mob-sub a {
  padding: 12px 28px; font-size: .9rem; color: var(--g600);
}
.mobile-cta-wrap { padding: 16px 0; }
.mob-cta {
  display: block; margin: 0 28px; padding: 13px;
  background: var(--t); color: #fff; text-align: center;
  border-radius: var(--r); font-weight: 600; font-size: .95rem;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav));
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--g100);
  position: relative; overflow: hidden;
}

/* Subtle geometric BG */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0,122,122,.045) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(0,122,122,.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-l {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 0;
  border-right: 1px solid var(--g100);
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border: 1px solid var(--tl);
  border-radius: 999px; font-family: var(--fm); font-size: .63rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--t); background: var(--tp); margin-bottom: 28px; align-self: flex-start;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--t); display: block; animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

h1.hero-name {
  font-family: var(--fd); font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  font-weight: 400; line-height: .95; color: var(--blk); margin-bottom: 12px;
  letter-spacing: -.02em;
}
h1.hero-name em { font-style: italic; color: var(--t); }

.hero-role {
  font-family: var(--fm); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--g400); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-role::after { content: ''; height: 1px; width: 36px; background: var(--g200); }

.hero-bio {
  font-size: 1.05rem; color: var(--g600); line-height: 1.82;
  max-width: 450px; margin-bottom: 36px;
}
.hero-bio strong { color: var(--blk); font-weight: 600; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-p {
  padding: 12px 28px; background: var(--t); color: #fff;
  font-weight: 600; font-size: .9rem; border-radius: var(--r);
  transition: all .18s; box-shadow: 0 2px 10px rgba(0,122,122,.22);
}
.btn-p:hover { background: var(--td); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,122,122,.3); }

.btn-s {
  padding: 12px 28px; border: 1.5px solid var(--g200);
  color: var(--g600); font-weight: 600; font-size: .9rem; border-radius: var(--r); transition: all .18s;
}
.btn-s:hover { border-color: var(--t); color: var(--t); background: var(--tp); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--fm); font-size: .61rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 11px;
  border: 1px solid var(--tl); color: var(--t); background: var(--tp); border-radius: 999px;
}

.hero-r {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 80px 64px; gap: 24px; position: relative; z-index: 1;
}

/* Stat grid — the "mockup" style */
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 2px solid var(--t); border-radius: var(--rl);
  overflow: hidden; box-shadow: var(--shm);
}
.stat-box {
  background: var(--w); padding: 28px 24px;
  transition: background .18s;
  border-right: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
}
.stat-box:nth-child(even) { border-right: none; }
.stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
.stat-box:hover { background: var(--tp); }
.stat-n {
  font-family: var(--fd); font-size: 3rem; font-weight: 400;
  color: var(--t); line-height: 1; display: block; margin-bottom: 5px;
}
.stat-l {
  font-family: var(--fm); font-size: .62rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--g400);
}

.hero-quote {
  border-left: 3px solid var(--t); padding: 18px 22px;
  background: var(--tp); border-radius: 0 var(--rl) var(--rl) 0;
  font-size: .95rem; color: var(--g600); line-height: 1.8; font-style: italic;
  box-shadow: var(--sh);
}
.hero-quote strong { color: var(--t); font-style: normal; font-weight: 600; }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden; padding: 13px 0;
  background: var(--t);
  border-bottom: 2px solid var(--td);
}
.marquee-track {
  display: flex; width: max-content;
  animation: mq 40s linear infinite;
}
.marquee-item {
  white-space: nowrap; padding: 0 24px;
  font-family: var(--fm); font-size: .64rem; letter-spacing: .1em;
  color: rgba(255,255,255,.75); text-transform: uppercase;
  display: flex; align-items: center; gap: 24px;
}
.mdot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.35); display: inline-block; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
section { border-bottom: 1px solid var(--g100); }
.sec { padding: 88px 0; }
.sec-alt { background: var(--off); }

.sec-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: .61rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--t); margin-bottom: 18px;
}
.sec-label::after { content: ''; width: 28px; height: 1px; background: var(--t); opacity: .45; }

h2.sec-h {
  font-family: var(--fd); font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400; color: var(--blk); line-height: 1.1; margin-bottom: 12px;
}
h2.sec-h em { font-style: italic; color: var(--t); }
.sec-sub { font-size: 1rem; color: var(--g600); max-width: 520px; line-height: 1.8; margin-bottom: 48px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 72px; align-items: start; }
.about-body p { font-size: 1rem; color: var(--g600); line-height: 1.88; margin-bottom: 1.2em; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--blk); font-weight: 600; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); padding: 24px; box-shadow: var(--sh);
  transition: box-shadow .2s, border-color .2s;
}
.info-card:hover { box-shadow: var(--shm); border-color: var(--g200); }
.card-head {
  font-family: var(--fm); font-size: .61rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.card-head::before { content: ''; width: 8px; height: 8px; background: var(--t); border-radius: 2px; display: block; }

.beyond-item { padding: 10px 0; border-bottom: 1px solid var(--g50); }
.beyond-item:last-child { border-bottom: none; padding-bottom: 0; }
.beyond-t { font-size: .9rem; font-weight: 600; color: var(--g800); margin-bottom: 2px; }
.beyond-d { font-size: .82rem; color: var(--g400); }

.impact-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--g50); }
.impact-row:last-child { border-bottom: none; }
.impact-org { font-size: .88rem; color: var(--g600); }
.impact-val { font-family: var(--fd); font-size: 1.4rem; color: var(--t); }

/* ── STATS BAND ── */
.stats-band { background: var(--t); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid rgba(255,255,255,.14);
  max-width: var(--xl); margin: 0 auto;
}
.stat-band-box {
  padding: 40px 32px; border-right: 1px solid rgba(255,255,255,.14);
  transition: background .2s;
}
.stat-band-box:hover { background: rgba(255,255,255,.07); }
.stat-band-n { font-family: var(--fd); font-size: 3.2rem; color: #fff; line-height: 1; display: block; margin-bottom: 5px; }
.stat-band-l { font-family: var(--fm); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); }

/* ── COMPETITIVE PROGRAMMING ── */
.cp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cp-card {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); padding: 24px; box-shadow: var(--sh);
  transition: all .2s;
}
.cp-card:hover { border-color: var(--t); box-shadow: var(--shm); transform: translateY(-3px); }
.cp-platform { font-family: var(--fm); font-size: .72rem; font-weight: 500; color: var(--g400); margin-bottom: 10px; }
.cp-n { font-family: var(--fd); font-size: 2.2rem; color: var(--t); line-height: 1; margin-bottom: 3px; }
.cp-l { font-size: .78rem; color: var(--g400); }

/* ── EXPERIENCE ── */
.exp-company {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--sh); transition: box-shadow .2s;
}
.exp-company:hover { box-shadow: var(--shm); }
.exp-co-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px; background: var(--tp); border-bottom: 1px solid var(--tl);
}
.exp-co-name { font-family: var(--fd); font-size: 1.25rem; color: var(--blk); }
.exp-co-meta { font-family: var(--fm); font-size: .64rem; color: var(--g400); letter-spacing: .05em; margin-top: 3px; }
.cur-badge {
  font-family: var(--fm); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; background: var(--t); color: #fff; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,122,122,.25);
}
.exp-role { padding: 20px 26px; border-bottom: 1px solid var(--g50); }
.exp-role:last-child { border-bottom: none; }
.exp-role-hd { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; flex-wrap: wrap; gap: 6px; }
.exp-role-title { font-size: .95rem; font-weight: 600; color: var(--blk); }
.exp-role-date { font-family: var(--fm); font-size: .64rem; color: var(--t); letter-spacing: .05em; }
.exp-bullets { list-style: none; margin-bottom: 14px; }
.exp-bullets li { font-size: .88rem; color: var(--g600); line-height: 1.72; padding: .2rem 0 .2rem 1.3rem; position: relative; }
.exp-bullets li::before { content: '›'; position: absolute; left: 0; color: var(--t); font-size: 1.1rem; line-height: 1.4; }
.awards-row { display: flex; flex-wrap: wrap; gap: 6px; }
.award-chip {
  font-family: var(--fm); font-size: .59rem; letter-spacing: .05em;
  padding: 4px 10px; border: 1px solid var(--am); color: var(--amt);
  background: var(--aml); border-radius: 999px;
}
.award-chip::before { content: '★ '; }

/* ── EDUCATION ── */
.edu-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--g100);
  border: 1px solid var(--g100); border-radius: var(--rl); overflow: hidden;
}
.edu-card { background: var(--w); padding: 26px 22px; transition: background .18s; }
.edu-card:hover { background: var(--tp); }
.edu-year { font-family: var(--fm); font-size: .64rem; color: var(--t); letter-spacing: .08em; margin-bottom: 10px; }
.edu-deg { font-family: var(--fd); font-size: 1.05rem; color: var(--blk); line-height: 1.3; margin-bottom: 5px; }
.edu-inst { font-size: .8rem; color: var(--g400); line-height: 1.4; margin-bottom: 14px; }
.edu-grade { font-family: var(--fd); font-size: 2rem; color: var(--t); line-height: 1; display: block; margin-bottom: 3px; }
.edu-gl { font-family: var(--fm); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--g400); }
.edu-special { font-size: .82rem; color: var(--t); font-style: italic; }

/* ── CERTS ── */
.cert-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.cert-item {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 20px;
  align-items: center; padding: 16px 22px;
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); transition: all .18s;
}
.cert-item:hover { border-color: var(--t); box-shadow: var(--shm); }
.cert-item.latest { border-color: var(--am); background: var(--aml); }
.cert-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--tl);
  border: 1px solid var(--g200); display: flex; align-items: center;
  justify-content: center; font-size: .9rem; color: var(--t); flex-shrink: 0;
}
.cert-name { font-size: .92rem; font-weight: 600; color: var(--blk); margin-bottom: 3px; }
.cert-meta { font-family: var(--fm); font-size: .64rem; color: var(--g400); letter-spacing: .04em; }
.cert-val { font-family: var(--fd); font-size: 1.5rem; color: var(--t); text-align: right; line-height: 1; display: block; margin-bottom: 2px; }
.cert-break { font-family: var(--fm); font-size: .59rem; color: var(--g400); text-align: right; letter-spacing: .04em; }
.latest-tag {
  font-family: var(--fm); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 7px; background: var(--am); color: #fff; border-radius: 3px;
  vertical-align: middle; margin-left: 6px;
}

/* ── CASE STUDIES ── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card {
  background: var(--w); border: 1px solid var(--g100); border-radius: var(--rl);
  padding: 26px; box-shadow: var(--sh); display: flex; flex-direction: column;
  transition: all .22s;
}
.case-card:hover { border-color: var(--t); box-shadow: var(--shm); transform: translateY(-3px); }
.case-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.case-tag {
  font-family: var(--fm); font-size: .59rem; letter-spacing: .05em;
  padding: 3px 9px; border: 1px solid var(--g100); color: var(--g600);
  border-radius: 4px; background: var(--g50);
}
.case-title { font-family: var(--fd); font-size: 1.08rem; color: var(--blk); margin-bottom: 18px; line-height: 1.3; }
.case-sec { margin-bottom: 11px; }
.case-sec-l { font-family: var(--fm); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t); margin-bottom: 3px; }
.case-sec-t { font-size: .85rem; color: var(--g600); line-height: 1.72; }
.case-impact {
  background: var(--tp); border: 1px solid var(--tl); border-radius: var(--r);
  padding: 11px 15px; margin-top: 14px;
}
.case-impact-l { font-family: var(--fm); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t); margin-bottom: 3px; }
.case-impact-t { font-size: .85rem; color: var(--g800); line-height: 1.6; }

/* ── SKILLS ── */
.skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.skill-cat {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); padding: 20px; box-shadow: var(--sh);
}
.skill-cat.wp {
  grid-column: span 3; display: grid; grid-template-columns: 1fr 2.2fr; gap: 28px;
  background: var(--tp); border-color: var(--tl);
}
.skill-cat-h { font-family: var(--fm); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; color: var(--t); margin-bottom: 4px; }
.skill-cat-s { font-size: .78rem; color: var(--g400); margin-bottom: 14px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-family: var(--fm); font-size: .63rem; padding: 4px 11px;
  background: var(--g50); border: 1px solid var(--g100); color: var(--g600);
  border-radius: 999px; transition: all .15s; cursor: default;
}
.pill:hover, .pill.hi { background: var(--tl); border-color: var(--g200); color: var(--t); }

/* ── AWARDS ── */
.awards-layout { display: grid; grid-template-columns: 1fr 2.2fr; gap: 28px; }
.ind-award {
  background: var(--t); border-radius: var(--rl); padding: 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,122,122,.25);
}
.ind-award::before {
  content: '★'; position: absolute; top: -20px; right: 12px;
  font-size: 8rem; color: rgba(255,255,255,.07); line-height: 1;
}
.ind-badge {
  font-family: var(--fm); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; color: rgba(255,255,255,.9); display: inline-block; margin-bottom: 18px;
}
.ind-year { font-family: var(--fd); font-size: 3.8rem; color: #fff; line-height: 1; display: block; margin-bottom: 8px; }
.ind-title { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.ind-desc { font-size: .87rem; color: rgba(255,255,255,.75); line-height: 1.7; font-style: italic; }

.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--g100); border: 1px solid var(--g100);
  border-radius: var(--rl); overflow: hidden;
}
.team-card { background: var(--w); padding: 20px; transition: background .18s; }
.team-card:hover { background: var(--tp); }
.team-year { font-family: var(--fm); font-size: .64rem; color: var(--t); letter-spacing: .08em; margin-bottom: 6px; }
.team-title { font-size: .9rem; font-weight: 600; color: var(--blk); margin-bottom: 4px; line-height: 1.35; }
.team-role { font-size: .8rem; color: var(--g400); line-height: 1.5; }
.team-note { font-size: .75rem; color: var(--am); font-style: italic; margin-top: 5px; }

/* ── TESTIMONIALS ── */
.test-featured {
  background: var(--tp); border: 1px solid var(--tl);
  border-radius: var(--rl); padding: 40px;
  position: relative; overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--sh);
}
.test-featured::before {
  content: '\201C'; position: absolute; top: 8px; right: 28px;
  font-family: var(--fd); font-size: 8rem; color: rgba(0,122,122,.09); line-height: 1;
}
.test-tag { font-family: var(--fm); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t); margin-bottom: 18px; }
.test-body { font-family: var(--fd); font-size: 1.08rem; font-style: italic; color: var(--g600); line-height: 1.88; max-width: 660px; margin-bottom: 24px; }
.test-body strong { color: var(--t); font-style: normal; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-ava {
  width: 44px; height: 44px; border-radius: 50%; background: var(--t);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.test-name { font-size: .9rem; font-weight: 600; color: var(--blk); }
.test-meta { font-family: var(--fm); font-size: .64rem; color: var(--g400); letter-spacing: .03em; }
.test-stars { color: var(--am); font-size: .85rem; margin-top: 3px; }

.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.test-card {
  background: var(--w); border: 1px solid var(--g100); border-radius: var(--rl);
  padding: 22px; box-shadow: var(--sh); display: flex; flex-direction: column; gap: 14px;
  transition: all .2s;
}
.test-card:hover { border-color: var(--t); box-shadow: var(--shm); transform: translateY(-2px); }
.test-card-body { font-size: .88rem; color: var(--g600); line-height: 1.78; font-style: italic; flex: 1; }
.test-card-body strong { color: var(--t); font-style: normal; }
.test-card-author { font-family: var(--fm); font-size: .64rem; color: var(--g400); letter-spacing: .03em; }
.test-card-stars { color: var(--am); font-size: .78rem; }
.test-link {
  font-family: var(--fm); font-size: .61rem; letter-spacing: .06em; color: var(--t);
  border-bottom: 1px solid var(--tl); padding-bottom: 1px; transition: border-color .15s; display: inline-block;
}
.test-link:hover { border-color: var(--t); }

/* ── BLOG CTA ── */
.blog-cta-block {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  background: var(--tp); border: 1px solid var(--tl);
  border-radius: var(--rl); padding: 40px 44px; align-items: center;
  box-shadow: var(--sh);
}
.blog-cta-left { display: flex; flex-direction: column; gap: 20px; }
.blog-cta-topics { display: flex; flex-wrap: wrap; gap: 7px; }
.blog-topic-pill {
  font-family: var(--fm); font-size: .61rem; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 11px;
  border: 1px solid var(--tl); color: var(--t); background: var(--w);
  border-radius: 999px;
}
.blog-cta-h {
  font-family: var(--fd); font-size: 1.35rem; color: var(--blk);
  line-height: 1.3; font-weight: 400;
}
.blog-cta-desc { font-size: .95rem; color: var(--g600); line-height: 1.78; }
.blog-cta-right {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--g100); border: 1px solid var(--g100);
  border-radius: var(--rl); overflow: hidden;
}
.blog-cta-stat {
  background: var(--w); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background .15s;
}
.blog-cta-stat:hover { background: var(--tl); }
.blog-cta-stat-n {
  font-family: var(--fd); font-size: 1.9rem; color: var(--t);
  line-height: 1;
}
.blog-cta-stat-l { font-size: .8rem; color: var(--g600); line-height: 1.4; }

@media (max-width: 768px) {
  .blog-cta-block { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; }
}

/* ── BLOG HERO ── */
.blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--tp) 0%, var(--w) 100%);
  border-bottom: 1px solid var(--g100);
  text-align: center;
}
.blog-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border: 1px solid var(--tl);
  border-radius: 999px; font-family: var(--fm); font-size: .63rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--t); background: var(--tp); margin-bottom: 20px;
}
.blog-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--blk);
  margin-bottom: 16px;
  line-height: 1.1;
}
.blog-hero__sub {
  font-size: 1.1rem;
  color: var(--g600);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.blog-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.bh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bh-stat strong {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--t);
}
.bh-stat span {
  font-family: var(--fm);
  font-size: .64rem;
  color: var(--g400);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── POST GRID ── */
.posts-wrap {
  background: var(--w);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.post-card {
  background: var(--w);
  border: 1px solid var(--g100);
  border-radius: var(--rl);
  overflow: hidden;
  transition: all .22s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--t);
  box-shadow: var(--shm);
  transform: translateY(-3px);
}
.post-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.post-card--featured .pc-thumb {
  height: 100%;
  min-height: 320px;
}

.pc-thumb {
  width: 100%;
  height: 200px;
  background: var(--g50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g50);
}

.pc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.pc-cat {
  font-family: var(--fm);
  font-size: .59rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--tp);
  color: var(--t);
  border-radius: 999px;
  text-decoration: none;
}
.pc-cat:hover {
  background: var(--tl);
}

.pc-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  color: var(--blk);
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-card--featured .pc-title {
  font-size: 1.6rem;
}
.pc-title a {
  color: var(--blk);
  text-decoration: none;
}
.pc-title a:hover {
  color: var(--t);
}

.pc-excerpt {
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--g50);
}
.pc-date {
  font-family: var(--fm);
  font-size: .64rem;
  color: var(--g400);
}
.pc-read {
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  color: var(--t);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pc-read:hover {
  color: var(--td);
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--g600);
}

/* ── FADE UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── TRAVEL ── */
.travel-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1px;
  background: var(--g100); border: 1px solid var(--g100);
  border-radius: var(--rl); overflow: hidden; margin-bottom: 16px;
}
.travel-card { background: var(--w); padding: 24px 18px; text-align: center; transition: background .18s; }
.travel-card:hover { background: var(--tp); }
.travel-flag { font-size: 2.2rem; margin-bottom: 10px; }
.travel-country { font-family: var(--fd); font-size: 1rem; color: var(--blk); margin-bottom: 4px; }
.travel-date { font-family: var(--fm); font-size: .62rem; color: var(--t); letter-spacing: .06em; margin-bottom: 9px; }
.travel-places { font-size: .78rem; color: var(--g400); line-height: 1.55; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); overflow: hidden; transition: border-color .18s;
}
.faq-item.open { border-color: var(--t); box-shadow: var(--sh); }
.faq-q {
  padding: 17px 22px; font-size: .95rem; font-weight: 500; color: var(--g800);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: background .15s; user-select: none;
}
.faq-q:hover { background: var(--tp); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--g200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .9rem; color: var(--g400); transition: all .22s;
}
.faq-item.open .faq-icon { background: var(--t); border-color: var(--t); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 22px 17px;
  font-size: .9rem; color: var(--g600); line-height: 1.78;
  border-top: 1px solid var(--tl); padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ── PAGE LAYOUT ── */
.page-wrap {
  padding: 60px 0;
}
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
.page-layout main {
  min-width: 0;
}

.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--g100);
}
.page-header__title {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--blk);
  line-height: 1.2;
}

.entry-content {
  font-size: 1.05rem;
  color: var(--g600);
  line-height: 1.8;
}
.entry-content h2 {
  font-family: var(--fd);
  font-size: 1.8rem;
  color: var(--blk);
  margin: 32px 0 16px;
}
.entry-content h3 {
  font-size: 1.25rem;
  color: var(--blk);
  margin: 24px 0 12px;
  font-weight: 600;
}
.entry-content p {
  margin-bottom: 1.2em;
}
.entry-content ul,
.entry-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}
.entry-content li {
  margin-bottom: .5em;
}
.entry-content a {
  color: var(--t);
  text-decoration: underline;
}
.entry-content a:hover {
  color: var(--tm);
}

/* ── SIDEBAR & WIDGETS ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget {
  background: var(--w);
  border: 1px solid var(--g100);
  border-radius: var(--rl);
  overflow: hidden;
}
.widget__head {
  padding: 16px 20px;
  background: var(--tp);
  border-bottom: 1px solid var(--tl);
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t);
}
.widget__body {
  padding: 20px;
}

.widget--author {
  background: var(--tp);
  border-color: var(--tl);
}
.widget--author .widget__body {
  text-align: center;
  padding: 28px 24px;
}
.author-ava {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--t);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,122,122,.25);
}
.author-name {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--blk);
  margin-bottom: 4px;
}
.author-role {
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t);
  margin-bottom: 16px;
}
.author-bio {
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.author-home {
  display: inline-block;
  padding: 10px 20px;
  background: var(--t);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--r);
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0,122,122,.22);
}
.author-home:hover {
  background: var(--td);
  color: #fff;
}

.w-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.w-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--g50);
}
.w-cat-item:last-child {
  border-bottom: none;
}
.w-cat-item a {
  color: var(--g800);
  text-decoration: none;
  font-size: .9rem;
}
.w-cat-item a:hover {
  color: var(--t);
}
.w-cat-count {
  font-family: var(--fm);
  font-size: .7rem;
  color: var(--g400);
  background: var(--g50);
  padding: 3px 8px;
  border-radius: 999px;
}

.sidebar .search-form {
  display: flex;
  gap: 8px;
}
.sidebar .search-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  font-size: .88rem;
}
.sidebar .search-form button {
  padding: 10px 16px;
  background: var(--t);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-h { font-family: var(--fd); font-size: 2.1rem; color: var(--blk); line-height: 1.15; margin-bottom: 14px; }
.contact-h em { font-style: italic; color: var(--t); }
.contact-sub { font-size: .95rem; color: var(--g600); line-height: 1.78; margin-bottom: 28px; }
.contact-rows { margin-bottom: 28px; }
.contact-row { display: flex; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--g100); }
.contact-row:first-child { border-top: 1px solid var(--g100); }
.ck { font-family: var(--fm); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; color: var(--g400); min-width: 72px; flex-shrink: 0; }
.cv { font-size: .9rem; color: var(--g800); }
.cv a { color: var(--t); }
.social-g { margin-top: 22px; }
.social-g-h { font-family: var(--fm); font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g400); margin-bottom: 9px; }
.social-links { display: flex; flex-wrap: wrap; gap: 6px; }
.social-link {
  font-family: var(--fm); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border: 1px solid var(--g200); color: var(--g600);
  border-radius: 999px; transition: all .15s;
}
.social-link:hover { border-color: var(--t); color: var(--t); background: var(--tp); }

.contact-form {
  background: var(--w); border: 1px solid var(--g100);
  border-radius: var(--rl); padding: 32px; box-shadow: var(--shl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-g { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-g label { font-family: var(--fm); font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; color: var(--g600); }
.form-g input, .form-g textarea {
  padding: 11px 15px; border: 1.5px solid var(--g200); border-radius: var(--r);
  font-family: var(--fb); font-size: .9rem; color: var(--blk); background: var(--w);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-g input:focus, .form-g textarea:focus {
  border-color: var(--t); box-shadow: 0 0 0 3px rgba(0,122,122,.09);
}
.form-g textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 13px; background: var(--t); color: #fff;
  font-family: var(--fb); font-size: .92rem; font-weight: 600; border: none;
  border-radius: var(--r); cursor: pointer; transition: all .18s;
  box-shadow: 0 2px 10px rgba(0,122,122,.22);
}
.form-submit:hover { background: var(--td); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,122,122,.3); }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination a,
.pagination span {
  padding: 8px 14px;
  border: 1px solid var(--g100);
  border-radius: var(--r);
  font-size: .88rem;
  color: var(--g600);
  transition: all .15s;
  display: block;
}
.pagination a:hover {
  border-color: var(--t);
  color: var(--t);
  background: var(--tp);
}
.pagination .current {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}

/* ── SEARCH FORM ── */
.search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  font-size: .9rem;
  font-family: var(--fb);
  color: var(--blk);
  outline: none;
  transition: border-color .15s;
}
.search-field:focus {
  border-color: var(--t);
  box-shadow: 0 0 0 3px rgba(0,122,122,.09);
}
.search-submit {
  padding: 12px 24px;
  background: var(--t);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .18s;
  box-shadow: 0 2px 8px rgba(0,122,122,.22);
  white-space: nowrap;
}
.search-submit:hover {
  background: var(--td);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,122,122,.3);
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  background: var(--g800);
  border-top: 3px solid var(--t);
}
.foot-i { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot-brand { font-family: var(--fd); font-size: 1.05rem; color: #fff; }
.foot-brand span { color: rgba(0,190,190,.9); }
.foot-copy { font-family: var(--fm); font-size: .59rem; color: rgba(255,255,255,.28); letter-spacing: .05em; }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-family: var(--fm); font-size: .62rem; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; transition: color .15s; }
.foot-links a:hover { color: rgba(0,190,190,.9); }

/* ── HELPERS ── */
.view-all {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
  padding: 11px 24px; border: 1.5px solid var(--t); color: var(--t);
  font-size: .86rem; font-weight: 600; border-radius: var(--r); transition: all .18s;
}
.view-all:hover { background: var(--t); color: #fff; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.vis { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-l { border-right: none; border-bottom: 1px solid var(--g100); padding: 60px 0 44px; }
  .hero-r { padding: 44px 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .awards-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .cp-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .skill-cat.wp { grid-column: span 2; grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .travel-grid { grid-template-columns: repeat(3,1fr); }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .post-card--featured .pc-thumb {
    height: 240px;
  }
  .blog-hero__stats {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  :root { --nav: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .wrap { padding: 0 18px; }
  .sec { padding: 60px 0; }
  h2.sec-h { font-size: 1.8rem; }
  .hero-l { padding: 48px 0 36px; }
  .hero-r { padding: 32px 0 52px; }
  h1.hero-name { font-size: 2.8rem; }
  .case-grid, .team-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .cp-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card--featured {
    grid-column: span 1;
  }
  .blog-hero {
    padding: 48px 0 32px;
  }
  .blog-hero h1 {
    font-size: 2rem;
  }
  .blog-hero__stats {
    flex-direction: column;
    gap: 24px;
  }
  .form-row { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-cat.wp { grid-column: span 1; grid-template-columns: 1fr; }
  .foot-i { flex-direction: column; align-items: flex-start; }
  .foot-links { display: none; }
}
