/* QSpid — Landing + News nach Mockup */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #e6007e;
  --pink-deep: #c2185b;
  --blue: #1e5eff;
  --yellow: #f5c400;
  --teal: #00a8a0;
  --red: #e53935;
  --green: #43a047;
  --orange: #ff8a00;
  --ink: #111;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --bg: #f7f8fa;
  --white: #fff;
  --max: 1180px;
  --radius: 10px;
  --font: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* —— Header (Mockup) —— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: nowrap;
}
.logo,
.logo--mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  text-decoration: none !important;
  flex-shrink: 0;
  color: var(--ink);
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transform: perspective(240px) rotateX(8deg) rotateY(-14deg);
  filter:
    drop-shadow(0 5px 8px rgba(0, 0, 0, .2))
    drop-shadow(0 0 10px rgba(228, 3, 3, .18))
    drop-shadow(0 0 14px rgba(36, 64, 142, .16));
  transition: transform .28s ease, filter .28s ease;
  transform-style: preserve-3d;
  animation: qspid-logo-bob 3.2s ease-in-out infinite;
}
.logo--mark:hover .logo-mark {
  transform: perspective(240px) rotateX(2deg) rotateY(-4deg) translateY(-2px) scale(1.08);
  filter:
    drop-shadow(0 10px 16px rgba(115, 41, 130, .28))
    drop-shadow(0 0 18px rgba(255, 140, 0, .22));
  animation-play-state: paused;
}
.logo-word {
  line-height: 1;
  background: linear-gradient(110deg, #e40303 0%, #ff8c00 18%, #c9a800 34%, #008026 52%, #24408e 70%, #732982 86%, #e6007e 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: qspid-pride-shift 7s linear infinite;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.06));
}
.site-footer .logo-mark {
  width: 34px;
  height: 34px;
  animation: none;
  transform: perspective(200px) rotateX(6deg) rotateY(-10deg);
}
.site-footer .logo-word {
  animation: none;
  background: none;
  color: var(--ink);
  -webkit-background-clip: unset;
  background-clip: unset;
  filter: none;
}
@keyframes qspid-logo-bob {
  0%, 100% { transform: perspective(240px) rotateX(8deg) rotateY(-14deg) translateY(0); }
  50% { transform: perspective(240px) rotateX(6deg) rotateY(-10deg) translateY(-2px); }
}
@keyframes qspid-pride-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 180% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-mark,
  .logo-word { animation: none; }
}
.logo-q {
  background: linear-gradient(135deg, #ff2d55, #ff9500 28%, #ffd60a 45%, #34c759 60%, #007aff 78%, #af52de);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.1rem;
  line-height: 1;
}
.logo-rest { color: var(--blue); }

.nav-lp {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.nav-lp a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none !important;
  white-space: nowrap;
}
.nav-lp a:hover { color: var(--pink); }

.nav-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  flex: 0 1 auto;
  min-width: 0;
}
.nav-cats a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none !important;
  white-space:nowrap;
}
.nav-cats a.top { background: var(--pink); }
.nav-cats a.news { background: var(--blue); }
.nav-cats a.community { background: var(--yellow); color: #222; }
.nav-cats a.events { background: var(--teal); }
.nav-cats a.kultur { background: var(--red); }
.nav-cats a.gesundheit { background: var(--green); }

.header-utils { display: none; }

/* Suche — Pride-Glow, Texte nie abgeschnitten */
.header-search-block {
  margin-left: auto;
  flex: 1 1 320px;
  max-width: 440px;
  min-width: 220px;
}
.search-form,
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  background: #fff;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}
.header-search--pill { flex-direction: row; gap: 0; }
.header-search--queer {
  padding: 3px;
  background:
    linear-gradient(#fffafd, #fff) padding-box,
    linear-gradient(120deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982, #e6007e, #e40303) border-box;
  background-size: 100% 100%, 220% 100%;
  border: 3px solid transparent;
  box-shadow:
    0 8px 24px rgba(230, 0, 126, .18),
    0 0 0 1px rgba(255, 255, 255, .6) inset;
  animation: qspid-pride-border 6s linear infinite;
}
.header-search--queer:focus-within {
  animation-duration: 2.2s;
  box-shadow:
    0 0 0 4px rgba(230, 0, 126, .18),
    0 10px 28px rgba(115, 41, 130, .22);
}
.header-search--queer input,
.header-search--queer button,
.header-search-field {
  position: relative;
  z-index: 1;
}
.header-search-field {
  flex: 1;
  min-width: 0;
  position: relative;
  display: grid;
  align-items: center;
}
.search-form input {
  width: 100%;
  border: 0;
  min-width: 0;
  padding: 13px 18px 13px 8px;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
/* Kurzer Placeholder — passt immer; Keywords laufen separat */
.search-form input::placeholder {
  color: #9a6b88;
  font-weight: 600;
  opacity: .85;
}
.header-search--queer:focus-within input::placeholder,
.header-search--queer.is-filled input::placeholder {
  opacity: .55;
}
.header-search-marquee {
  position: absolute;
  left: 8px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  opacity: 0;
}
/* Marquee nur sichtbar wenn Input leer + kein Focus (Placeholder reicht sonst) */
.header-search--queer:not(:focus-within):not(.is-filled) input::placeholder {
  color: transparent;
}
.header-search--queer:not(:focus-within):not(.is-filled) .header-search-marquee {
  opacity: 1;
}
.header-search-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: qspid-search-marquee 14s linear infinite;
  will-change: transform;
}
.header-search-marquee-track span {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: #8a4d72;
  padding: 0 10px;
}
.header-search-marquee-track span::after {
  content: '·';
  margin-left: 10px;
  color: #e6007e;
  font-weight: 800;
}
.header-search-marquee-track span:nth-child(6n+1) { color: #e6007e; }
.header-search-marquee-track span:nth-child(6n+2) { color: #24408e; }
.header-search-marquee-track span:nth-child(6n+3) { color: #c44a1a; }
.header-search-marquee-track span:nth-child(6n+4) { color: #0a8ab0; }
.header-search-marquee-track span:nth-child(6n+5) { color: #008026; }
.header-search-marquee-track span:nth-child(6n) { color: #732982; }

.search-form button {
  border: 0;
  background: linear-gradient(135deg, #e6007e, #732982 50%, #24408e);
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 0;
  border-radius: 999px;
  margin: 2px;
  box-shadow: 0 4px 12px rgba(230, 0, 126, .35);
  transition: transform .15s ease, filter .15s ease;
}
.search-form button:hover {
  filter: brightness(1.08);
  transform: scale(1.04);
}
.search-form button svg { width: 20px; height: 20px; }

@keyframes qspid-pride-border {
  0% { background-position: 0 0, 0% 50%; }
  100% { background-position: 0 0, 220% 50%; }
}
@keyframes qspid-search-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .header-search--queer { animation: none; }
  .header-search-marquee-track { animation: none; }
  .header-search--queer:not(:focus-within):not(.is-filled) input::placeholder {
    color: #9a6b88;
  }
  .header-search--queer:not(:focus-within):not(.is-filled) .header-search-marquee {
    display: none;
  }
}

/* —— Grid home —— */
.home-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr 0.75fr;
  gap: 18px;
  padding: 18px 0 8px;
}
.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  background: #222 center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.78));
}
.hero-body {
  position: relative;
  z-index: 1;
  padding: 22px 24px 26px;
  width: 100%;
}
.badge-top {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  max-width: 18ch;
}
.hero p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  opacity: .92;
  max-width: 42ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-white { background: var(--white); color: var(--ink); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-orange { background: var(--orange); color: #fff; width: 100%; justify-content: center; }

.panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.panel-h {
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}
.panel-h.pink { background: var(--pink); }
.panel-h.blue { background: var(--blue); }
.panel-h.teal { background: var(--teal); }
.panel-h.orange { background: var(--orange); }
.panel-h.green { background: var(--green); }
.panel-body { padding: 10px 12px 14px; }

.list-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.list-item:last-child { border-bottom: 0; }
.list-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: #ddd;
}
.list-item h3 {
  margin: 0 0 4px;
  font-size: 0.88rem;
  line-height: 1.25;
}
.meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.trending h2 {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: .04em;
}
.trend-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.trend-item:last-child { border-bottom: 0; }
.trend-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.trend-item h3 { margin: 0 0 4px; font-size: 0.86rem; }

/* Mid sections */
.mid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  padding: 8px 0 18px;
}
.row-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.row-item:last-child { border-bottom: 0; }
.row-item img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 6px; background: #ddd;
}
.row-item h3 { margin: 0 0 4px; font-size: 0.9rem; }

.kultur-lead img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}
.kultur-lead h3 { margin: 0 0 4px; font-size: 1rem; }
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--teal);
  margin-bottom: 4px;
}
.event-card {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.event-card:last-of-type { border-bottom: 0; }
.event-card h3 { margin: 0 0 4px; font-size: 0.95rem; }
.event-card .more { color: var(--orange); font-weight: 700; font-size: 0.82rem; }

.bottom-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  padding: 0 0 28px;
}
.health-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.health-row-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.teaser-mini {
  margin: 0 0 4px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-more { margin: 8px 0 18px; }
.top-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.top-more-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  text-decoration: none !important;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.top-more-card:nth-last-child(-n+2) { border-bottom: 0; }
.top-more-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}
.top-more-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.25;
}
.top-more-card p {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.news-feed { margin: 0 0 32px; }
.news-feed-list { padding-top: 4px; }
.news-feed-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none !important;
}
.news-feed-item:last-child { border-bottom: 0; }
.news-feed-item img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}
.news-feed-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
}
.news-feed-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.news-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}
.news-feed-more {
  padding: 8px 14px 18px;
  text-align: center;
}
.health-card h3 { margin: 0 0 4px; font-size: 0.88rem; }
.health-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
  background: #ddd;
}

