/* ==========================================================================
   TECHNOPEDIA ARABIA — Design System
   Dark + Glassmorphism + light 3D touches
   ========================================================================== */

:root {
  --bg: #070b14;
  --bg-soft: #0d1420;
  --bg-elevated: #101a2c;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.09);
  --accent: #f97316;
  --accent-2: #fbbf24;
  --accent-3: #fb7185;
  --text: #e6edf3;
  --text-muted: #8b98a9;
  --text-dim: #5b6577;
  --success: #34d399;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.12);
  --header-h: 76px;
  --max-w: 1180px;
  --font-en: 'Inter', 'Space Grotesk', sans-serif;
  --font-ar: 'Tajawal', 'Inter', sans-serif;
  --font-display: 'Space Grotesk', 'Tajawal', sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-en);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { font-family: var(--font-ar); }
html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] { direction: ltr; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { font-family: var(--font-ar); font-weight: 800; }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #04121a; }

/* ---------- Background layers ---------- */
#bg-canvas {
  position: fixed; inset: 0; z-index: -2; width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(251,191,36,0.18), transparent 60%),
              radial-gradient(ellipse 60% 50% at 90% 20%, rgba(249,115,22,0.10), transparent 60%),
              var(--bg);
}
.grain-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 620px; margin-inline: auto; margin-bottom: 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

.grad-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #04121a; box-shadow: 0 8px 30px -8px rgba(249,115,22,.5); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px -8px rgba(251,191,36,.55); }
.btn-ghost { background: var(--surface); border-color: var(--surface-border); color: var(--text); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: var(--surface-hover); transform: translateY(-3px); border-color: rgba(249,115,22,.4); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Glass surfaces ---------- */
.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-lg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(7,11,20,0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.brand img { width: 40px; height: 40px; }
.brand small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px; border-radius: 100px; font-size: 14.5px; font-weight: 600; color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: flex; align-items: center; gap: 2px; background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: 100px; padding: 4px; font-size: 12.5px; font-weight: 800;
}
.lang-toggle button {
  background: transparent; border: none; color: var(--text-dim); padding: 6px 12px; border-radius: 100px;
  transition: all .25s var(--ease);
}
.lang-toggle button.active { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #04121a; }

.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--surface-border); border-radius: 10px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--text); position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; width: 18px; height: 2px; background: var(--text); }
.nav-toggle span::after { position: absolute; top: 6px; width: 18px; height: 2px; background: var(--text); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); position: relative; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent-2); margin-bottom: 20px; letter-spacing: .06em; }
.hero h1 { font-size: clamp(34px, 5.2vw, 60px); margin-bottom: 18px; }
.hero .role { font-size: clamp(17px, 2vw, 22px); color: var(--text-muted); margin-bottom: 26px; font-weight: 600; }
.hero .role .grad-text { font-weight: 800; }
.hero-desc { max-width: 480px; font-size: 16px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--surface-border); transition: all .25s var(--ease);
}
.social-row a:hover { transform: translateY(-4px); border-color: var(--accent); color: var(--accent); box-shadow: 0 8px 22px -6px rgba(249,115,22,.5); }
.social-row svg { width: 19px; height: 19px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.avatar-frame {
  position: relative; width: min(360px, 80vw); aspect-ratio: 1; border-radius: 32px; overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: 0 30px 80px -20px rgba(249,115,22,.25), 0 0 0 1px rgba(255,255,255,.03) inset;
  transform-style: preserve-3d; transition: transform .4s var(--ease);
}
.avatar-frame img { width: 100%; height: 100%; object-fit: cover; }
.avatar-ring { position: absolute; inset: -18px; border-radius: 40px; border: 1px dashed rgba(249,115,22,.35); animation: spin 24s linear infinite; }
.floating-badge {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  animation: float 5s ease-in-out infinite;
}
.floating-badge svg { width: 20px; height: 20px; color: var(--accent); }
.floating-badge span { font-size: 13px; font-weight: 700; }
.badge-1 { top: 6%; inset-inline-start: -8%; animation-delay: 0s; }
.badge-2 { bottom: 10%; inset-inline-end: -10%; animation-delay: 1.2s; }
.badge-3 { top: 42%; inset-inline-end: -14%; animation-delay: 2.4s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: 12px; }
.scroll-hint .dot { width: 5px; height: 9px; border-radius: 3px; background: var(--accent); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0);} 100% { opacity: 0; transform: translateY(12px);} }

