/* ===================================================
   CSS Custom Properties (Design Tokens)
   =================================================== */
:root {
  /* Colors - Coffee Milk Light Mode */
  --bg: #faf6f0;
  --bg-alt: #f2e8da;
  --bg-card: #fffcf8;
  --text: #2c1810;
  --text-muted: #7a5c45;
  --text-light: #b09278;
  --border: #e8d8c4;
  --accent: #b5722a;
  --accent-dark: #8b5219;
  --accent-light: #fdf0de;
  --accent-2: #c4895a;
  --success: #5a8a3a;
  --shadow-sm: 0 1px 3px rgba(44,24,16,0.08), 0 1px 2px rgba(44,24,16,0.04);
  --shadow-md: 0 4px 16px rgba(44,24,16,0.10), 0 2px 6px rgba(44,24,16,0.06);
  --shadow-lg: 0 10px 40px rgba(44,24,16,0.13), 0 4px 12px rgba(44,24,16,0.07);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-full: 9999px;
  --nav-height: 64px;

  /* Hero gradient — warm milk foam */
  --hero-gradient: linear-gradient(135deg, #fdf6ee 0%, #f5e8d5 50%, #fef9f4 100%);
}

[data-theme="dark"] {
  /* Colors - Espresso Dark Mode */
  --bg: #1c1008;
  --bg-alt: #261509;
  --bg-card: #2e1a0c;
  --text: #f5ece0;
  --text-muted: #c4a07a;
  --text-light: #8a6a4a;
  --border: #4a2e18;
  --accent: #e0a060;
  --accent-dark: #c4864a;
  --accent-light: #3a2010;
  --accent-2: #d4895a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --hero-gradient: linear-gradient(135deg, #1c1008 0%, #2e1a0c 50%, #1a0e06 100%);
}

/* ===================================================
   Reset & Base
   =================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; }

/* ===================================================
   Utility
   =================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* ===================================================
   Reveal Animations (IntersectionObserver driven)
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ===================================================
   Navbar
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  font-family: inherit;
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-en-label,
.lang-vi-label {
  transition: color 0.2s;
}

.lang-toggle.lang-vi .lang-vi-label,
.lang-toggle.lang-en .lang-en-label {
  color: var(--accent);
  font-weight: 700;
}

.lang-sep { opacity: 0.4; }

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Share menu */
.share-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  z-index: 200;
  overflow: hidden;
}

.share-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.share-menu-item:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.share-menu-item i {
  width: 16px;
  text-align: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.share-menu-item:hover i {
  color: var(--accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================================
   Hero
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  z-index: -1;
  transition: background 0.4s ease;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181,114,42,0.13) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,137,90,0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: heroIn 0.8s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-greeting {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-name {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-typewriter {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--accent);
  min-height: 2em;
  margin-bottom: 20px;
}

.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  font-weight: 300;
  opacity: 0.7;
}

@keyframes blink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0; }
}

.hero-lead {
  font-size: 1.11rem;
  font-weight: 600;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,114,42,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-download {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  font-family: inherit;
}

.btn-download:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,114,42,0.32);
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}

.scroll-down:hover { color: var(--accent); }

/* Scroll to top (fixed) */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   Sections
   =================================================== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===================================================
   About
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  width: 100%;
}

.stat-pill {
  background: var(--accent-light);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  font-weight: 500;
}

.stat-pill-highlight {
  border-width: 2px;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(145deg, var(--accent-light) 0%, color-mix(in srgb, var(--bg-card) 70%, var(--accent-light)) 100%);
  box-shadow: var(--shadow-sm);
}

.stat-pill-highlight .stat-number {
  font-size: 1.65rem;
}

/* Education block under About (not part of Experience timeline) */
.about-education {
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-education-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.about-education-inner.timeline-card {
  margin-bottom: 0;
}

.about-education-desc {
  margin-top: 4px;
  margin-bottom: 4px;
}

.about-education-desc p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.about-education-desc p:last-child {
  margin-bottom: 0;
}

.about-education-lead {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 16px !important;
}

/* Avatar */
.about-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.avatar-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
}

