/* ─── HOME PAGE CSS ─── */

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2rem 5rem; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-blob-1 { width: 600px; height: 600px; background: rgba(107,33,232,.35); top: -180px; right: -120px; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { width: 380px; height: 380px; background: rgba(250,204,21,.14); bottom: -80px; left: -80px; animation: blobFloat 11s ease-in-out infinite reverse; }
.hero-blob-3 { width: 280px; height: 280px; background: rgba(139,92,246,.18); top: 40%; left: 38%; animation: blobFloat 7s ease-in-out infinite 2s; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,204,21,.1); border: 1px solid rgba(250,204,21,.22);
  border-radius: 20px; padding: 6px 16px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-yellow); margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.dot-pulse { width: 6px; height: 6px; background: var(--c-yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem,7.5vw,7rem);
  font-weight: 900; line-height: .92; letter-spacing: -.035em; margin-bottom: 1.5rem;
  animation: fadeUp .8s ease .1s both;
}
.hero-title .accent { color: var(--c-yellow); position: relative; display: inline-block; }
.hero-title .accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 5px;
  background: var(--c-yellow); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: lineExpand .7s ease 1s both;
}
@keyframes lineExpand { to { transform: scaleX(1); } }
.hero-sub { font-size: clamp(.95rem,1.5vw,1.15rem); color: var(--c-text-muted); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75; animation: fadeUp .8s ease .2s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s ease .3s both; }
.hero-scroll { position: absolute; bottom: 2rem; right: 2rem; display: flex; align-items: center; gap: 10px; font-size: .72rem; color: var(--c-text-muted); z-index: 1; animation: fadeUp .8s ease .6s both; }
.hero-scroll-line { width: 40px; height: 1px; background: var(--c-text-muted); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; inset: 0; background: var(--c-yellow); transform: translateX(-100%); animation: scanLine 2s ease infinite 1s; }
.hero-tags { position: absolute; top: 50%; right: 2rem; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 1; animation: fadeUp .8s ease .5s both; }
.hero-tag { background: rgba(255,255,255,.05); border: 1px solid var(--c-border); border-radius: 10px; padding: 10px 14px; font-size: .7rem; font-weight: 600; backdrop-filter: blur(10px); text-align: center; }
.hero-tag strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--c-yellow); }

/* MISSION */
.mission-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.mission-circle { width: 100%; max-width: 420px; aspect-ratio: 1; border-radius: 50%; background: var(--c-dark3); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mission-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.ring-1 { width: 72%; height: 72%; border-color: rgba(107,33,232,.3); animation: spin 14s linear infinite; }
.ring-2 { width: 48%; height: 48%; border-color: rgba(250,204,21,.2); animation: spin 9s linear infinite reverse; }
.mission-circle-text { font-family: var(--font-display); font-size: clamp(1rem,2.5vw,1.6rem); font-weight: 900; text-align: center; z-index: 1; padding: 1rem; line-height: 1.25; }
.mission-circle-text span { color: var(--c-yellow); display: block; }
.mvv-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.mvv-card { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--r); padding: 1.4rem; transition: var(--transition); cursor: pointer; }
.mvv-card:hover { border-color: rgba(107,33,232,.4); background: var(--c-dark3); transform: translateX(5px); }
.mvv-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: .6rem; }
.mvv-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.mvv-icon.purple { background: rgba(107,33,232,.18); }
.mvv-icon.yellow { background: rgba(250,204,21,.13); }
.mvv-icon.teal   { background: rgba(20,184,166,.15); }
.mvv-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-muted); }
.mvv-text { font-size: .86rem; color: var(--c-text-muted); line-height: 1.7; }

