/* Tipps zur Meinungsabgabe */

.page-tipps {
  background: #fff;
  color: #1a1a1a;
}

.tipps-section {
  padding: 4.5rem 0;
}

.tipps-section-cream {
  background: #fbf4ea;
}

.tipps-section-dark {
  background: #0f172a;
  color: #fff;
}

.tipps-section-close {
  padding: 4rem 0 5rem;
}

.tipps-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d284b;
}

.tipps-kicker-light {
  color: rgba(255, 255, 255, 0.9);
}

.tipps-kicker-muted {
  color: rgba(255, 255, 255, 0.7);
}

.tipps-heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1a1a1a;
}

.tipps-heading-narrow {
  max-width: 36rem;
}

.tipps-heading-light {
  color: #fff;
}

.tipps-prose {
  color: #5c5c5c;
  font-size: 1rem;
  line-height: 1.65;
}

.tipps-prose p {
  margin: 0 0 1rem;
}

.tipps-prose p:last-child {
  margin-bottom: 0;
}

.tipps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.tipps-btn:hover {
  transform: translateY(-1px);
}

.tipps-btn-primary {
  background: linear-gradient(90deg, #e2185a, #d3003d);
  color: #fff;
}

.tipps-btn-primary:hover {
  color: #fff;
}

.tipps-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.tipps-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.tipps-btn-ghost-dark {
  margin-top: 2rem;
}

.tipps-media {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #e8e8e8;
  aspect-ratio: 1 / 1;
}

.tipps-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1 Hero */
.tipps-hero {
  position: relative;
  color: #fff;
  min-height: min(78vh, 40rem);
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;
  background-color: #141820;
  background-image:
    linear-gradient(90deg, rgba(10, 12, 18, 0.82) 0%, rgba(10, 12, 18, 0.55) 55%, rgba(10, 12, 18, 0.35) 100%),
    var(--tipps-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tipps-hero-copy {
  max-width: 36rem;
}

.tipps-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.tipps-hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.tipps-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 2 Info cards */
.tipps-info-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
  padding: 1.25rem 1.2rem 1.35rem;
}

.tipps-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: #fde8ee;
  color: #9d284b;
}

.tipps-info-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.tipps-info-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

/* 3 Accordion */
.tipps-accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

.tipps-acc-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.05);
  overflow: hidden;
}

.tipps-acc-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.tipps-acc-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.tipps-acc-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: #c84459;
}

.tipps-acc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.tipps-acc-icon {
  flex-shrink: 0;
  color: #9d284b;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.15rem;
}

.tipps-acc-item.is-open .tipps-acc-icon {
  transform: rotate(45deg);
}

.tipps-acc-panel {
  padding: 0 1.2rem 1.2rem;
}

.tipps-acc-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

.tipps-acc-list li {
  margin-bottom: 0.45rem;
}

.tipps-acc-list li::marker {
  color: #c84459;
}

/* 4+5 Compare + starters */
.tipps-compare {
  border-radius: 1.15rem;
  padding: 1.4rem 1.35rem 1.45rem;
}

.tipps-compare-muted {
  background: #f0f0f0;
}

.tipps-compare-pink {
  background: #fff1f2;
}

.tipps-compare-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}

.tipps-compare-label-accent {
  color: #9d284b;
}

.tipps-compare-quote {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.tipps-compare-quote-italic {
  font-style: italic;
  font-weight: 600;
}

.tipps-compare-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

.tipps-starters-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.tipps-starters-icon {
  color: #9d284b;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.tipps-starters-title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tipps-starters-sub {
  margin: 0;
  color: #777;
  font-size: 0.98rem;
}

.tipps-starter-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
  padding: 1.2rem 1.15rem 1.3rem;
}

.tipps-starter-num {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #c84459;
}

.tipps-starter-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.tipps-starter-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

/* 6 Dark grid */
.tipps-dark-grid {
  margin-top: 0.5rem;
}

.tipps-dark-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.tipps-dark-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* 7 Close */
.tipps-close-text {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

@media (min-width: 768px) {
  .tipps-accordion-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .tipps-section {
    padding: 6rem 0;
  }

  .tipps-hero {
    padding: 7rem 0 5rem;
  }
}