.cta {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  background: #333 center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(233,30,140,.15), rgba(194,24,91,.88));
}
.cta-body {
  position: relative;
  z-index: 1;
  padding: 22px;
}
.cta h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.15;
  max-width: 12ch;
}

/* Search results (legacy) */
.page-main { padding: 24px 0 40px; }
.page-main h1 { margin: 0 0 8px; font-size: 1.6rem; }
.result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 10px 0;
}
.result h2 { margin: 0 0 4px; font-size: 1.05rem; color: var(--blue); }
.result .url { font-size: 0.78rem; color: var(--green); }
.result .snip { margin: 6px 0 0; font-size: 0.9rem; color: var(--muted); }
.result .kw { margin-top: 6px; font-size: 0.75rem; color: var(--pink); }

/* —— Google-ähnliche Suche —— */
.gsearch {
  background: #fff;
  padding: 8px 0 48px;
  min-height: 50vh;
}
.gsearch-wrap { max-width: none; width: 100%; }
.gsearch-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 8px 0 18px;
}
.gsearch-stats-block { min-width: 0; }
.gsearch-stats {
  margin: 0;
  font-size: 1.05rem;
  color: #202124;
  font-weight: 500;
}
.gsearch-stats strong { font-weight: 700; }
.gsearch-substats {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: #70757a;
}
.gsearch-newsstrip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 20px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  font-size: 0.88rem;
}
.gsearch-newsstrip-label {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e91e8c;
}
.gsearch-newsstrip a {
  color: #1a0dab;
  text-decoration: none;
  font-weight: 500;
}
.gsearch-newsstrip a:hover { text-decoration: underline; }

