/* IT4Africa e.V. — Main Stylesheet */
/* Brand colors extracted from logo */
:root {
  --blue-dark: #1a3a6b;
  --blue-mid: #2456a4;
  --blue-navy: #0d2240;
  --red: #cc2229;
  --teal: #0a4a6e;
  --text: #1a1a2e;
  --text-muted: #555;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --border: #e0e8f0;
  --gold: #f5a623;
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }

a { color: var(--blue-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: white;
  border-bottom: 2px solid var(--blue-dark);
  height: var(--nav-h);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo img { height: 48px; display: block; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; margin-left: auto; }
.nav-links a {
  padding: 0.4rem 0.7rem; border-radius: 4px; font-size: 0.9rem;
  color: var(--text); font-weight: 500; transition: background 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-alt); color: var(--blue-dark); text-decoration: none; }
.btn-donate {
  background: var(--red) !important; color: white !important;
  border-radius: 20px !important; padding: 0.4rem 1rem !important;
}
.btn-donate:hover { opacity: 0.9; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--blue-dark); color: white;
  padding: 0.75rem 1.8rem; border-radius: 6px; font-weight: 600;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue-mid); text-decoration: none; color: white; }
.btn-outline {
  display: inline-block; border: 2px solid var(--blue-dark); color: var(--blue-dark);
  padding: 0.75rem 1.8rem; border-radius: 6px; font-weight: 600; transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue-dark); color: white; text-decoration: none; }
.btn-outline-white {
  display: inline-block; border: 2px solid white; color: white;
  padding: 0.75rem 1.8rem; border-radius: 6px; font-weight: 600;
}
.btn-outline-white:hover { background: white; color: var(--blue-dark); text-decoration: none; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-dark) 60%, var(--teal) 100%);
  color: white; padding: 5rem 1.5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
/* logo-transparent.png on a white badge so the full-colour mark
   reads crisply against the dark hero. */
.hero-logo { height: 110px; margin-bottom: 1.25rem; background: #fff;
  padding: 14px 24px; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.20); }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; }
.hero-tagline { font-size: 1.4rem; color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--blue-navy), var(--blue-dark));
  color: white; padding: 4rem 1.5rem; text-align: center;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* SECTIONS */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 2rem; font-weight: 700; color: var(--blue-dark); text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; }