/* TEAM */
.team-scroll { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--c-purple) transparent; }
.team-scroll::-webkit-scrollbar { height: 3px; }
.team-scroll::-webkit-scrollbar-thumb { background: var(--c-purple); border-radius: 2px; }
.team-card { flex: 0 0 185px; background: var(--c-dark3); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); cursor: pointer; }
.team-card:hover { transform: translateY(-6px); border-color: rgba(250,204,21,.3); box-shadow: var(--shadow-md); }
.team-avatar { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.av-1 { background: linear-gradient(135deg,#4c1d95,#7c3aed); }
.av-2 { background: linear-gradient(135deg,#1e3a5f,#2563eb); }
.av-3 { background: linear-gradient(135deg,#14532d,#16a34a); }
.av-4 { background: linear-gradient(135deg,#7c2d12,#dc2626); }
.av-5 { background: linear-gradient(135deg,#1a1a2e,#6b21e8); }
.av-6 { background: linear-gradient(135deg,#0f172a,#0891b2); }
.team-info { padding: 1rem; }
.team-name { font-family: var(--font-display); font-size: .76rem; font-weight: 700; margin-bottom: 3px; line-height: 1.3; }
.team-role { font-size: .7rem; color: var(--c-text-muted); }

/* SPACES */
.spaces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.space-card { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); }
.space-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.space-visual { height: 220px; background: var(--c-dark3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sv-purple::before { content:''; position:absolute; width:250px; height:250px; border-radius:50%; background:rgba(107,33,232,.4); filter:blur(60px); }
.sv-yellow::before { content:''; position:absolute; width:250px; height:250px; border-radius:50%; background:rgba(250,204,21,.25); filter:blur(60px); }
.space-emoji { font-size: 4.5rem; position: relative; z-index: 1; animation: float 4s ease-in-out infinite; }
.space-card:nth-child(2) .space-emoji { animation-delay: -2s; }
.space-badge { position: absolute; top: .9rem; right: .9rem; background: rgba(0,0,0,.6); border: 1px solid var(--c-border); backdrop-filter: blur(10px); border-radius: 20px; padding: 3px 12px; font-size: .62rem; font-weight: 700; color: var(--c-yellow); letter-spacing: .06em; z-index: 1; }
.space-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; margin-bottom: .7rem; letter-spacing: -.02em; }
.space-desc { font-size: .86rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.space-formats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
.space-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--c-yellow); transition: var(--transition); }
.space-arrow { width: 26px; height: 26px; background: rgba(250,204,21,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.space-card:hover .space-arrow { background: var(--c-yellow); color: var(--c-dark); }

/* EVENTS */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.event-card { background: var(--c-dark3); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.event-card:hover { border-color: rgba(107,33,232,.4); transform: translateY(-3px); }
.event-top { padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.event-date { border-radius: var(--r-sm); padding: 8px 12px; text-align: center; flex-shrink: 0; }
.event-day { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; line-height: 1; color: white; }
.event-month { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.7); }
.event-type { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--c-yellow); margin-bottom: 4px; }
.event-title { font-family: var(--font-display); font-size: .86rem; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.event-where { font-size: .72rem; color: var(--c-text-muted); }
.event-foot { margin-top: auto; padding: .75rem 1.25rem; border-top: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; }
.event-spots { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--c-text-muted); }
.spot-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.spot-dot.green { background: var(--c-green); }
.spot-dot.red { background: var(--c-red); }

/* NEWS */
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.news-featured { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); display: block; }
.news-featured:hover { transform: translateY(-4px); border-color: rgba(107,33,232,.35); }
.news-visual { height: 220px; background: var(--c-dark3); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.news-vis-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(107,33,232,.3),rgba(250,204,21,.1)); }
.news-featured-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; line-height: 1.3; margin-bottom: .75rem; letter-spacing: -.02em; }
.news-excerpt { font-size: .85rem; color: var(--c-text-muted); line-height: 1.7; }
.news-list { display: flex; flex-direction: column; gap: .9rem; }
.news-item { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--r); padding: 1.1rem; transition: var(--transition); display: flex; gap: .9rem; align-items: flex-start; }
.news-item:hover { border-color: rgba(107,33,232,.3); transform: translateX(4px); }
.news-item-date { font-family: var(--font-display); font-size: .62rem; font-weight: 700; color: var(--c-text-muted); white-space: nowrap; padding-top: 2px; text-align: center; line-height: 1.4; flex-shrink: 0; }
.news-item-title { font-family: var(--font-display); font-size: .82rem; font-weight: 700; line-height: 1.35; margin-bottom: 3px; }
.news-item-cat { font-size: .65rem; color: var(--c-purple-mid); font-weight: 600; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.project-card { background: var(--c-dark3); border: 1px solid var(--c-border); border-radius: var(--r); padding: 1.5rem; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.project-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--c-purple); transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover { transform: translateY(-4px); border-color: rgba(107,33,232,.35); }
.project-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: rgba(107,33,232,.22); line-height: 1; margin-bottom: .6rem; transition: var(--transition); }
.project-card:hover .project-num { color: rgba(107,33,232,.5); }
.project-title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.project-desc { font-size: .82rem; color: var(--c-text-muted); line-height: 1.65; }

/* LIBRARY */
.library-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.lib-card { background: var(--c-dark2); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); cursor: pointer; }
.lib-card:hover { transform: translateY(-4px); border-color: rgba(107,33,232,.3); }
.lib-cover { height: 160px; background: var(--c-dark3); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.lib-status { position: absolute; top: 8px; right: 8px; }
.lib-body { padding: 1rem; }
.lib-title { font-family: var(--font-display); font-size: .76rem; font-weight: 700; margin-bottom: 3px; line-height: 1.35; }
.lib-author { font-size: .7rem; color: var(--c-text-muted); }

/* LIGHT THEME — HOME */
[data-theme="light"] .hero { background: transparent; }
[data-theme="light"] .hero-blob-1 { background: rgba(250,204,21,.2); width: 500px; height: 500px; top: -100px; right: -50px; }
[data-theme="light"] .hero-blob-2 { background: rgba(99,102,241,.2); width: 450px; height: 450px; bottom: -60px; left: -60px; }
[data-theme="light"] .hero-blob-3 { background: rgba(255,255,255,.08); }
[data-theme="light"] .hero-title .accent { color: var(--c-yellow-dark); }
[data-theme="light"] .hero-title .accent::after { background: var(--c-yellow); }
[data-theme="light"] .hero-eyebrow { background: var(--c-yellow); border-color: rgba(250,204,21,0.4); color: #1A1040; }
[data-theme="light"] .dot-pulse { background: #1A1040; }

/* Spaces */
[data-theme="light"] .space-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(14px); border-color: rgba(255,255,255,0.2); }
[data-theme="light"] .space-card:hover { background: rgba(255,255,255,0.2); }
[data-theme="light"] .space-visual { background: rgba(255,255,255,0.08); }
[data-theme="light"] .sv-purple::before { background: rgba(99,102,241,.2); }
[data-theme="light"] .sv-yellow::before { background: rgba(250,204,21,.2); }
[data-theme="light"] .space-link { color: var(--c-yellow); }
[data-theme="light"] .space-badge { background: var(--c-yellow); color: #1A1040; font-weight: 800; }
[data-theme="light"] .space-arrow { background: rgba(250,204,21,.2); color: var(--c-yellow); }
[data-theme="light"] .space-card:hover .space-arrow { background: var(--c-yellow); color: #1A1040; }

/* Events */
[data-theme="light"] .event-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .event-card:hover { background: rgba(255,255,255,0.18); }

/* News */
[data-theme="light"] .news-featured { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .news-item { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.12); }
[data-theme="light"] .news-item:hover { background: rgba(255,255,255,0.18); }
[data-theme="light"] .news-vis-overlay { background: linear-gradient(135deg, rgba(0,0,0,.1), rgba(250,204,21,.05)); }

/* Projects */
[data-theme="light"] .project-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .project-card:hover { background: rgba(255,255,255,0.18); }
[data-theme="light"] .project-num { color: rgba(250,204,21,.3); }
[data-theme="light"] .project-card:hover .project-num { color: rgba(250,204,21,.6); }
[data-theme="light"] .project-card::before { background: var(--c-yellow); }

/* Library */
[data-theme="light"] .lib-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .lib-cover { background: rgba(255,255,255,0.08); }

/* Team */
[data-theme="light"] .team-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.18); }
[data-theme="light"] .team-card:hover { background: rgba(255,255,255,0.2); border-color: rgba(250,204,21,.3); }

/* MVV mission cards */
[data-theme="light"] .mvv-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .mvv-card:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
[data-theme="light"] .mission-circle { background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); border-color: rgba(255,255,255,0.2); }
[data-theme="light"] .ring-1 { border-color: rgba(250,204,21,.2); }
[data-theme="light"] .ring-2 { border-color: rgba(255,255,255,.15); }
[data-theme="light"] .mission-circle-text span { color: var(--c-yellow); }

/* CTA */
[data-theme="light"] .cta-title span { color: var(--c-yellow) !important; }

/* ─── Hero orbs (light theme only) ─── */
.hero-orb { display: none; }
[data-theme="light"] .hero-orb {
  display: block; position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
[data-theme="light"] .hero-orb-purple {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  top: -15%; right: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, rgba(99,102,241,0.1) 40%, transparent 70%);
  border: 2px solid rgba(255,255,255,0.12);
  animation: orbFloat1 12s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(99,102,241,0.15);
}
[data-theme="light"] .hero-orb-yellow {
  width: 45vw; height: 45vw; max-width: 550px; max-height: 550px;
  bottom: -10%; left: -5%;
  background: radial-gradient(circle, rgba(250,204,21,0.25) 0%, rgba(250,204,21,0.08) 40%, transparent 70%);
  border: 2px solid rgba(250,204,21,0.15);
  animation: orbFloat2 14s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(250,204,21,0.1);
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.03); }
  66% { transform: translate(15px, -15px) scale(0.98); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(0.97); }
  66% { transform: translate(-20px, 15px) scale(1.04); }
}

/* RESPONSIVE HOME */
@media (max-width: 1024px) {
  .library-grid { grid-template-columns: repeat(3,1fr); }
  .mission-layout { grid-template-columns: 1fr; gap: 3rem; }
  .mission-circle { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 0 1.25rem 2rem;
    justify-content: space-between;
    flex-direction: column;
  }
  .hero-content {
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5.5rem;
  }
  .hero-tags {
    order: 2;
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding-bottom: 0.5rem;
  }
  .hero-tag {
    flex: 1 1 calc(50% - 4px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    text-align: left;
  }
  .hero-tag strong {
    display: inline;
    font-size: 1.15rem;
  }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-scroll { display: none; }
  .hero-blob-1 { width: 300px; height: 300px; top: -80px; right: -60px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { width: 150px; height: 150px; }

  .mission-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-circle { max-width: 280px; margin: 0 auto; }

  .spaces-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-title { font-size: 1rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .library-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 0 1.25rem 1.5rem; }
  .hero-content { padding-top: 5rem; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: .5rem; }
  .hero-sub { font-size: .8rem; margin-bottom: 1rem; max-width: 50%; }
  .hero-tags { flex-direction: row; gap: 6px; padding-bottom: .25rem; }
  .hero-tag { flex: 1; padding: 6px 8px; font-size: .62rem; }
  .hero-tag strong { font-size: .85rem; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; font-size: .8rem; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 0 1rem 1.5rem; }
  .hero-content { padding-top: 5rem; }
  .hero-title { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .hero-eyebrow { font-size: 0.62rem; padding: 5px 12px; }
  .hero-sub { font-size: 0.86rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-tag { flex: 1 1 calc(50% - 4px); padding: 8px 10px; }
  .hero-tag strong { font-size: 1rem; }

  .team-card { flex: 0 0 155px; }

  .spaces-grid { gap: 1rem; }
  .space-visual { height: 180px; }
  .space-emoji { font-size: 3.5rem; }

  .events-grid { gap: 1rem; }

  .library-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .lib-cover { height: 130px; font-size: 2.5rem; }

  .news-visual { height: 180px; }

  .projects-grid { gap: 1rem; }
}
