/* ============================================================
   AZRAI IBRAHIM — PERSONAL WEBSITE
   Layout: Fixed sidebar + scrollable main content
   Theme: Dark default with light mode toggle
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  background: var(--accent);
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* === FOCUS STYLES === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* === DESIGN TOKENS === */
:root {
  /* Dark theme (default) */
  --bg:           #0f0f0f;
  --bg-2:         #141414;
  --surface:      #1a1a1a;
  --surface-2:    #222222;
  --sidebar-bg:   #111111;
  --text:         #f0f0ee;
  --text-muted:   #888888;
  --text-light:   #6b6b6b;
  --accent:       #f59e0b;
  --accent-dim:   rgba(245,158,11,0.12);
  --border:       #1f1f1f;
  --border-md:    #2a2a2a;
  --sidebar-w:    260px;
  --radius:       6px;
  --radius-md:    10px;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Lora', Georgia, serif;
  --transition:   0.18s ease;
}

[data-theme="light"] {
  /* Warm blue-brown slate palette */
  --bg:           #eef0f5;   /* cool blue-stone background */
  --bg-2:         #e5e8f0;   /* secondary bg, slightly deeper */
  --surface:      #f4f5fa;   /* card / elevated surface */
  --surface-2:    #dde1ed;   /* tags, code, inset surfaces */
  --sidebar-bg:   #f2f4f9;   /* sidebar, slightly lighter */
  --text:         #1e2438;   /* deep navy-black */
  --text-muted:   #445070;   /* blue-gray body copy */
  --text-light:   #606878;   /* muted labels — 4.7:1 on --bg ✓ */
  --accent:       #b07548;   /* warm amber-brown */
  --accent-dim:   rgba(176,117,72,0.12);
  --border:       #cdd2e2;   /* soft blue-gray border */
  --border-md:    #b5bdd0;   /* medium separator */
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h3 { font-size: 1.05rem; font-weight: 500; }
h4 { font-size: 0.875rem; font-weight: 600; }

p { color: var(--text-muted); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 200;
  transition: transform var(--transition);
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

/* Sidebar header */
.sidebar-header {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.sidebar-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sidebar nav */
.sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar-nav::-webkit-scrollbar { display: none; }

.sidebar-section {
  padding: 0.75rem 0 0.25rem;
}

.sidebar-section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0 1.25rem;
  margin-bottom: 0.25rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 0;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.sidebar-link:hover {
  color: var(--text);
  background: var(--surface);
}

.sidebar-link.active {
  color: var(--text);
  background: var(--surface);
  font-weight: 500;
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}

.sidebar-link-icon {
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.sidebar-link:hover .sidebar-link-icon,
.sidebar-link.active .sidebar-link-icon { opacity: 1; }

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 1.25rem;
}

/* Sidebar footer */
.sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sidebar-social a {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.sidebar-social a:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  font-family: var(--font-sans);
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.theme-toggle-icon { font-size: 0.85rem; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-wrap {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  padding: 3rem 5vw 4rem;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   MOBILE HEADER + TOGGLE
   ============================================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  height: 52px;
  background: var(--sidebar-bg);
  border-bottom: 1px solid var(--border);
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
}

.mobile-logo {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: 1;
}

.sidebar-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.sidebar-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.2s;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
}

/* ============================================================
   HOME — INTRO BLOCK
   ============================================================ */
.home-intro {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.home-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 6;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s ease;
}

.home-photo-wrap:hover .home-hero-img {
  transform: scale(1.02);
}

.hello-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.hello-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding-top: 3px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.hello-body {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hello-body .highlight {
  color: var(--accent);
  font-weight: 500;
}

.home-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.section-block-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.section-block-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
  flex-shrink: 0;
}
.section-block-link:hover { color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  min-height: 40px;
  border-radius: var(--radius);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  line-height: 1;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-md);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.btn-accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}
.btn-accent:hover { opacity: 0.9; }

/* ============================================================
   SERVICES LIST (home teaser + services page)
   ============================================================ */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-item {
  background: var(--bg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition);
}
.service-item:hover { background: var(--surface); }

.service-item.featured { background: var(--accent-dim); }
.service-item.featured:hover { background: rgba(245,158,11,0.18); }

.service-icon {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.service-item h3 { font-size: 0.95rem; }
.service-item p  { font-size: 0.85rem; line-height: 1.6; }

.service-arrow {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: auto;
  padding-top: 0.25rem;
}

/* ============================================================
   WORK / BLOG LIST ITEMS
   ============================================================ */
.item-list {
  display: flex;
  flex-direction: column;
}

.list-item {
  display: grid;
  grid-template-columns: 140px 1fr 20px;
  gap: 0.75rem 1.25rem;
  padding: 1.1rem 0.75rem;
  margin-inline: -0.75rem;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition);
  align-items: start;
}
.list-item:first-child { border-top: 1px solid var(--border); }
.list-item:hover { background: var(--surface); }

.list-item-meta {
  padding-top: 2px;
}

.list-meta-org {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.list-meta-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}

.list-item-body h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.list-item-body p {
  font-size: 0.83rem;
  line-height: 1.6;
}

.list-item-arrow {
  color: var(--text-light);
  font-size: 0.9rem;
  padding-top: 3px;
  transition: transform var(--transition), color var(--transition);
}
.list-item:hover .list-item-arrow {
  transform: translateX(3px);
  color: var(--text-muted);
}

/* Post items (blog) */
.post-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--surface-2);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  margin-top: 0.4rem;
}

/* ============================================================
   PORTFOLIO — PLACEHOLDER CARDS
   ============================================================ */
.portfolio-placeholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.portfolio-placeholder-card {
  border: 1px dashed var(--border-md);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 180px;
}

.placeholder-icon {
  font-size: 1.4rem;
  opacity: 0.25;
  margin-bottom: 0.25rem;
}

.placeholder-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.placeholder-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.portfolio-coming-soon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
}