.avatar-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.avatar-initials {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  opacity: 0.3;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.about-badges a {
  text-decoration: none;
  display: block;
  min-width: 0;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-badges a .badge {
  height: 100%;
}

.about-badges a:hover {
  transform: translateX(4px);
}

.about-badges a:hover .badge {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.badge i {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.about-badges a:hover .badge i {
  transform: scale(1.2);
}

/* ===================================================
   Timeline
   =================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.timeline-role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.timeline-bullets {
  margin-bottom: 14px;
}

.timeline-bullets li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.6;
}

.timeline-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 4px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-tags span {
  font-size: 0.75rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-weight: 500;
}

/* Education row inside Experience timeline */
.timeline-header--edu {
  align-items: flex-start;
}

.timeline-edu-main,
.timeline-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.timeline-edu-logo-link,
.timeline-brand-logo-link {
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.timeline-edu-logo-link:hover,
.timeline-brand-logo-link:hover {
  opacity: 0.92;
}

.timeline-edu-logo-link:focus-visible,
.timeline-brand-logo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.timeline-edu-logo,
.timeline-brand-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: color-mix(in srgb, var(--text) 11%, #efefef);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .timeline-edu-logo,
[data-theme="dark"] .timeline-brand-logo {
  background: color-mix(in srgb, #ffedd8 26%, #75706d);
}

.timeline-edu-logo img,
.timeline-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 4px;
}

.timeline-edu-logo-fallback,
.timeline-brand-logo-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.timeline-edu-text,
.timeline-brand-text {
  min-width: 0;
}

.timeline-header--edu .timeline-role {
  line-height: 1.35;
}

.timeline-company-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  transition: color 0.2s, border-color 0.2s;
}

.timeline-company-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.timeline-company-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===================================================
   Impact
   =================================================== */
.section-impact {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--bg)) 0%, var(--bg) 100%);
}

[data-theme="dark"] .section-impact {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, var(--bg)) 0%, var(--bg) 100%);
}

.impact-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.impact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ===================================================
   Awards
   =================================================== */
.awards-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: -36px auto 40px;
  line-height: 1.65;
}

/* NAB Vietnam — My Pivotal Moment (LinkedIn feature, ties to NAB Honour story) */
.award-spotlight {
  display: flex;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto 32px;
  background: color-mix(in srgb, var(--text) 6%, var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}

.award-spotlight:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: color-mix(in srgb, #c8102e 28%, var(--border));
}

.award-spotlight:focus-visible {
  outline: 2px solid #c8102e;
  outline-offset: 3px;
}

.award-spotlight-media {
  flex: 0 0 38%;
  max-width: 300px;
  min-height: 308px;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--text) 10%, var(--bg-alt));
  align-self: stretch;
}

.award-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.award-spotlight-content {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.award-spotlight-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.award-spotlight-quote {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  font-size: clamp(1.02rem, 2.4vw, 1.32rem);
  font-weight: 700;
  line-height: 1.38;
  color: var(--text);
}

.award-spotlight-quote p {
  margin: 0;
}

.award-spotlight-byline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.award-spotlight-byline::before {
  content: '';
  width: 3px;
  align-self: stretch;
  min-height: 2.5rem;
  margin-top: 2px;
  background: #c8102e;
  border-radius: 2px;
  flex-shrink: 0;
}

.award-spotlight-byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.award-spotlight-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.award-spotlight-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.award-spotlight-tag {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c8102e;
  letter-spacing: 0.02em;
}

.award-spotlight-cta {
  margin: 0;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.award-spotlight:hover .award-spotlight-cta {
  text-decoration: underline;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  border-top: 3px solid color-mix(in srgb, #c8102e 55%, var(--accent));
}

.award-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

/* NAB Honour 2023 — highest accolade highlight */
@keyframes honour-shimmer {
  0%   { transform: skewX(-18deg) translateX(-20%); }
  100% { transform: skewX(-18deg) translateX(320%); }
}

.award-card-honour {
  position: relative;
  overflow: hidden;
  border-top: 3px solid #c9960c;
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    color-mix(in srgb, #c9960c 8%, var(--bg-card)) 100%
  );
  box-shadow: var(--shadow-sm), 0 0 18px -4px rgba(201, 150, 12, 0.18);
}

/* Narrow shimmer band only — avoid inset:0 + width:40% (fills card and covers copy in some engines) */
.award-card-honour::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50%;
  width: 45%;
  z-index: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 215, 0, 0.14) 50%,
    transparent 100%
  );
  animation: honour-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

.award-card-honour > *:not(.honour-badge) {
  position: relative;
  z-index: 1;
}

.award-card-honour .honour-badge {
  z-index: 2;
}

.award-card-honour:hover {
  box-shadow: var(--shadow-lg), 0 0 28px -4px rgba(201, 150, 12, 0.38);
  border-color: #c9960c;
  transform: translateY(-6px);
}

.award-card-honour .award-icon {
  background: linear-gradient(135deg, #f5c842, #c9960c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(201, 150, 12, 0.35);
}

.honour-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: linear-gradient(90deg, #c9960c, #f5c842);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(201, 150, 12, 0.4);
}

.award-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, #c8102e 12%, var(--accent-light));
  color: color-mix(in srgb, #c8102e 70%, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.award-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.award-meta {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}

.award-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================================
   Systems + community
   =================================================== */
.systems-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  max-width: 480px;
  margin: -36px auto 40px;
}

.community-block {
  display: block;
}

.community-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 56px 0 28px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.community-grid .project-card-compact {
  padding: 24px 22px;
}

.community-grid .project-desc {
  font-size: 0.85rem;
}

/* ===================================================
   Projects
   =================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.project-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}

.project-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.project-highlights li {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.project-highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.project-highlights li strong {
  color: var(--text);
  font-weight: 600;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  font-size: 0.72rem;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-weight: 500;
}

.project-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 0;
  transition: gap 0.2s;
}

.project-link:hover { gap: 10px; }

/* Featured project card */
.project-card-featured {
  grid-column: 1 / -1;
  border-top: 3px solid var(--accent);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.featured-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 4px;
}

.featured-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 10px;
}

.featured-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.featured-col ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.featured-col ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===================================================
   Tech Stack
   =================================================== */
.stack-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stack-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stack-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.stack-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 56px;
  transition: transform 0.2s;
}

