/* ===== VARIABLES ===== */
:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #21262d;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #2f81f7;
  --tag-bg: #1f3a5c;
  --tag-text: #79b9ff;
  --radius: 6px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --max-w: 780px;
  --max-w-wide: 1100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-w); }
main { flex: 1; }

/* ===== HEADER ===== */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-prompt {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9em;
  color: var(--accent);
  margin-right: 7px;
  opacity: 0.85;
}
.logo .accent { color: var(--accent); }
.logo:hover { text-decoration: none; }
.logo:hover .logo-prompt { opacity: 1; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--text); text-decoration: none; }

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 68px;
  position: relative;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(47, 129, 247, 0.13) 0%, transparent 65%),
    radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(63, 185, 80, 0.08);
  border: 1px solid rgba(63, 185, 80, 0.28);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #7ee787;
  margin-bottom: 26px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3fb950;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(63, 185, 80, 0); }
}
.gradient-text {
  background: linear-gradient(120deg, #79c0ff 0%, #2f81f7 40%, #a371f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero .tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero .bio {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin: 30px 0 4px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 1px; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.hero .links {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== STACK SECTION ===== */
.stack-section {
  padding: 36px 0;
  position: relative;
}
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
  cursor: default;
}
.stack-badge--infra { border-color: rgba(47,129,247,0.35);  color: #79c0ff; background: linear-gradient(135deg, rgba(47,129,247,0.12) 0%, rgba(47,129,247,0.04) 100%); }
.stack-badge--iac   { border-color: rgba(163,113,247,0.35); color: #d2a8ff; background: linear-gradient(135deg, rgba(163,113,247,0.12) 0%, rgba(163,113,247,0.04) 100%); }
.stack-badge--db    { border-color: rgba(63,185,80,0.35);   color: #7ee787; background: linear-gradient(135deg, rgba(63,185,80,0.12) 0%, rgba(63,185,80,0.04) 100%); }
.stack-badge--cloud { border-color: rgba(255,166,77,0.35);  color: #ffa657; background: linear-gradient(135deg, rgba(255,166,77,0.12) 0%, rgba(255,166,77,0.04) 100%); }
.stack-badge--lang  { border-color: rgba(248,113,113,0.35); color: #ffa198; background: linear-gradient(135deg, rgba(248,113,113,0.12) 0%, rgba(248,113,113,0.04) 100%); }
.stack-badge--obs   { border-color: rgba(251,191,36,0.35);  color: #fcd34d; background: linear-gradient(135deg, rgba(251,191,36,0.12) 0%, rgba(251,191,36,0.04) 100%); }
.stack-badge--ai    { border-color: rgba(34,211,238,0.35);  color: #67e8f9; background: linear-gradient(135deg, rgba(34,211,238,0.12) 0%, rgba(34,211,238,0.04) 100%); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.18s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #388bfd 0%, #2f81f7 60%, #1a6fd4 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(47,129,247,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4d9eff 0%, #388bfd 100%);
  box-shadow: 0 4px 18px rgba(47,129,247,0.6);
  text-decoration: none;
}
.btn-outline { border: 1px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--text-muted); color: var(--text); text-decoration: none; }

/* ===== SECTIONS ===== */
.section { padding: 48px 0; }
.section-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== ARTICLE CARDS ===== */
.article-card {
  display: block;
  background: linear-gradient(160deg, #1c2128 0%, var(--surface) 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 4px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(47,129,247,0.35), 0 0 40px rgba(47,129,247,0.08);
  border-color: var(--accent);
  text-decoration: none;
}
.card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.article-card:hover .card-img img { transform: scale(1.05); }

/* Logo variant — centré, contenu, style Notion */
.card-img--logo img {
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 68%;
  object-fit: contain;
}
.article-card:hover .card-img--logo img { transform: scale(1.08); }
.card-body { padding: 18px 20px 20px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.card-date {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.article-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.article-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.read-more { font-size: 0.78rem; color: var(--accent); font-weight: 500; }

/* Featured card */
.article-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              linear-gradient(135deg, rgba(47,129,247,0.5) 0%, rgba(163,113,247,0.4) 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 8px 28px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.article-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 50px rgba(47,129,247,0.12);
  border-color: transparent;
}
.article-card--featured .card-img {
  aspect-ratio: unset;
  min-height: 270px;
}
.article-card--featured .card-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.article-card--featured h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.article-card--featured p { -webkit-line-clamp: 5; }

/* Blog grid (2 columns) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}
/* 3 columns variant (homepage teaser) */
.blog-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
  background: var(--tag-bg);
  color: var(--tag-text);
}
a.tag:hover { text-decoration: none; background: #254a7c; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* ===== BLOG LISTING ===== */
.blog-header {
  padding: 56px 0 36px;
  position: relative;
}
.blog-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.tag-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tag-filter a {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.15s;
}
.tag-filter a:hover, .tag-filter a.active {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ===== ARTICLE PAGE ===== */
.article-header { padding: 48px 0 28px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--accent); text-decoration: none; }
.article-header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.article-meta .sep { opacity: 0.4; }

/* ===== PROSE (article body) ===== */
.article-content { padding: 28px 0 72px; }
.prose {
  font-size: 1rem;
  line-height: 1.82;
  color: #c9d1d9;
}
.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.4em 0 0.7em;
  color: var(--text);
  letter-spacing: -0.02em;
  padding-bottom: 8px;
  border-bottom: none;
  background: linear-gradient(90deg, var(--border) 0%, transparent 60%) bottom / 100% 1px no-repeat;
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.8em 0 0.5em;
  color: var(--text);
}
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 0.35em; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 10px 18px;
  margin: 1.5em 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: #f0883e;
}
.prose pre {
  margin: 1.4em 0;
  border-radius: var(--radius);
  overflow: auto;
  border: 1px solid var(--border);
  font-size: 0.875rem;
}
.prose pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  border-radius: 0;
  font-size: inherit;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 0.875rem;
}
.prose table th {
  background: var(--surface);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
}
.prose table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.prose table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; }

/* Author link in article meta */
.author-link {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.author-link:hover { color: var(--accent); text-decoration: none; }

/* Related articles section */
.related-articles {
  padding: 40px 0 64px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.related-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Crosspost notice */
.crosspost-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.crosspost-notice a { color: var(--accent); }

/* ===== CV / TIMELINE ===== */
.cv-section { padding: 48px 0; position: relative; }
.cv-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 20px;
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 10px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border) 0%, transparent 100%);
  transform: translateX(31px);
}
.timeline-item:last-child::before { display: none; }
.timeline-dates {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 10px;
  text-align: right;
  white-space: nowrap;
  line-height: 1.4;
}
.timeline-body {
  padding-left: 52px;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.timeline-body::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px rgba(47,129,247,0.25), 0 0 10px rgba(47,129,247,0.5);
}
.company-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.timeline-item:hover .company-logo { border-color: var(--accent); }
.company-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}
.company-logo-text {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 4px 2px;
}
.timeline-info { flex: 1; padding-top: 4px; }
.timeline-info h3 {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.timeline-company {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.timeline-company .location {
  font-size: 0.76rem;
  opacity: 0.7;
}


/* Blog teaser on homepage */
.home-blog { padding: 48px 0 64px; }
.home-blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}
.blog-see-all {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}
.blog-see-all:hover { text-decoration: underline; }
.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.55;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); }

/* ===== GRADIENT SEPARATORS ===== */
.hero::after,
.stack-section::after,
.cv-section::after,
.blog-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 25%, var(--border) 75%, transparent 100%);
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
  .article-card--featured { grid-template-columns: 1fr; }
  .article-card--featured .card-img { min-height: 200px; aspect-ratio: 16/9; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid--3col { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 90px 1fr; }
  .timeline-item::before { left: 90px; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Header / Nav burger */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,17,23,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 98;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a:hover { background: var(--surface); color: var(--text); }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; padding: 4px 12px; }
  .hero-stats { gap: 20px; margin: 22px 0 0; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }
  .hero .links { gap: 8px; }

  /* Stack */
  .stack-badge { font-size: 0.75rem; padding: 4px 11px; }

  /* Timeline — empilé sur mobile */
  .timeline-item {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
  .timeline-item::before { display: none; }
  .timeline-dates {
    text-align: left;
    padding: 0 0 6px 20px;
    font-size: 0.7rem;
  }
  .timeline-body { padding-left: 20px; }
  .timeline-body::before { left: 2px; }

  /* Blog listing */
  .blog-header { padding: 36px 0 24px; }
  .blog-header h1 { font-size: 1.8rem; }
  .tag-filter { gap: 6px; }
  .tag-filter a { font-size: 0.75rem; padding: 3px 10px; }

  /* Article page */
  .article-header { padding: 32px 0 20px; }
  .article-header h1 { font-size: 1.35rem; }
  .article-content { padding: 20px 0 48px; }
  .prose h2 { font-size: 1.15rem; }
  .prose h3 { font-size: 1rem; }
  .prose { font-size: 0.95rem; }
  .prose pre { font-size: 0.8rem; }
  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .article-hero { height: 180px; }

  /* Home blog teaser */
  .home-blog-header { flex-direction: column; gap: 2px; }
  .home-blog-header .cv-section-label { margin-bottom: 4px; }

  /* Misc */
  .cv-section { padding: 32px 0; }
  .cv-section-label { margin-bottom: 20px; }
  .section { padding: 32px 0; }
}
