/* =========================
   PREMIUM INTRO
========================= */

.section-intro-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.section-intro-premium::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  gap: 50px;
}

/* LEFT SIDE */

.intro-left h2 {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
}

.intro-lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: rgba(0,0,0,0.75);
}

.intro-left p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
}

/* RIGHT SIDE */

.intro-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 12px;
  background: #ffffff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.intro-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.intro-card span {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 6px;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.4;
}

/* hover effect */
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE INTRO 
========================= */

@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* =============================
   SECTION: TOPICS (IMAGE CARDS)
================================ */

.section-topics {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

/* HEAD */

.topics-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.topics-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1e2836;
}

.topics-head p {
  font-size: 17px;
  color: rgba(0,0,0,0.6);
}

/* GRID */

.topics-grid {
  display: grid;
  gap: 15px;
}

.topic-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  min-height: 220px;

  transition: transform 0.25s ease;
}

/* IMAGE */

.topic-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.topic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.4s ease;
}

/* DARK OVERLAY */

.topic-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.05) 100%
  );

  z-index: 1;
}

/* CONTENT */

.topic-inner {
  position: relative;
  z-index: 2;

  padding: 25px;
  height: 100%;

  display: flex;
  flex-direction: column;
/*
background: linear-gradient(
  to right,
  rgba(0,0,0,0.72) 0%,
  rgba(0,0,0,0.52) 40%,
  rgba(0,0,0,0.20) 70%,
  transparent 100%
);*/
}

.topic-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    transparent 80%
  );

  z-index: -1;
}

/* TITLE */

.topic-inner h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* LIST */

.topic-inner ul {
  list-style: none;
  margin-bottom: auto;
  padding-left: 0;
}

.topic-inner li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.topic-inner li::before {
  content: "";
  position: absolute;
  left: 6px; /* NICHT 0 → wichtig! */
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #ff7a00;
}

/* LINK (RIGHT ALIGNED) */

.topic-link {
 margin-top: 15px;
  align-self: flex-end;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 122, 0, 0.9);
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.topic-card:hover .topic-link {
  background: #ff7a00;
  transform: translateX(2px);
}

/* HOVER (clean, nicht billig) */

.topic-card:hover {
  transform: translateY(-5px);
}

.topic-card:hover .topic-media img {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE TOPCIS
========================= */

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

  .topic-card {
    min-height: 260px;
  }
    .topics-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .topics-grid {
    gap: 25px;
  }
}



/* =========================
   SCHEIDUNG SECTION
========================= */

.section-scheidung {
  background: #ffffff;
}

/* GRID */

.scheidung-grid {
  display: grid;
  gap: 40px;
}

/* =========================
   LEFT CONTENT SCHEIDUNG
========================= */

.scheidung-content h2 {
  font-size: clamp(30px, 4vw, 38px);
  margin-bottom: 15px;
}

.scheidung-lead {
  font-size: 16px;
  color: rgba(0,0,0,0.75);
  margin-bottom: 15px;
}

.scheidung-content p {
  color: rgba(0,0,0,0.7);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* =========================
   LIST (SCHEIDUNG)
========================= */

.scheidung-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM = SOFT CARD */

.scheidung-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.01);
  border: 1px solid rgba(0,0,0,0.01);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
 
/* ICON */

.scheidung-icon {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 3px;
  
}

/* TEXT */

.scheidung-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.scheidung-subheading {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 30px;
  color: #1e2735;
  line-height: 1.3;
}

.scheidung-item p {
 font-size: 14.5px;
  color: rgba(0,0,0,0.6);
  line-height: 1.4;
  margin-top: 2px;
}

/* =========================
   RIGHT BOX SCHEIDUNG
========================= */

/* =========================
   CTA DARK (REUSABLE)
========================= */

.cta-dark {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(135deg, #1f2a38, #2c3e50);
  color: #fff;
  display: flex;
  align-items: center;
  opacity: 0.95;
}

/* CONTENT */

.cta-dark-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.cta-dark-text {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* GLOW */

.cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(255,255,255,0.12) 0%,
      rgba(255,255,255,0.05) 30%,
      transparent 70%
    ),
    linear-gradient(
      to right,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(15, 23, 42, 0.65) 40%,
      rgba(15, 23, 42, 0.3) 70%,
      transparent 100%
    );

  pointer-events: none;
  z-index: 1;
}

/* IMAGE (RIGHT SIDE) */

.cta-dark-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 100%;
  background: url('/img/cta-dark-bg_ra_weichel.webp') no-repeat bottom right;
  background-size: 130%;
  background-position: bottom right;
  opacity: 0.25;
  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .cta-dark {
    padding: 25px 20px;
  }

  .cta-dark-image {
    display: block;
    width: 180px;
    right: -25px;
    background-size: 170%;
    background-position: 95% 100%;
  }

  .cta-dark-text {
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 450;
  }

}


/* =========================
   RESPONSIVE SCHEIDUNG
========================= */

@media (min-width: 768px) {
  .scheidung-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
  .cta-dark{
    margin-top: 65px;
  }
}


/* =========================
   SCHEIDUNG SECTION
========================= */

.section-sorgerecht {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* =========================
   SECTION HEAD (BACK LINK)
========================= */

/* =========================
   SECTION HEAD INLINE ICON
========================= */

.section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ICON */

.section-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: #1e2735;
  transition: all 0.2s ease;
}

.section-back svg {
  width: 14px;
  height: 14px;
}

/* HOVER */

.section-back:hover {
  background: #ff7a00;
  color: #fff;
}


/* =========================
   RESPONSIVE CLEANER 
========================= */

@media (max-width: 767px) {
    .mobile-break {
        display: block;
    }
    .intro-grid {
    gap:15px;
  }
}



@media (max-width: 767px) {

  /* INTRO */
  .intro-left {
    text-align: center;
  }

  /* TOPICS HEAD */
  .topics-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

    .intro-cards {
      display: none;
    }

}