.stack-item:hover { transform: translateY(-3px); }

.stack-item i {
  font-size: 2rem;
}

.stack-item span {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

.stack-fa-icon {
  color: var(--accent) !important;
}

/* ===================================================
   Coffee Cup Illustration
   =================================================== */
.coffee-cup-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 40px;
}

.coffee-svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 6px 18px rgba(181,114,42,0.22));
  transition: filter 0.3s;
}

.coffee-svg:hover {
  filter: drop-shadow(0 10px 28px rgba(181,114,42,0.38));
  transform: translateY(-2px);
}

/* Cup parts — light mode */
.cup-body       { fill: #d4956a; }
.cup-rim        { fill: #c07848; }
.coffee-surface { fill: #6b3a1f; }
.milk-swirl     { stroke: #f5e6d0; }
.cup-handle     { stroke: #c07848; }
.cup-shine      { stroke: rgba(255,255,255,0.35); }
.saucer         { fill: #c07848; }
.saucer-top     { fill: #d4956a; }
.steam-line     { stroke: #c4895a; opacity: 0.75; }

/* Dark mode overrides */
[data-theme="dark"] .cup-body       { fill: #8b5219; }
[data-theme="dark"] .cup-rim        { fill: #6b3a10; }
[data-theme="dark"] .coffee-surface { fill: #3d1f0a; }
[data-theme="dark"] .milk-swirl     { stroke: #c4a07a; }
[data-theme="dark"] .cup-handle     { stroke: #6b3a10; }
[data-theme="dark"] .cup-shine      { stroke: rgba(255,255,255,0.15); }
[data-theme="dark"] .saucer         { fill: #6b3a10; }
[data-theme="dark"] .saucer-top     { fill: #8b5219; }
[data-theme="dark"] .steam-line     { stroke: #e0a060; opacity: 0.6; }

/* Steam rising animation */
@keyframes steam-rise {
  0%   { transform: translateY(0)  scaleX(1);   opacity: 0.75; }
  50%  { transform: translateY(-8px) scaleX(1.15); opacity: 0.45; }
  100% { transform: translateY(-18px) scaleX(0.8);  opacity: 0;    }
}

.steam-line { transform-origin: center bottom; }
.s1 { animation: steam-rise 2.4s ease-in-out infinite; }
.s2 { animation: steam-rise 2.4s ease-in-out infinite 0.6s; }
.s3 { animation: steam-rise 2.4s ease-in-out infinite 1.2s; }

/* ===================================================
   Contact
   =================================================== */
.contact-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: -24px auto 48px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.contact-item i {
  font-size: 1.1rem;
  color: var(--accent);
}

.contact-item:hover {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-qr {
  margin-top: 48px;
  text-align: center;
}

.contact-qr-link {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  line-height: 0;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.contact-qr-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.contact-qr-link img {
  display: block;
  width: 200px;
  height: auto;
}

.contact-qr-caption {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-qr-caption i {
  color: var(--accent);
  font-size: 1rem;
}

/* ===================================================
   Footer
   =================================================== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-sub {
  font-size: 0.8rem;
  margin-top: 4px;
  opacity: 0.7;
}

/* ===================================================
   Responsive: Tablet
   =================================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-avatar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* DOM is text then avatar; pull avatar + badges above copy when single-column */
    order: -1;
  }

  .about-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-groups {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-spotlight {
    flex-direction: column;
    align-items: stretch;
  }

  .award-spotlight-media {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: none;
    min-height: clamp(268px, 70vw, 420px);
    max-height: min(88vh, 760px);
  }

  .award-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 0.82rem;
  }
}

/* ===================================================
   Responsive: Mobile
   =================================================== */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-hamburger { display: flex; }

  .nav-container { flex-wrap: wrap; }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stack-groups {
    grid-template-columns: 1fr;
  }

  .hero-name {
    font-size: 2.6rem;
  }

  .timeline::before { left: 10px; }
  .timeline-item { padding-left: 38px; }
  .timeline-dot { left: 2px; }

  .timeline-card {
    padding: 20px 18px;
  }

  /* Stack header: role/company block, then date on its own row */
  .timeline-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .timeline-header .timeline-brand,
  .timeline-header .timeline-edu-main,
  .timeline-header > div:first-child {
    width: 100%;
    min-width: 0;
  }

  .timeline-date {
    align-self: flex-start;
    white-space: normal;
    max-width: 100%;
    line-height: 1.35;
  }

  .timeline-role {
    font-size: 1rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* ===================================================
   Dark mode devicon overrides
   =================================================== */
[data-theme="dark"] .devicon-java-plain,
[data-theme="dark"] .devicon-spring-plain,
[data-theme="dark"] .devicon-apachekafka-plain,
[data-theme="dark"] .devicon-gradle-plain {
  color: #f5ece0 !important;
}

[data-theme="dark"] .colored {
  filter: brightness(1.1) saturate(0.9);
}

/* ===================================================
   Print (Download CV — no chrome, readable on paper)
   =================================================== */
@page {
  margin: 14mm;
}

@media print {
  :root,
  [data-theme="dark"] {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #444444;
    --text-light: #666666;
    --border: #cccccc;
    --accent: #8b5219;
    --accent-dark: #5c3a12;
    --hero-gradient: #ffffff;
  }

  .navbar,
  .no-print,
  .scroll-down,
  .hero-cta {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .cursor {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: var(--text);
  }

  /* One main section per sheet (after hero) */
  #about,
  #impact,
  #experience,
  #awards,
  #systems,
  #stack,
  #contact {
    break-before: page;
    page-break-before: always;
  }

  /* Keep section headings attached to the block that follows */
  .section-title {
    break-after: avoid;
    page-break-after: avoid;
  }

  /* Keep cards / blocks from splitting across pages */
  .timeline-item,
  .timeline-card,
  .project-card,
  .award-spotlight,
  .award-card,
  .impact-panel,
  .stack-group,
  .contact-qr,
  .contact-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .about-grid {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Keep Education (under About) on one sheet — heading + card + copy */
  .about-education {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .about-education-title {
    break-after: avoid;
    page-break-after: avoid;
  }

  .about-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .award-spotlight {
    overflow: visible;
    transform: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* NAB Honour card starts on the next sheet after the LinkedIn spotlight */
  #awards .award-card-honour {
    break-before: page !important;
    page-break-before: always !important;
  }

  #awards .awards-intro {
    margin-top: -12px;
    margin-bottom: 16px;
    break-after: avoid;
    page-break-after: avoid;
  }

  .award-spotlight-content {
    padding: 14px 18px 16px !important;
  }

  .award-spotlight-quote {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
    line-height: 1.35 !important;
  }

  .award-spotlight-byline {
    margin-bottom: 8px !important;
  }

  .award-spotlight-tag {
    margin-bottom: 8px !important;
  }

  .award-spotlight-media {
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    min-height: 280px !important;
    height: 300px !important;
    max-height: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .award-spotlight-media img {
    height: 100% !important;
    width: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Community + side projects: one sheet (title + grid, no internal page breaks) */
  #systems .community-block {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  #systems .community-title {
    break-after: avoid;
    page-break-after: avoid;
    margin: 14px 0 10px !important;
    font-size: 1.05rem !important;
  }

  #systems .community-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  #systems .community-grid .project-card {
    padding: 10px 12px !important;
    gap: 6px !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  #systems .community-grid .project-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  #systems .community-grid .project-name {
    font-size: 0.92rem !important;
  }

  #systems .community-grid .project-desc {
    font-size: 0.7rem !important;
    line-height: 1.32 !important;
  }

  #systems .community-grid .project-tags {
    gap: 4px !important;
    flex-wrap: wrap !important;
  }

  #systems .community-grid .project-tags span {
    font-size: 0.62rem !important;
    padding: 2px 6px !important;
  }

  #systems .community-grid .project-link {
    font-size: 0.72rem !important;
    margin-top: 2px !important;
  }

  /* Prefer footer on the same page as the end of contact */
  .footer {
    break-before: avoid;
    page-break-before: avoid;
  }

  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  /* Experience: hide timeline line + dots in PDF */
  .timeline::before {
    content: none !important;
    display: none !important;
  }

  .timeline-dot {
    display: none !important;
  }

  .timeline-item {
    padding-left: 0 !important;
  }
}
