/* ═══════════════════════════════════════════════
   HOME PAGE STYLES — Tech-Academy (index.html)
   Page-specific styles not shared with other pages
   ═══════════════════════════════════════════════ */


/* ─── SECTION SPACING ────────────────────────── */
.section    { padding-block: 6rem; }
.section-sm { padding-block: 4rem; }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  background: var(--bg);
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding-block: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,104,50,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: var(--cobalt-pale);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cobalt-pale);
  color: var(--cobalt);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cobalt);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cobalt);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
}

.hero-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  background: var(--lime);
  border-radius: var(--r-lg);
  z-index: 0;
  aspect-ratio: 3/2;
}

.hero-img-accent-2 {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--cobalt);
  border-radius: var(--r);
  z-index: 0;
  opacity: 0.3;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.hero-stat-chip {
  position: absolute;
  bottom: -18px;
  left: 20px;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--cobalt);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-icon svg { width: 20px; height: 20px; }

.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.hero-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.hero-strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.25rem;
  white-space: nowrap;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: all 0.15s;
  white-space: nowrap;
}

.skill-chip:hover {
  background: var(--cobalt);
  color: #fff;
}


/* ═══════════════════════════════════════════════
   HERO BG SECTION
   ═══════════════════════════════════════════════ */
.hero-bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  max-height: calc(100vh - 70px);
}

.hero-bg-img {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.hero-bg-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-bg-text h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-bg-text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════════
   THEMEN CARDS
   ═══════════════════════════════════════════════ */
.themen {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.themen::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,104,50,0.10) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
  animation: orb-drift 10s ease-in-out infinite alternate;
}

.themen::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,77,0.09) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
  animation: orb-drift 13s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 50px) scale(1.15); }
}

.themen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.themen-header .link-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cobalt);
  white-space: nowrap;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}

.themen-header .link-all:hover { gap: 0.6rem; }

.themen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.themen-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(12,14,26,0.05);
  transition: box-shadow 0.45s cubic-bezier(0.22,1,0.36,1),
              transform 0.45s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s;
}

/* animated shimmer top border */
.themen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cobalt) 30%,
    var(--lime) 60%,
    transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s cubic-bezier(0.22,1,0.36,1);
  border-radius: 18px 18px 0 0;
}

/* hover glow background */
.themen-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(244,104,50,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.themen-card:hover {
  box-shadow: 0 16px 48px rgba(244,104,50,0.12), 0 2px 8px rgba(12,14,26,0.06);
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(244,104,50,0.2);
}

.themen-card:hover::before {
  background-position: 0% 0;
}

.themen-card:hover::after {
  opacity: 1;
}

.card-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  background: var(--cobalt-pale);
  border-radius: 16px;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), background 0.3s;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.card-body {
  flex: 1;
  min-width: 0;
}

.themen-card:hover .card-icon {
  transform: scale(1.18) rotate(-6deg);
  background: linear-gradient(135deg, #ffe8d8, #ffd0b0);
}

.card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cobalt);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.themen-card:hover .card-num {
  opacity: 0.3;
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.card-sub {
  font-size: 0.75rem;
  color: var(--cobalt);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}


/* ─── Card SVG icon animation ────────────────── */
.card-icon-svg {
  width: 6.5rem !important;
  height: 6.5rem !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible;
}

.card-3d-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes float3d {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-4px); }
}


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-accent {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 90%;
  height: 90%;
  background: var(--cobalt-pale);
  border-radius: var(--r-lg);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-text > p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cobalt);
  border-left: 3px solid var(--cobalt);
  padding-left: 1rem;
  margin-block: 1.5rem;
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════
   METHODE (3 Schritte)
   ═══════════════════════════════════════════════ */
.methode { background: #fff; }

.methode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.methode-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.methode-num {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: var(--cobalt);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.methode-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 0.75rem;
}

.methode-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.methode-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   TECH TILES
   ═══════════════════════════════════════════════ */
.tech-tiles { background: var(--bg); }

.tiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.tile {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--cobalt-dark);
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.tile-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 3rem;
  opacity: 0.25;
  transition: opacity 0.3s, transform 0.3s;
}

.tile:hover .tile-icon {
  opacity: 0.5;
  transform: translate(-50%, -70%) scale(1.1);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,14,26,0.85) 0%, rgba(12,14,26,0.2) 60%, transparent 100%);
}

.tile-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tile-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.tile-badge {
  background: var(--lime);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════
   GALERIE
   ═══════════════════════════════════════════════ */
.galerie {
  padding-block: 4rem;
  background: var(--bg);
}

.galerie-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  border-radius: 14px;
  overflow: hidden;
}

.galerie-item {
  overflow: hidden;
  position: relative;
}

.galerie-item:first-child {
  grid-row: span 2;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galerie-item:hover img {
  transform: scale(1.04);
}

.galerie-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cobalt);
  text-decoration: none;
  white-space: nowrap;
}

.galerie-link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════
   INFO & KONTAKT
   ═══════════════════════════════════════════════ */
.info-section { background: #fff; }

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-left h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.info-left > p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-prop {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vp-icon {
  width: 44px;
  height: 44px;
  background: var(--cobalt-pale);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.vp-icon svg { width: 22px; height: 22px; }

.vp-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
}

.vp-text p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  color: #fff;
}

.info-card.card-club  { background: var(--cobalt); }
.info-card.card-camps { background: var(--cobalt); }

.info-card.card-donate {
  background: var(--ink);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
}

.card-donate-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.card-donate-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card-donate-icon svg { width: 22px; height: 22px; }

.card-donate-text .ic-label { margin-bottom: 0.2rem; }
.card-donate-text p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.15rem;
  max-width: 480px;
}

.ic-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.4rem;
}

.ic-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ic-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ic-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ic-row-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ic-row-icon svg { width: 16px; height: 16px; }

.ic-row-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #fff;
}

.ic-row-text strong {
  color: #fff;
  display: block;
  font-weight: 600;
}

.ic-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}


/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  background: var(--cobalt);
  padding-block: 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band .overline {
  color: var(--lime);
  justify-content: center;
}

.cta-band .overline::before { background: var(--lime); }

.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: #fff;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-address {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}


/* ═══════════════════════════════════════════════
   TEAM PREVIEW
   ═══════════════════════════════════════════════ */
.team-section { background: var(--bg); }

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.team-header .link-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cobalt);
  white-space: nowrap;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}

.team-header .link-all:hover { gap: 0.6rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}

.team-card-body { padding: 1.5rem; }

.team-badge {
  display: inline-block;
  background: var(--cobalt-pale);
  color: var(--cobalt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.team-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-skill-tag {
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════
   HOME RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container      { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right           { display: none; }
  .themen-grid          { grid-template-columns: 1fr; gap: 1rem; }
  .themen-card          { flex-direction: column; }
  .about-grid           { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap       { display: none; }
  .info-cards           { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-bg       { max-height: none; }
  .galerie-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .galerie-item:first-child { grid-row: span 1; }
  .methode-grid  { grid-template-columns: 1fr; }
  .tiles-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr; max-width: 360px; }
  .hero-stat-chip { left: 0; bottom: 16px; }
  .section       { padding-block: 4rem; }
  .info-card.card-donate .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .info-card.card-donate {
    flex-direction: column;
    align-items: flex-start;
  }
}