.portfolio-coming-soon h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.portfolio-coming-soon p {
  font-size: 0.875rem;
  max-width: 360px;
  margin: 0 auto 1.25rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.about-intro p {
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

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

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.skill-tag {
  font-size: 0.72rem;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: 99px;
  padding: 0.25rem 0.7rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border-md);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1.5rem - 4px);
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-md);
  border: 2px solid var(--bg);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  display: block;
}

.timeline-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.timeline-org {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}

.timeline-item p {
  font-size: 0.83rem;
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.contact-link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}
.contact-link-row:hover {
  background: var(--surface);
  border-color: var(--border-md);
}

.contact-link-icon {
  width: 32px;
  height: 32px;
  background: var(--surface-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-link-info {
  flex: 1;
}

.contact-link-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.contact-link-val {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-link-arrow {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: transform var(--transition);
}
.contact-link-row:hover .contact-link-arrow {
  transform: translateX(3px);
  color: var(--text-muted);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

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

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  min-height: 36px;
  border-radius: 99px;
  border: 1px solid var(--border-md);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:first-child { padding-top: 0; }

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.service-detail h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-detail p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.75rem 0;
}

.feature-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-item::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOOTER (inside main)
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-light);
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Hide trailing divider after last nav group */
.sidebar-nav > .sidebar-divider:last-child { display: none; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 860px) {
  .mobile-header { display: flex; }

  .sidebar {
    transform: translateX(calc(-1 * var(--sidebar-w)));
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.4);
  }
  .sidebar-overlay.open { display: block; }

  .main-wrap { margin-left: 0; width: 100%; }
  /* 52px mobile header + 1.5rem breathing room */
  .page-content { padding: calc(52px + 1.5rem) 1.5rem 3rem; }
  .site-footer { padding: 1.25rem 1.5rem; }

  .services-list { grid-template-columns: 1fr; }
  .portfolio-placeholder-grid { grid-template-columns: 1fr; }

  /* Hero image: taller on mobile (16:9 instead of 16:6) */
  .home-photo-wrap { aspect-ratio: 16 / 9; }

  .list-item {
    grid-template-columns: 1fr 20px;
  }
  .list-item-meta {
    grid-column: 1 / -1;
    padding-top: 0;
    margin-bottom: -0.25rem;
  }
  .list-item-body { grid-column: 1; }
  .list-item-arrow { grid-column: 2; grid-row: 2; }
}

@media (max-width: 480px) {
  .page-content { padding: calc(52px + 1.25rem) 1.25rem 3rem; }
  .home-cta-row { flex-direction: column; }
  .hello-row { flex-direction: column; gap: 0.25rem; }
  .hello-label { padding-top: 0; }
  .btn { width: 100%; justify-content: center; }
}