/* ---------- Skill pills ---------- */
.pill-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--surface-border); transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.stat-card { padding: 22px; text-align: center; }
.stat-card b { display: block; font-family: var(--font-display); font-size: 30px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 0; overflow: hidden; position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  transform-style: preserve-3d;
}
.card:hover { border-color: rgba(249,115,22,.35); box-shadow: 0 22px 50px -18px rgba(249,115,22,.28); }
.card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(0deg, rgba(7,11,20,.6), transparent 60%);
}
.play-btn .circle {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease);
}
.card:hover .play-btn .circle { transform: scale(1.12); background: var(--accent); border-color: var(--accent); }
.play-btn svg { width: 20px; height: 20px; color: #fff; }
.card:hover .play-btn svg { color: #04121a; }

.card-body { padding: 22px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: rgba(251,191,36,.14); color: #fde68a; border: 1px solid rgba(251,191,36,.3); }
.tag.tag-cyan { background: rgba(249,115,22,.12); color: #fdba74; border-color: rgba(249,115,22,.3); }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card-links { display: flex; gap: 10px; }
.card-links a { font-size: 13px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }
.card-links a:hover { color: var(--accent-2); }

.section-cta { text-align: center; margin-top: 48px; }

/* ---------- Filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 700;
  background: var(--surface); border: 1px solid var(--surface-border); color: var(--text-muted);
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #04121a; border-color: transparent; }

/* ---------- Page header (inner pages) ---------- */
.page-hero { padding: calc(var(--header-h) + 70px) 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 5vw, 48px); }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumb a { color: var(--accent); font-weight: 700; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(4,7,14,.78); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; z-index: 200; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  width: min(760px, 100%); max-height: 86vh; overflow-y: auto; padding: 0; position: relative;
  transform: translateY(24px) scale(.98); transition: transform .35s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; inset-inline-end: 16px; z-index: 5; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(7,11,20,.7); border: 1px solid var(--surface-border); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--accent); color: #04121a; }
.modal-media { aspect-ratio: 16/9; width: 100%; background: #000; }
.modal-media iframe, .modal-media img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.modal-content { padding: 30px; }
.modal-content h3 { font-size: 24px; }
.modal-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ---------- Video grid extra ---------- */
.video-card .card-media { cursor: pointer; }

/* ---------- CV Page ---------- */
.cv-shell { display: grid; grid-template-columns: .8fr 1.6fr; gap: 40px; align-items: start; }
.cv-side { position: sticky; top: calc(var(--header-h) + 24px); padding: 28px; text-align: center; }
.cv-side img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; margin-inline: auto 0; margin-bottom: 16px; border: 3px solid rgba(249,115,22,.35); }
.cv-side h2 { font-size: 20px; margin-bottom: 4px; }
.cv-side .role { color: var(--accent); font-weight: 700; font-size: 13.5px; margin-bottom: 18px; }
.cv-contact { text-align: start; font-size: 13.5px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cv-contact li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.cv-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.cv-section { padding: 30px; margin-bottom: 26px; }
.cv-section h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.cv-section h3 svg { width: 20px; height: 20px; color: var(--accent); }

.timeline { position: relative; padding-inline-start: 26px; border-inline-start: 2px solid var(--surface-border); }
html[dir="rtl"] .timeline { padding-inline-start: 26px; }
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; inset-inline-start: -32px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 4px rgba(249,115,22,.15);
}
.timeline-item .date { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.timeline-item h4 { font-size: 16.5px; margin: 4px 0 3px; }
.timeline-item .org { font-size: 13.5px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; margin-bottom: 0; }

.skill-bars { display: flex; flex-direction: column; gap: 16px; }
.skill-bar-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.skill-bar-track { height: 8px; border-radius: 100px; background: var(--surface); overflow: hidden; }
.skill-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 0; transition: width 1.1s var(--ease); }

.cert-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cert-item { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--surface-border); }
.cert-item svg { width: 22px; height: 22px; color: var(--accent-2); flex-shrink: 0; }
.cert-item span { font-size: 13.5px; font-weight: 600; }

/* ---------- Support / Donation ---------- */
.support-card { max-width: 620px; margin-inline: auto; padding: 34px; }
.bank-details { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.bank-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--surface-border);
}
.bank-row .label { font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 3px; }
.bank-row .value { font-size: 15.5px; font-weight: 700; font-family: var(--font-display); letter-spacing: .02em; direction: ltr; unicode-bidi: plaintext; }
.copy-btn {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--surface-border); color: var(--text-muted); transition: all .2s var(--ease);
}
.copy-btn:hover { color: var(--accent); border-color: var(--accent); }
.copy-btn.copied { color: var(--success); border-color: var(--success); }
.copy-btn svg { width: 16px; height: 16px; }
.support-note { font-size: 13px; color: var(--text-dim); margin-top: 18px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--surface-border); margin-top: 60px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 36px; border-bottom: 1px solid var(--surface-border); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }
.reveal-delay-5.in-view { transition-delay: .4s; }

/* ---------- i18n visibility helper ---------- */
[data-i18n-ar-only] { display: none; }
html[lang="ar"] [data-i18n-ar-only] { display: initial; }
html[lang="ar"] [data-i18n-en-only] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-cta, .social-row { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cv-shell { grid-template-columns: 1fr; }
  .cv-side { position: static; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .cert-list { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; top: var(--header-h); inset-inline: 0; bottom: 0; z-index: 90;
  background: rgba(7,11,20,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .3s var(--ease);
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer a { font-size: 20px; font-weight: 700; padding: 14px 24px; }

/* ---------- Print (CV page) ---------- */
@media print {
  .site-header, .site-footer, .scroll-hint, #bg-canvas, .grain-overlay, .no-print { display: none !important; }
  body { background: #fff; color: #111; }
  .glass { background: #fff; border: 1px solid #ddd; box-shadow: none; }
  .cv-shell { grid-template-columns: 1fr; }
}