/* MISSION */
.mission-banner { background: var(--bg-alt); padding: 3rem 1.5rem; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.mission-card { background: white; border-radius: 12px; padding: 2rem; border: 1px solid var(--border); text-align: center; }
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 { color: var(--blue-dark); margin-bottom: 0.75rem; font-size: 1.2rem; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.card {
  background: white; border-radius: 12px; padding: 1.8rem;
  border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(26,58,107,0.12); transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { color: var(--blue-dark); margin-bottom: 0.5rem; }
.card-link { color: var(--blue-mid); font-weight: 600; font-size: 0.9rem; }

/* TIMELINE */
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content:''; position:absolute; left:20px; top:0; bottom:0; width:2px; background: var(--border); }
.tl-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--blue-mid); border: 3px solid white; box-shadow: 0 0 0 2px var(--blue-mid); margin-top: 5px; flex-shrink: 0; position: relative; z-index: 1; }
.tl-dot-now { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.tl-content { flex: 1; background: white; border-radius: 10px; padding: 1.2rem; border: 1px solid var(--border); }
.tl-year { display: inline-block; background: var(--blue-dark); color: white; padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.tl-content h4 { color: var(--blue-dark); margin-bottom: 0.3rem; }

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.news-card { background: white; border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); border-left: 4px solid var(--blue-mid); }
.news-tag { display: inline-block; background: var(--bg-alt); color: var(--blue-mid); padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.75rem; }
.news-card h4 { color: var(--blue-dark); margin-bottom: 0.5rem; }

/* PARTNERS STRIP */
.partners-strip { background: var(--blue-navy); color: white; padding: 3rem 1.5rem; }
.partners-strip .section-title { color: white; }
.partners-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.partner-logo {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 0.6rem 1.5rem; border-radius: 30px; font-weight: 500; font-size: 0.9rem;
}
.partner-logo.placeholder { border-style: dashed; opacity: 0.7; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--red), #9b1a1f);
  color: white; padding: 4rem 1.5rem; text-align: center;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tax-note { font-size: 0.85rem; opacity: 0.75; }

/* FOOTER */
footer { background: var(--blue-navy); color: rgba(255,255,255,0.8); padding: 3rem 1.5rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; padding-bottom: 2rem; }
.footer-col h4 { color: white; margin-bottom: 1rem; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: white; }
.footer-col p { font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer-logo { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ACTIVITIES PAGE */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: 0.5rem 1.2rem; border-radius: 20px; border: 1.5px solid var(--border); background: white; cursor: pointer; font-size: 0.9rem; transition: all 0.15s; }
.filter-btn.active, .filter-btn:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }
.act-year-divider { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); border-bottom: 2px solid var(--blue-dark); margin: 2.5rem 0 1.5rem; padding-bottom: 0.3rem; }
.activity-item { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; background: white; border-radius: 12px; border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1.5rem; }
.act-placeholder { background: linear-gradient(135deg, var(--bg-alt), #e8f0fa); border-radius: 8px; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.act-placeholder-inner { text-align: center; color: var(--text-muted); font-size: 0.85rem; padding: 1rem; }
.act-info h3 { color: var(--blue-dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.act-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.act-tag { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.tag-event { background: #e6f1fb; color: #1a5fa0; }
.tag-training { background: #e1f5ee; color: #0a5c3a; }
.tag-donation { background: #fff3e0; color: #a05a00; }
.tag-partnership { background: #f5e6fb; color: #6a0a9b; }
.act-media-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.media-placeholder { background: var(--bg-alt); border: 1px dashed var(--border); border-radius: 6px; padding: 0.4rem 0.8rem; font-size: 0.8rem; color: var(--text-muted); }
.act-albums { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.album-chip { background: var(--bg-alt); border-radius: 6px; padding: 0.3rem 0.8rem; font-size: 0.82rem; color: var(--blue-mid); border: 1px solid var(--border); }

/* PARTNERS PAGE */
.partner-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.partner-card { background: white; border-radius: 12px; padding: 1.8rem; border: 1px solid var(--border); }
.partner-card-logo { font-size: 2.5rem; margin-bottom: 1rem; }
.partner-card h3 { color: var(--blue-dark); margin-bottom: 0.25rem; }
.partner-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.partner-tag { display: inline-block; background: var(--bg-alt); color: var(--blue-mid); padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; margin-top: 0.5rem; }
.partner-card-placeholder { border: 2px dashed var(--border); background: var(--bg-alt); }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.sponsor-card { background: white; border-radius: 12px; padding: 1.8rem; border: 1px solid var(--border); }
.sponsor-card.gold { border-top: 4px solid var(--gold); }
.sponsor-card.silver { border-top: 4px solid #aaa; }
.sponsor-tier { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; }
.sponsor-placeholder { border: 2px dashed var(--border); background: var(--bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; margin-bottom: 1rem; }
.team-card { background: white; border-radius: 12px; padding: 1.5rem; text-align: center; border: 1px solid var(--border); }
.team-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--blue-dark); color: white; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.team-card h4 { font-size: 0.95rem; color: var(--blue-dark); margin-bottom: 0.25rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1.5rem; }
.fact-item { background: var(--bg-alt); padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.88rem; }
.about-sidebar { }
.about-logo-box { background: var(--bg-alt); border-radius: 12px; padding: 2rem; text-align: center; margin-bottom: 1.5rem; }
.impact-box { background: var(--blue-dark); color: white; border-radius: 12px; padding: 1.5rem; }
.impact-box h3 { margin-bottom: 1rem; font-size: 1rem; }
.impact-item { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.impact-item:last-child { border-bottom: none; }
.impact-num { font-size: 1.3rem; font-weight: 800; min-width: 70px; }
.founders-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.founder { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 0.5rem 1.2rem; font-weight: 500; }

/* RADIO PAGE */
.radio-hero {
  background: linear-gradient(135deg, #0a1628, #1a3a6b, #0a2840);
  color: white; padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.radio-hero-content { position: relative; z-index: 1; }
.radio-pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1); animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity:0.5; } 50% { transform: translate(-50%,-50%) scale(1.3); opacity:0.1; } }
.radio-icon-big { font-size: 5rem; margin-bottom: 1rem; }
.coming-soon-badge { display: inline-block; background: var(--gold); color: var(--blue-navy); padding: 0.5rem 1.5rem; border-radius: 20px; font-weight: 800; font-size: 1rem; margin-top: 1.5rem; }
.radio-intro-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.radio-intro-text h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.radio-intro-text p { margin-bottom: 1rem; }
.radio-player-mockup { background: var(--blue-navy); color: white; border-radius: 16px; padding: 2rem; text-align: center; }
.rp-header { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.rp-header img { filter: brightness(0) invert(1); }
.rp-wave { display: flex; gap: 4px; justify-content: center; align-items: flex-end; height: 40px; margin-bottom: 1rem; }
.rp-wave span { display: block; width: 6px; border-radius: 3px; background: rgba(255,255,255,0.3); animation: wave 1.5s ease-in-out infinite; }
.rp-wave span:nth-child(1){ height:15px; animation-delay:0s; }
.rp-wave span:nth-child(2){ height:25px; animation-delay:0.1s; }
.rp-wave span:nth-child(3){ height:35px; animation-delay:0.2s; }
.rp-wave span:nth-child(4){ height:20px; animation-delay:0.3s; }
.rp-wave span:nth-child(5){ height:30px; animation-delay:0.4s; }
.rp-wave span:nth-child(6){ height:15px; animation-delay:0.5s; }
.rp-wave span:nth-child(7){ height:28px; animation-delay:0.6s; }
.rp-wave span:nth-child(8){ height:18px; animation-delay:0.7s; }
.rp-wave span:nth-child(9){ height:32px; animation-delay:0.8s; }
.rp-wave span:nth-child(10){ height:22px; animation-delay:0.9s; }
@keyframes wave { 0%,100%{ opacity:0.3; transform:scaleY(1); } 50%{ opacity:1; transform:scaleY(1.3); } }
.rp-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.rp-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.rp-controls { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.rp-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1rem; cursor: not-allowed; opacity: 0.5; }
.rp-play { width: 56px; height: 56px; background: rgba(255,255,255,0.2); font-size: 1.3rem; opacity: 0.6; }
.rp-volume { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
.rp-volume input { width: 120px; opacity: 0.4; }
.partner-spotlight { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); }
.ps-logo-placeholder { background: linear-gradient(135deg, #f5a623, #e8891a); color: white; border-radius: 12px; padding: 2rem; text-align: center; font-size: 2.5rem; }
.ps-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1.5rem; }
.ps-feature { display: flex; gap: 0.5rem; font-size: 0.9rem; align-items: center; }
.radio-register-form { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }

/* CHATBOT */
#chatbot-bubble {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-dark);
  color: white; font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 999; transition: transform 0.2s;
}
#chatbot-bubble:hover { transform: scale(1.1); }
#chatbot-box {
  position: fixed; bottom: 5rem; right: 1.5rem;
  width: 340px; max-height: 500px; background: white;
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 998; display: none; flex-direction: column;
  border: 1px solid var(--border); overflow: hidden;
}
#chatbot-box.open { display: flex; }
#chatbot-header {
  background: var(--blue-dark); color: white;
  padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600;
}
#chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.bot-msg { background: var(--bg-alt); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.9rem; max-width: 90%; align-self: flex-start; }
.user-msg { background: var(--blue-dark); color: white; border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.9rem; max-width: 90%; align-self: flex-end; }
.quick-btn { display: inline-block; margin: 0.3rem 0.3rem 0 0; padding: 0.3rem 0.8rem; background: white; border: 1.5px solid var(--blue-mid); border-radius: 16px; color: var(--blue-mid); font-size: 0.8rem; cursor: pointer; }
.quick-btn:hover { background: var(--blue-mid); color: white; }
#chatbot-input-area { display: flex; border-top: 1px solid var(--border); }
#chatbot-input { flex: 1; padding: 0.75rem 1rem; border: none; outline: none; font-size: 0.9rem; }
#chatbot-input-area button { padding: 0 1rem; background: var(--blue-dark); color: white; border: none; cursor: pointer; font-size: 1.1rem; }
.typing-indicator { display: flex; gap: 4px; padding: 0.5rem 1rem; align-self: flex-start; }
.typing-indicator span { width: 8px; height: 8px; border-radius: 50%; background: #bbb; animation: typing 1.4s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100%{ transform:translateY(0); } 30%{ transform:translateY(-8px); } }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .hero h1 { font-size: 2rem; }
  .about-grid, .radio-intro-grid, .partner-spotlight { grid-template-columns: 1fr; }
  .activity-item { grid-template-columns: 1fr; }
  #chatbot-box { width: calc(100vw - 2rem); right: 1rem; }
  .about-facts { grid-template-columns: 1fr; }
  .ps-features { grid-template-columns: 1fr; }
}