/* Videos + Bilder unter Wikipedia */
.gsearch-media {
  margin: 0 0 22px;
  max-width: none;
}
.gsearch-media-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.gsearch-media-label {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e91e8c;
}
.gsearch-media-more {
  font-size: 0.78rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}
.gsearch-media-more:hover { text-decoration: underline; }
.gsearch-video-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gsearch-video-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none !important;
  color: inherit;
  min-width: 0;
}
.gsearch-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #e8eaed;
}
.gsearch-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gsearch-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  padding-left: 2px;
}
.gsearch-video-card:hover .gsearch-video-play { background: #ff0000; }
.gsearch-video-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #202124;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gsearch-video-channel {
  font-size: 0.7rem;
  color: #70757a;
}
.gsearch-image-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.gsearch-image-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f3f4;
  text-decoration: none !important;
}
.gsearch-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease;
}
.gsearch-image-card:hover img { transform: scale(1.04); }
.gsearch-image-src {
  position: absolute;
  left: 6px;
  bottom: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  padding: 2px 6px;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .gsearch-video-row,
  .gsearch-image-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.g-result--hostbreak { margin-top: 8px; }
.gsearch-perpage {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #5f6368;
}
.gsearch-perpage select {
  border: 1px solid #dadce0;
  border-radius: 6px;
  padding: 6px 10px;
  background: #fff;
  font: inherit;
}
.gsearch-grid,
.gsearch-desk {
  display: block;
  width: 100%;
}
.gsearch-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px;
  align-items: start;
  margin: 0 0 20px;
}
.gsearch-main { min-width: 0; max-width: none; width: 100%; }
.gsearch-info {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 14px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
}
.gsearch-info-title { margin: 0 0 4px; font-size: 1.05rem; }
.gsearch-info-lead { margin: 0 0 16px; font-size: 0.82rem; color: #70757a; }
.gsearch-info-block { margin: 0 0 16px; padding: 0 0 14px; border-bottom: 1px solid #f1f3f4; }
.gsearch-info-block:last-child { margin: 0; padding: 0; border: 0; }
.gsearch-info-block h3 {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5f6368;
}
.gsearch-info-list,
.gsearch-info-links { margin: 0; padding: 0; list-style: none; }
.gsearch-info-list li { margin: 0 0 10px; font-size: 0.84rem; line-height: 1.45; color: #3c4043; }
.gsearch-info-links li { margin: 0 0 6px; }
.gsearch-info-links a { font-weight: 600; color: #1a0dab; text-decoration: none; }
.gsearch-info-block--help p { margin: 0 0 12px; font-size: 0.84rem; line-height: 1.4; }
.gsearch-info-tel {
  display: inline-block;
  margin: 2px 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a0dab;
  text-decoration: none;
}
.gsearch-info-note {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  color: #70757a;
}
.gsearch-info-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.gsearch-info-chips a {
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #202124;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 980px) {
  .gsearch-split { grid-template-columns: 1fr; }
  .gsearch-info { position: static; }
}
.gsearch-empty {
  max-width: 560px;
  padding: 40px 0 20px;
}
.gsearch-empty h1 { margin: 0 0 10px; font-size: 1.75rem; }
.gsearch-empty p { color: var(--muted); margin: 0 0 16px; }
.gsearch-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gsearch-chips a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f3f4;
  color: #202124;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
}
.gsearch-chips a:hover { background: #e8eaed; }
.gsearch-none { color: #5f6368; }

.gsearch-section-label {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #202124;
}
.gsearch-topnews {
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebebeb;
}
.gsearch-topnews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gsearch-topnews-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  text-decoration: none !important;
  color: inherit;
  min-height: 120px;
  background: #fafafa;
}
.gsearch-topnews-card:hover { background: #f1f3f4; }
.gsearch-topnews-src { font-size: 0.72rem; color: #70757a; font-weight: 600; }
.gsearch-topnews-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a0dab;
  line-height: 1.3;
}
.gsearch-topnews-snip { font-size: 0.78rem; color: #4d5156; }

.g-result { margin: 0 0 26px; max-width: none; width: 100%; }
.g-cite {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3px;
}
.g-favicon,
.g-favicon-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #1a73e8;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #e8eaed;
}
.g-cite-host { font-size: 0.9rem; color: #202124; line-height: 1.25; font-weight: 400; }
.g-cite-url { font-size: 0.78rem; color: #4d5156; word-break: break-all; line-height: 1.3; }
.g-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #5f6368;
  background: #f1f3f4;
  padding: 3px 8px;
  border-radius: 999px;
}
.g-title { margin: 0 0 4px; font-size: 1.25rem; font-weight: 400; line-height: 1.3; }
.g-title a {
  color: #1a0dab;
  text-decoration: none;
}
.g-title a:hover { text-decoration: underline; }
.g-title a:visited { color: #681da8; }
.g-snip {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #4d5156;
}
.g-snip b { font-weight: 700; color: #202124; }
.g-kw { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.g-kw a {
  font-size: 0.72rem;
  color: #1967d2;
  background: #e8f0fe;
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none !important;
}

.gsearch-side { position: sticky; top: 90px; }
.g-side-card {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 14px 16px 12px;
  margin-bottom: 14px;
  background: #fff;
}
.g-side-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 10px;
}
.g-side-hero-link { text-decoration: none !important; color: inherit; display: block; }
.g-side-hero h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #1a0dab;
}
.g-side-hero p { margin: 0 0 8px; font-size: 0.86rem; color: #4d5156; }
.g-side-meta { font-size: 0.75rem; color: #70757a; }
.g-side-list { list-style: none; margin: 0; padding: 0; }
.g-side-list li { border-top: 1px solid #f1f3f4; }
.g-side-list li:first-child { border-top: 0; }
.g-side-list a {
  display: block;
  padding: 10px 0;
  text-decoration: none !important;
  color: inherit;
}
.g-side-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a0dab;
  line-height: 1.3;
  margin-bottom: 3px;
}
.g-side-list span { font-size: 0.75rem; color: #70757a; }
.g-side-trend { list-style: none; margin: 0; padding: 0; }
.g-side-trend li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid #f1f3f4;
}
.g-side-trend li:first-child { border-top: 0; }
.g-side-num { font-weight: 800; color: #ff8a00; font-size: 1.05rem; }
.g-side-trend a {
  text-decoration: none !important;
  color: #202124;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.g-side-trend small { display: block; font-weight: 400; color: #70757a; margin-top: 2px; }

.g-pager {
  margin: 28px 0 8px;
  padding-top: 18px;
  border-top: 1px solid #ebebeb;
}
.g-pager-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.g-pager-pages a,
.g-pager-current,
.g-pager-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a73e8;
  border: 1px solid transparent;
}
.g-pager-pages a:hover { background: #e8f0fe; }
.g-pager-current {
  background: #1a73e8;
  color: #fff;
}
.g-pager-btn { border-color: #dadce0; color: #202124; }
.g-pager-dots { color: #9aa0a6; padding: 0 4px; }
.g-pager-meta {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #70757a;
}

@media (max-width: 960px) {
  .gsearch-grid { grid-template-columns: 1fr; gap: 24px; }
  .gsearch-side { position: static; }
  .gsearch-topnews-row { grid-template-columns: 1fr; }
}

.article-page {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  max-width: 760px;
}
.article-page h1 { margin-top: 0; }
.source-link { color: var(--blue); font-weight: 700; }

.page-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 0 14px;
}
.page-nav + .article-page { margin-top: 0; }
.article-page + .page-nav { margin: 16px 0 0; }
.page-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.page-nav__btn:hover { filter: brightness(0.97); }
.page-nav__back {
  background: #f0f2f5;
}

/* Footer */
.site-footer {
  background: #eceff3;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  margin-top: 12px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}
.social {
  display: flex;
  gap: 10px;
}
.social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #cfd5de;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none !important;
  color: #333;
}

.empty-note {
  padding: 12px 14px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

@media (max-width: 1100px) {
  .nav-cats a { padding: 6px 10px; font-size: 0.75rem; }
  .header-search { max-width: 280px; }
}
@media (max-width: 960px) {
  .home-grid, .mid-grid, .bottom-grid { grid-template-columns: 1fr; }
  .health-row, .health-row-wide { grid-template-columns: 1fr 1fr; }
  .top-more-grid { grid-template-columns: 1fr; }
  .top-more-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .top-more-card:last-child { border-bottom: 0; }
  .header-utils span { display: none; }
  .header-top { flex-wrap: wrap; }
  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }
}
@media (max-width: 640px) {
  .nav-cats { order: 4; width: 100%; flex-wrap: wrap; }
  .logo { font-size: 1.5rem; }
  .logo-q { font-size: 1.7rem; }
  .health-row, .health-row-wide { grid-template-columns: 1fr; }
  .news-feed-item,
  .top-more-card {
    grid-template-columns: 96px 1fr;
    gap: 10px;
  }
  .news-feed-item img,
  .top-more-card img {
    width: 96px;
    height: 72px;
  }
}

/* —— SEO Lead —— */
.seo-h1 {
  margin: 14px 0 8px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ff2d55, #ff9500 40%, #af52de);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.seo-lead {
  margin: 0 0 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3a3a48;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(233, 30, 140, .12);
  border-radius: 10px;
}
.home-vivid .hero-title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  max-width: 18ch;
  font-weight: 800;
}
.footer-seo {
  padding: 0 0 22px;
  font-size: 0.78rem;
  color: #6a6a78;
  line-height: 1.4;
}
.footer-seo p { margin: 0; }

/* —— Startseite vivid (Pride) —— */
body.home-vivid {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(255, 45, 85, .12), transparent 55%),
    radial-gradient(900px 420px at 95% 0%, rgba(175, 82, 222, .14), transparent 50%),
    radial-gradient(800px 380px at 50% 100%, rgba(0, 122, 255, .08), transparent 55%),
    linear-gradient(180deg, #fff7fb 0%, #f4f7ff 45%, #f7f8fa 100%);
}
.pride-bar {
  height: 5px;
  background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24468e, #732982);
  box-shadow: 0 2px 12px rgba(228, 3, 3, .25);
}
.home-vivid .hero-pop {
  min-height: 380px;
  border: 0;
  box-shadow:
    0 18px 40px rgba(233, 30, 140, .22),
    0 4px 0 rgba(255, 214, 10, .55);
  transform: translateZ(0);
  animation: qspid-hero-in .7s cubic-bezier(.2, .8, .2, 1) both;
}
.home-vivid .hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: linear-gradient(120deg, rgba(255,45,85,.35), rgba(255,149,0,.25), rgba(175,82,222,.3));
  filter: blur(28px);
  opacity: .85;
  pointer-events: none;
  z-index: 0;
  animation: qspid-glow 6s ease-in-out infinite alternate;
}
.home-vivid .hero::after {
  background:
    linear-gradient(180deg, rgba(20, 8, 40, .05) 15%, rgba(20, 8, 40, .78) 100%),
    linear-gradient(90deg, rgba(233, 30, 140, .25), transparent 40%);
}
.home-vivid .badge-top {
  background: linear-gradient(90deg, #ff2d55, #ff9500);
  box-shadow: 0 4px 14px rgba(255, 45, 85, .45);
  letter-spacing: .08em;
}
.home-vivid .btn-pop {
  background: linear-gradient(135deg, #ff2d55, #af52de 55%, #007aff);
  color: #fff;
  box-shadow: 0 8px 22px rgba(175, 82, 222, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-vivid .btn-pop:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 45, 85, .4);
  text-decoration: none !important;
}
.home-vivid .panel-pop {
  border: 0;
  box-shadow: 0 10px 28px rgba(26, 26, 40, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-vivid .panel-pop:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 26, 40, .12);
}
.home-vivid .panel-h.pink { background: linear-gradient(90deg, #ff2d55, #e91e8c); }
.home-vivid .panel-h.blue { background: linear-gradient(90deg, #1e5eff, #007aff); }
.home-vivid .panel-h.teal { background: linear-gradient(90deg, #00a8a0, #34c759); }
.home-vivid .panel-h.orange { background: linear-gradient(90deg, #ff8a00, #ffd60a); color: #1a1a1a; }
.home-vivid .panel-h.green { background: linear-gradient(90deg, #43a047, #00c853); }
.home-vivid .trending-pop {
  background: linear-gradient(160deg, #fff 0%, #fff0f7 100%);
  border-radius: var(--radius);
  padding: 14px 14px 8px;
  border: 1px solid rgba(233, 30, 140, .15);
  box-shadow: 0 10px 28px rgba(233, 30, 140, .1);
}
.home-vivid .trending-pop h2 {
  background: linear-gradient(90deg, #e91e8c, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-vivid .trend-num {
  background: linear-gradient(180deg, #ff8a00, #ff2d55);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-vivid .list-item img,
.home-vivid .row-item img,
.home-vivid .health-card img,
.home-vivid .kultur-lead img {
  background: linear-gradient(135deg, #ff2d55, #ffd60a, #007aff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
.home-vivid .event-card-pop {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(255, 138, 0, .08), rgba(255, 214, 10, .12));
  border: 1px solid rgba(255, 138, 0, .2);
}
.home-vivid .cta-pop {
  border-radius: var(--radius);
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(175, 82, 222, .28);
}
.home-vivid .cta-pop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,45,85,.72), rgba(175,82,222,.65) 55%, rgba(0,122,255,.55));
}
.home-vivid .cta-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  color: #fff;
}
.home-vivid .cta-body h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  max-width: 16ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}
.home-vivid .health-card-pop {
  transition: transform .18s ease;
}
.home-vivid .health-card-pop:hover {
  transform: translateY(-4px);
  text-decoration: none;
}
@keyframes qspid-hero-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: none; }
}
@keyframes qspid-glow {
  from { opacity: .55; transform: translateX(-4%); }
  to { opacity: .95; transform: translateX(4%); }
}

/* —— Start: Top-News-Hero + Spotlight —— */
body.home-landing {
  background: #f5f6f8;
  --pink: #e6007e;
}
body.home-landing .home-main { padding: 0 0 40px; }

.top-hero {
  position: relative;
  min-height: min(68vh, 560px);
  overflow: hidden;
  background: #111;
}
.top-hero-link {
  display: block;
  position: relative;
  min-height: inherit;
  text-decoration: none !important;
  color: #fff;
}
.top-hero-media {
  position: absolute;
  inset: 0;
}
.top-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  animation: top-hero-ken 16s ease-in-out infinite alternate;
}
.top-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  pointer-events: none;
}
.top-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 48px 0 44px;
  max-width: 720px;
  animation: lp-rise .7s cubic-bezier(.2,.8,.2,1) both;
}
.top-hero-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.top-hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 18ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.top-hero-teaser {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  max-width: 46ch;
}
.top-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.top-hero-cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}
.top-hero-link:hover .top-hero-cta {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.spotlight {
  padding: 28px 0 8px;
}
.spotlight-head {
  margin-bottom: 18px;
}
.spotlight-head h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.spotlight-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-feature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 100%;
}
.news-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.news-feature-media {
  aspect-ratio: 16 / 10;
  background: #e8eaed;
  overflow: hidden;
}
.news-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.news-feature:hover .news-feature-media img {
  transform: scale(1.04);
}
.news-feature-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1;
}
.news-feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-feature-meta .tag {
  background: #fff0f7;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.news-feature-meta .meta {
  font-size: 0.75rem;
  color: #70757a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-feature-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.news-feature:hover h3 { color: var(--pink); }
.news-feature-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5c5c5c;
}

.section-label-wrap {
  padding: 18px 0 0;
}
.section-overview-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@keyframes lp-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes top-hero-ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translate3d(-1%, 0, 0); }
}

@media (max-width: 960px) {
  .spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav-lp { gap: 14px; justify-content: flex-start; }
  .top-hero { min-height: 54vh; }
}
@media (max-width: 640px) {
  .header-top { flex-wrap: wrap; gap: 10px; }
  .nav-lp { order: 3; width: 100%; justify-content: space-between; }
  .header-search-block {
    order: 2;
    flex: 1 1 100%;
    max-width: none;
  }
  .spotlight-grid { grid-template-columns: 1fr; }
  .top-hero-body { padding: 32px 0 28px; }
  .top-hero-title { max-width: none; }
}

/* —— Botopz Dating Ad (professionell, kein Pink) —— */
.botopz-ad { margin: 14px 0; }
.botopz-ad-badge {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8b929a;
  flex-shrink: 0;
}

.botopz-ad--landing { margin: 12px 0 10px; }
.botopz-ad-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e5ea;
  background: linear-gradient(180deg, #fbfbfc 0%, #f3f5f7 100%);
  text-decoration: none !important;
  color: #15181e;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.botopz-ad-pro:hover {
  border-color: #c9d0d8;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
  background: #fff;
}
.botopz-ad-pro-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1 1 280px;
}
.botopz-ad-pro-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.botopz-ad-pro-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.botopz-ad-pro-brand span {
  display: block;
  font-size: 0.78rem;
  color: #5f6770;
}
.botopz-ad-pro-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3d4450;
  max-width: 52ch;
}
.botopz-ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: #15181e;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background .15s ease;
}
.botopz-ad-cta--pro { white-space: nowrap; }
.botopz-ad-cta:hover,
.botopz-ad-pro:hover .botopz-ad-cta { background: #0b3d91; }

.botopz-ad--search {
  max-width: 652px;
  margin: 8px 0 26px;
  padding: 14px 16px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.botopz-ad--search .botopz-ad-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
.botopz-ad-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.botopz-ad-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: #15181e;
  flex-shrink: 0;
}
.botopz-ad-name { font-size: 0.9rem; font-weight: 700; color: #202124; }
.botopz-ad-url { font-size: 0.78rem; color: #0b6b2f; }
.botopz-ad--search .botopz-ad-title {
  margin: 0 0 4px;
  font-size: 1.18rem;
  font-weight: 400;
  color: #1a0dab;
  line-height: 1.3;
}
.botopz-ad--search .botopz-ad-link:hover .botopz-ad-title { text-decoration: underline; }
.botopz-ad--search .botopz-ad-text {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4d5156;
}
.botopz-ad-features--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.botopz-ad-features--inline li {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f3f5;
  border: 1px solid #e2e5ea;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3d4450;
}
.botopz-ad--search .botopz-ad-cta {
  margin-top: 10px;
  display: inline-flex;
  padding: 8px 14px;
  font-size: 0.84rem;
}
.botopz-ad--search .botopz-ad-features--inline { margin-bottom: 0; }

@media (max-width: 720px) {
  .botopz-ad-pro { align-items: flex-start; }
  .botopz-ad-cta--pro { width: 100%; }
}
