/*
 Theme Name:   JZL Child Theme
 Theme URI:    https://ja-zum-leben.at
 Description:  Unified Divi 5 Child Theme for JA zum Leben & JA-CODE (merged)
 Author:       Sascha Kohler
 Author URI:   https://sascha-kohler.at
 Template:     Divi
 Version:      3.0.0
 Text Domain:  jzl-child
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* --- Colors: Base --- */
  --jzl-white: #ffffff;
  --jzl-cream: #faf8f5;
  --jzl-warm-white: #f7f5f2;
  --jzl-light-gray: #e8e4df;

  /* --- Colors: Primary (Purple) --- */
  --jzl-purple: #7e56c2;
  --jzl-purple-soft: #9b7dd4;
  --jzl-purple-light: #ebe4f5;
  --jzl-purple-glow: rgba(126, 86, 194, 0.15);

  /* --- Colors: Accent (Gold) --- */
  --jzl-gold: #c9a227;
  --jzl-gold-soft: #e8c882;
  --jzl-gold-light: #fdf6e3;

  /* --- Colors: Accent (Sage/Green) --- */
  --jzl-sage: #6b9080;
  --jzl-sage-soft: #a4c3b2;
  --jzl-sage-light: #eef4f2;

  /* --- Colors: Accent (Coral) --- */
  --jzl-coral: #e07b53;
  --jzl-coral-soft: #f4a582;

  /* --- Colors: Accent (Sand) --- */
  --jzl-sand: #f5f1ed;
  --jzl-sand-dark: #d4cec7;

  /* --- Colors: Additional --- */
  --jzl-sage-dark: #4a6b5c;
  --jzl-gold-dark: #9a7a1f;

  /* --- Colors: Text --- */
  --jzl-text-dark: #2d2a32;
  --jzl-text-medium: #5a5662;
  --jzl-text-light: #8a8694;

  /* --- Colors: Hybrid Template Aliases --- */
  --jzl-ink: #2d2a32;
  --jzl-ink-soft: #5a5662;
  --jzl-ink-muted: #8b8693;
  --jzl-paper: #fff9f0;

  /* --- Colors: Warm (Coral alias) --- */
  --jzl-warm: #e07b53;
  --jzl-warm-soft: #f4a989;
  --jzl-warm-glow: rgba(224, 123, 83, 0.25);

  /* --- Colors: Marker Highlights --- */
  --jzl-marker-yellow: rgba(255, 241, 118, 0.65);
  --jzl-marker-yellow-flat: rgba(255, 241, 118, 1);
  --jzl-marker-green: rgba(200, 230, 201, 0.55);
  --jzl-marker-green-flat: rgba(200, 230, 201, 1);
  --jzl-marker-pink: rgba(248, 187, 217, 0.55);
  --jzl-marker-pink-flat: rgba(248, 187, 217, 1);

  /* --- Gradients --- */
  --jzl-gradient-warm: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-coral) 100%
  );
  --jzl-gradient-nature: linear-gradient(
    135deg,
    var(--jzl-sage) 0%,
    var(--jzl-purple) 100%
  );

  /* --- Typography: Font Families --- */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Crimson Pro", Georgia, serif;
  --font-hand: "Caveat", cursive;

  /* --- Typography: Font Sizes (Tailwind-Style, Fluid with clamp) --- */
  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2vw, 3rem);
  --text-5xl: clamp(3rem, 2rem + 3vw, 4rem);
  --text-6xl: clamp(3.75rem, 2.5rem + 4vw, 5rem);

  /* --- Typography: Font Weights --- */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* --- Typography: Line Heights --- */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 2;

  /* --- Spacing --- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* --- Layout --- */
  --container-max: 1200px;
  --section-padding-y: 6rem;
  --section-padding-x: 2rem;

  /* --- Border Radius --- */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-purple-glow: 0 8px 25px var(--jzl-purple-glow);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-card: 400ms ease;

  /* --- Easing Functions --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Section Spacing --- */
  --section-y: clamp(4rem, 3rem + 4vw, 7rem);
  --container-px: clamp(1rem, 0.5rem + 2vw, 2rem);

  /* --animation-delay ---*/
  --animation-delay-1: 0.2s;
  --animation-delay-2: 0.4s;
  --animation-delay-3: 0.6s;
  --animation-delay-4: 0.8s;
  --animation-delay-5: 1s;
  --animation-delay-6: 1.2s;
  --animation-delay-7: 1.4s;
  --animation-delay-8: 1.6s;
  --animation-delay-9: 1.8s;
}

/* ==========================================================================
   2. BASE STYLES (Reset, Body, Typography Defaults)
   ========================================================================== */

body {
  background: var(--jzl-cream);
  color: var(--jzl-text-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
}

h1 {
  font-size: var(--text-5xl);
}
h2 {
  font-size: var(--text-4xl);
}
h3 {
  font-size: var(--text-2xl);
}
h4 {
  font-size: var(--text-xl);
}
h5 {
  font-size: var(--text-lg);
}
h6 {
  font-size: var(--text-base);
}

a {
  color: var(--jzl-purple);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--jzl-purple-soft);
}

/* ==========================================================================
   3. LAYOUT COMPONENTS (Header, Footer, Navigation)
   ========================================================================== */

/* --- Global Header / Navigation --- */
/* UNUSED ON CURRENT PAGE - Theme Builder Header is used instead */
.jzl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.jzl-header.is-scrolled {
  box-shadow: var(--shadow-nav);
}

.jzl-header .et_pb_row {
  padding: var(--space-md) 0 !important;
  transition: padding var(--transition-base);
}

.jzl-header.is-scrolled .et_pb_row {
  padding: 0.75rem 0 !important;
}

.jzl-header-col-logo .et_pb_image_wrap img {
  max-height: 40px;
  width: auto;
}

.jzl-header-col-logo .et_pb_text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--jzl-text-dark);
}

.jzl-header-col-cta {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: 0.75rem var(--space-lg) !important;
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base);
}

.jzl-header-col-cta:hover {
  background: var(--jzl-purple-soft) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple-glow);
}

/* --- Section Backgrounds --- */
.jzl-section-white {
  background: var(--jzl-white);
}

.jzl-section-cream {
  background: var(--jzl-cream);
}

.jzl-section-purple-light {
  background: var(--jzl-purple-light);
}

.jzl-section-purple {
  background: var(--jzl-purple);
  color: var(--jzl-white);
}

.jzl-section-gradient-purple {
  background: linear-gradient(
    180deg,
    var(--jzl-purple-light) 0%,
    var(--jzl-cream) 100%
  );
}

/* --- Section Header (Badge, Title, Subtitle) --- */
.jzl-section-badge .et_pb_text_inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--jzl-purple);
  background: var(--jzl-purple-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.jzl-section-badge.sage .et_pb_text_inner {
  color: var(--jzl-sage);
  background: var(--jzl-sage-light);
}

.jzl-section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-md);
}

.jzl-section-title .highlight {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jzl-section-subtitle {
  font-size: var(--text-lg);
  color: var(--jzl-text-medium);
  line-height: var(--leading-relaxed);
}

/* --- Insight Section --- */
.jzl-section-insight {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Header-Row: Badge, Title, Subtitle */
.jzl-section-header {
  text-align: center;
}

.jzl-section-header .jzl-section-badge {
  display: inline-flex;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  color: var(--jzl-purple);
}

.jzl-section-header .et_pb_text_inner h2 {
  color: var(--jzl-text-dark);
}

.jzl-section-header .et_pb_text_inner h2 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Insight Cards */
.jzl-insight-card .et_pb_text {
  background: var(--jzl-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid transparent;
  transition: all var(--transition-card);
}

.jzl-insight-card .et_pb_text:hover {
  transform: translateY(-5px);
  border-color: var(--jzl-purple-light);
  box-shadow: 0 15px 40px rgba(126, 86, 194, 0.1);
}

.jzl-insight-card .et_pb_text_inner > p:first-child {
  margin-bottom: var(--space-lg);
}

/* --- Guides Section --- */
.jzl-section-guides {
  background: var(--jzl-cream);
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Guide Card Container (Column-Level) */
.jzl-guide-card {
  background: var(--jzl-white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.jzl-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Module 1: Guide Header (Avatar + Name) */
.jzl-guide-card .jzl-guide-header .et_pb_blurb_content {
  position: relative;
  padding-left: 1.7rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.jzl-guide-card .jzl-guide-header .et_pb_blurb_container::before {
  content: "G";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--jzl-white);
  background: var(--jzl-gradient-nature);
}

.jzl-guide-sascha .jzl-guide-header .et_pb_blurb_container::before {
  content: "S";
  background: var(--jzl-gradient-warm);
}

.jzl-guide-card .jzl-guide-header .et_pb_text_inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jzl-text-dark);
  margin: 0;
  line-height: 1.2;
}

/* Module 2: Guide Role */
.jzl-guide-card .jzl-guide-role .et_pb_text_inner {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--jzl-purple);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Module 3: Guide Bio */
.jzl-guide-card .jzl-guide-bio .et_pb_text_inner {
  color: var(--jzl-text-medium);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Module 4: Expertise Tags (Liste) */
.jzl-guide-card .jzl-guide-expertise .et_pb_text_inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.jzl-guide-card .jzl-guide-expertise .et_pb_text_inner ul li {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: var(--jzl-cream);
  color: var(--jzl-text-medium);
}

/* Module 5: Contribution Box */
.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner {
  padding-top: 1.5rem;
  border-top: 1px solid var(--jzl-light-gray);
}

.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jzl-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.jzl-guide-card .jzl-guide-contribution .et_pb_text_inner p {
  color: var(--jzl-text-dark);
  font-size: 1rem;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* --- Quote Section --- */
.jzl-section-quote {
  background: var(--jzl-cream);
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/* Quote Block Container (Column-Level) */
.jzl-quote-block {
  padding: 3rem;
  background: var(--jzl-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.jzl-quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--jzl-purple);
  opacity: 0.15;
  line-height: 1;
}

/* --- Transformation Section --- */
.jzl-section-transformation {
  background: linear-gradient(
    180deg,
    var(--jzl-purple-light) 0%,
    var(--jzl-cream) 100%
  );
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.jzl-transformation-card {
  background: var(--jzl-white);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.jzl-transformation-card .jzl-transformation-icon .et_pb_text_inner {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--jzl-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* --- CTA Section: Bereit für dein JA --- */
/* Section-Heading */

.jzl-section-cta {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.jzl-section-cta .et_pb_text_inner h2 strong {
  background: linear-gradient(
    135deg,
    var(--jzl-gold) 0%,
    var(--jzl-coral) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Hero Evolution Text --- */
.jzl-hero-evolution {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--jzl-text-medium);
}

/* --- Hero Section --- */
/* Section-Level: Hero Container */
.jzl-hero {
  background: linear-gradient(
    180deg,
    var(--jzl-white) 0%,
    var(--jzl-cream) 100%
  );
  position: relative;
  overflow: hidden;
}

.jzl-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--jzl-purple-light) 0%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.jzl-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--jzl-sage-light) 0%,
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* Row-Level: Hero Row */
.jzl-hero .et_pb_row {
  align-items: center;
}

/* Column 1: Content Column */
.jzl-hero-col-content {
  position: relative;
  z-index: 2;
}

/* Badge Module in Content Column */
.jzl-hero-col-content > .et_pb_module:first-child .et_pb_text_inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--jzl-sage);
  background: var(--jzl-sage-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
}

/* Headline Module */
.jzl-hero-col-content .et_pb_text_inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-md);
}

.jzl-hero-col-content .et_pb_text_inner h1 em,
.jzl-hero-col-content .et_pb_text_inner h1 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: var(--font-bold);
}

/* ==========================================================================
   5. MODULE STYLES (Buttons, Forms, Cards, etc.)
   ========================================================================== */

/* --- Buttons --- */
.jzl-btn-primary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: var(--jzl-purple);
  color: var(--jzl-white);
  border: 2px solid var(--jzl-text-medium) !important;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.jzl-btn-primary:hover {
  background: var(--jzl-purple-soft) !important;
  color: var(--jzl-text-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple-glow);
}

.jzl-btn-secondary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-2xl) !important;
  background: transparent;
  color: var(--jzl-text-dark);
  border: 2px solid var(--jzl-light-gray);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-secondary:hover {
  border-color: var(--jzl-purple);
  color: var(--jzl-text-dark);
}

.jzl-btn-light {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-xl);
  background: var(--jzl-white);
  color: var(--jzl-purple);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.jzl-btn-outline-light {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--jzl-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.jzl-btn-outline-light:hover {
  border-color: var(--jzl-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--jzl-white);
}

/* --- Cards --- */
.jzl-card {
  background: var(--jzl-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-card);
}

.jzl-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.jzl-card-cream {
  background: var(--jzl-cream);
  border: 1px solid transparent;
}

.jzl-card-cream:hover {
  border-color: var(--jzl-purple-light);
  box-shadow: 0 15px 40px rgba(126, 86, 194, 0.1);
}

/* --- Icon Boxes --- */
.jzl-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.jzl-icon-box.purple {
  background: var(--jzl-purple-light);
}

.jzl-icon-box.sage {
  background: var(--jzl-sage-light);
}

.jzl-icon-box.gold {
  background: var(--jzl-gold-light);
}

/* --- Expertise Tags --- */
.jzl-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--jzl-cream);
  color: var(--jzl-text-medium);
}

/* ==========================================================================
   6. UTILITY CLASSES
   ========================================================================== */

/* --- Cursor Glow Effect --- */
.jzl-cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--jzl-purple-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

body:hover .jzl-cursor-glow {
  opacity: 0.6;
}

/* Disable cursor glow in Divi Builder */
body.et-fb .jzl-cursor-glow,
body.et_fb_preview .jzl-cursor-glow {
  display: none !important;
}

/* Disable cursor glow for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .jzl-cursor-glow {
    display: none !important;
  }
}

.jzl-text-center {
  text-align: center;
}

.jzl-text-white {
  color: var(--jzl-white);
}

.jzl-text-white .jzl-section-title {
  color: var(--jzl-white);
}

.jzl-text-white .jzl-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.jzl-text-white .jzl-section-title .highlight {
  background: linear-gradient(
    135deg,
    var(--jzl-gold) 0%,
    var(--jzl-coral) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */

/* Scroll Animation Base */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--animation-delay-1, 0s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations in Divi Builder */
body.et-fb [data-animate],
body.et_fb_preview [data-animate] {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   8. RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 767px) {
  :root {
    --section-padding-y: 4rem;
    --section-padding-x: 1.5rem;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   9. JA-CODE 2026 HYBRID TEMPLATE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */

@keyframes jzl-blob-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -20px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

@keyframes jzl-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes jzl-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS (Extended)
   -------------------------------------------------------------------------- */

[data-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="left"] {
  transform: translateX(-30px);
}

[data-animate="left"].is-visible {
  transform: translateX(0);
}

[data-animate="right"] {
  transform: translateX(30px);
}

[data-animate="right"].is-visible {
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.95);
}

[data-animate="scale"].is-visible {
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES - HYBRID TEMPLATE
   -------------------------------------------------------------------------- */

.jzl-hand {
  font-family: var(--font-hand);
}

.jzl-highlight {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-yellow) 2.4%,
    rgba(255, 241, 118, 0.45) 5.8%,
    rgba(255, 241, 118, 0.25) 93%,
    transparent 96%
  );
  padding: 0.05em 0.35em;
  margin: -0.05em -0.15em;
  border-radius: 4px 12px 10px 6px;
}

.jzl-highlight-green {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-green) 2.4%,
    rgba(200, 230, 201, 0.4) 5.8%,
    rgba(200, 230, 201, 0.2) 93%,
    transparent 96%
  );
}

.jzl-highlight-pink {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-pink) 2.4%,
    rgba(248, 187, 217, 0.4) 5.8%,
    rgba(248, 187, 217, 0.2) 93%,
    transparent 96%
  );
}

.jzl-underline-hand {
  position: relative;
  display: inline;
}

.jzl-underline-hand::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -4px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 6 Q50 2, 100 6 T198 4' stroke='%23e07b53' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}

/* Doodle Icons */
.jzl-doodle-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='10' stroke='%236b9080' stroke-width='2' fill='none'/%3E%3Cpath d='M8 13 L12 17 L18 9' stroke='%236b9080' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  flex-shrink: 0;
}

.jzl-doodle-arrow {
  display: inline-block;
  width: 50px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 24'%3E%3Cpath d='M4 16 Q15 6, 30 12 T46 8 M42 4 L46 8 L40 11' stroke='%232d2a32' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   BLOB BACKGROUNDS
   -------------------------------------------------------------------------- */

.jzl-blob {
  position: absolute;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}

.jzl-blob-animate {
  animation: jzl-blob-float 20s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .jzl-blob-animate {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   CARD STYLES - PREMIUM & STICKY NOTE
   -------------------------------------------------------------------------- */

.jzl-card-premium {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  will-change: transform;
}

.jzl-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(126, 86, 194, 0.3),
    rgba(224, 123, 83, 0.25),
    rgba(107, 144, 128, 0.2)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.jzl-card-premium:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 60px var(--jzl-purple-glow);
}

.jzl-card-premium:hover::before {
  opacity: 1;
}

.jzl-sticky-note {
  background: var(--jzl-marker-yellow);
  padding: 1.25rem 1.5rem;
  position: relative;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.08);
  transform: rotate(var(--rotate, 2deg));
  transition: transform 0.3s var(--ease-bounce);
}

.jzl-sticky-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
}

.jzl-sticky-note:hover {
  transform: rotate(0deg) scale(1.02);
}

.jzl-sticky-green {
  background: var(--jzl-marker-green);
}

.jzl-sticky-pink {
  background: var(--jzl-marker-pink);
}

/* --------------------------------------------------------------------------
   CURSOR GLOW EFFECT
   -------------------------------------------------------------------------- */

.jzl-cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--jzl-purple-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

body:hover .jzl-cursor-glow {
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .jzl-cursor-glow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */

.jzl-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jzl-purple), var(--jzl-warm));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .jzl-scroll-progress {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   FLOATING CTA
   -------------------------------------------------------------------------- */

.jzl-float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
}

.jzl-float-cta a,
.jzl-float-cta .et_pb_button {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.9rem 1.4rem;
  background: var(--jzl-purple) !important;
  color: white !important;
  text-decoration: none;
  border-radius: var(--radius-full) !important;
  border: none !important;
  box-shadow:
    0 4px 20px var(--jzl-purple-glow),
    0 8px 30px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.jzl-float-cta a:hover,
.jzl-float-cta .et_pb_button:hover {
  box-shadow:
    0 6px 30px var(--jzl-purple-glow),
    0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   BUTTON STYLES - HYBRID TEMPLATE
   -------------------------------------------------------------------------- */

.jzl-btn-warm {
  background: var(--jzl-warm) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.9rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  box-shadow: 0 4px 20px var(--jzl-warm-glow);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease !important;
}

.jzl-btn-warm:hover {
  box-shadow: 0 6px 30px var(--jzl-warm-glow);
  transform: translateY(-2px);
}

.jzl-btn-outline {
  background: transparent !important;
  color: var(--jzl-ink) !important;
  font-weight: 600 !important;
  padding: 0.9rem 1.4rem !important;
  border: 2px solid rgba(45, 42, 50, 0.15) !important;
  border-radius: var(--radius-full) !important;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease !important;
}

.jzl-btn-outline:hover {
  border-color: var(--jzl-purple) !important;
  color: var(--jzl-purple) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   HERO SECTION - HYBRID TEMPLATE
   -------------------------------------------------------------------------- */

.jzl-hero-hybrid {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
  background: var(--jzl-cream);
}

.jzl-hero-hybrid::before,
.jzl-hero-hybrid::after {
  content: "";
  position: absolute;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: jzl-blob-float 20s ease-in-out infinite;
}

.jzl-hero-hybrid::before {
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-warm) 100%
  );
  top: -10%;
  right: -15%;
  opacity: 0.15;
}

.jzl-hero-hybrid::after {
  width: 400px;
  height: 400px;
  background: var(--jzl-sage);
  bottom: 5%;
  left: -8%;
  opacity: 0.12;
  animation-delay: -7s;
}

/* Hero Badge */
.jzl-hero-col-content .jzl-hero-badge .et_pb_text_inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 42, 50, 0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--jzl-ink-soft);
  box-shadow: var(--shadow-sm);
}

.jzl-hero-col-content .jzl-hero-badge .et_pb_text_inner::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--jzl-sage);
  border-radius: 50%;
  animation: jzl-pulse 2s ease-in-out infinite;
}

/* Hero Headline */
.jzl-hero-col-content .jzl-hero-headline .et_pb_text_inner h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--jzl-ink);
}

.jzl-hero-col-content .jzl-hero-headline .et_pb_text_inner h1 strong {
  font-family: var(--font-hand);
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
}

.jzl-hero-col-content .jzl-hero-headline .et_pb_text_inner h1 strong::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -4px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 6 Q50 2, 100 6 T198 4' stroke='%23e07b53' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}

/* Hero Lead */
.jzl-hero-col-content .jzl-hero-lead .et_pb_text_inner {
  font-size: var(--text-xl);
  color: var(--jzl-ink-soft);
  max-width: 520px;
}

/* Hero Sticky Note Card */
.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner {
  background: var(--jzl-marker-yellow-flat);
  padding: 1.5rem 1.75rem;
  max-width: 340px;
  margin-left: auto;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
  transition: transform 0.3s var(--ease-bounce);
  position: relative;
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner::before {
  content: "Neu 2026!";
  position: absolute;
  top: -15px;
  right: -10px;
  background: var(--jzl-marker-pink-flat);
  padding: 0.4rem 0.85rem;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 600;
  transform: rotate(6deg);
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner:hover {
  transform: rotate(0deg) scale(1.02);
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner strong {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
}

.jzl-hero-col-side .jzl-hero-card .et_pb_text_inner li::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='10' stroke='%236b9080' stroke-width='2' fill='none'/%3E%3Cpath d='M8 13 L12 17 L18 9' stroke='%236b9080' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   PHILOSOPHY SECTION
   -------------------------------------------------------------------------- */

.jzl-philosophy,
.jzl-philosophy-hybrid {
  background: var(--jzl-white);
  position: relative;
  overflow: hidden;
}

.jzl-philosophy::before,
.jzl-philosophy-hybrid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--jzl-purple),
    var(--jzl-warm),
    var(--jzl-sage),
    var(--jzl-purple)
  );
  background-size: 300% 100%;
  animation: jzl-gradient-shift 8s ease infinite;
}

.jzl-philosophy-col-text .jzl-philosophy-headline .et_pb_text_inner h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--jzl-ink);
}

.jzl-philosophy-col-text .jzl-philosophy-headline .et_pb_text_inner h2 strong {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-yellow) 2.4%,
    rgba(255, 241, 118, 0.45) 5.8%,
    rgba(255, 241, 118, 0.25) 93%,
    transparent 96%
  );
  padding: 0.05em 0.35em;
  border-radius: 4px 12px 10px 6px;
  font-weight: 700;
}

.jzl-philosophy-col-text .jzl-philosophy-body .et_pb_text_inner {
  font-size: var(--text-lg);
  color: var(--jzl-ink-soft);
  line-height: 1.75;
}

.jzl-philosophy-col-text .jzl-philosophy-body .et_pb_text_inner strong {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-green) 2.4%,
    rgba(200, 230, 201, 0.4) 5.8%,
    rgba(200, 230, 201, 0.2) 93%,
    transparent 96%
  );
  padding: 0.05em 0.35em;
  border-radius: 4px 12px 10px 6px;
}

/* Quote Card */
.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
  transition:
    transform 0.3s var(--ease-bounce),
    box-shadow 0.3s ease;
  position: relative;
}

.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(126, 86, 194, 0.3),
    rgba(224, 123, 83, 0.25),
    rgba(107, 144, 128, 0.2)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner:hover {
  transform: rotate(0deg);
  box-shadow:
    var(--shadow-lg),
    0 0 60px var(--jzl-purple-glow);
}

.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner:hover::before {
  opacity: 1;
}

.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner em {
  font-family: var(--font-hand);
  font-size: 1.65rem;
  font-style: normal;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.85rem;
}

.jzl-philosophy-col-quote .jzl-quote-card .et_pb_text_inner strong {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--jzl-ink-soft);
}

/* --------------------------------------------------------------------------
   PROGRAM SECTION (Bento Grid)
   -------------------------------------------------------------------------- */

.jzl-program,
.jzl-program-hybrid {
  position: relative;
  overflow: hidden;
  background: var(--jzl-cream);
}

.jzl-program::before,
.jzl-program-hybrid::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--jzl-gold);
  top: 20%;
  right: -15%;
  opacity: 0.08;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  filter: blur(60px);
  pointer-events: none;
}

.jzl-program-col-header .jzl-program-intro .et_pb_text_inner h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--jzl-ink);
  text-align: center;
}

.jzl-program-col-header .jzl-program-intro .et_pb_text_inner h2 strong {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-pink) 2.4%,
    rgba(248, 187, 217, 0.4) 5.8%,
    rgba(248, 187, 217, 0.2) 93%,
    transparent 96%
  );
  padding: 0.05em 0.35em;
  border-radius: 4px 12px 10px 6px;
  font-weight: 700;
}

/* Bento Grid - Layout via CSS Grid */
.jzl-bento-grid.et_pb_row {
  /* display: grid !important; */
  /* grid-template-columns: repeat(12, 1fr); */
  /* gap: 1.25rem; */
}

.jzl-bento-grid > .et_pb_column {
  /* width: 100% !important; */
  /* margin: 0 !important; */
  /* padding: 0 !important; */
}

/* Impulstag Card (7 Spalten) */
.jzl-bento-impulse {
  /* grid-column: span 7; */
}

/* Info Box (5 Spalten) */
.jzl-bento-info {
  /* grid-column: span 5; */
}

/* Module Cards (jeweils 4 Spalten) */
.jzl-bento-module {
  /* grid-column: span 4; */
}

/* Responsive Grid */
@media (max-width: 900px) {
  .jzl-bento-grid.et_pb_row {
    /* grid-template-columns: 1fr; */
  }

  .jzl-bento-impulse,
  .jzl-bento-info,
  .jzl-bento-module {
    /* grid-column: span 1; */
  }
}

/* Impulstag Card Styling */

.jzl-bento-impulse .et_pb_text_inner {
  background: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-purple-soft) 100%
  );
  color: white;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.jzl-bento-impulse .et_pb_text_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='40' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='20' cy='80' r='30' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  pointer-events: none;
}

.jzl-bento-impulse .et_pb_text_inner p:first-child strong {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  margin-bottom: 0.85rem;
}

.jzl-bento-impulse .et_pb_text_inner h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jzl-bento-impulse .et_pb_text_inner p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.jzl-bento-impulse .et_pb_text_inner em {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  font-style: normal;
}

/* Info Box */
.jzl-bento-info {
  grid-column: span 5;
}

.jzl-bento-info .et_pb_text_inner {
  background: var(--jzl-sage-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
}

.jzl-bento-info .et_pb_text_inner p:first-child strong {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: var(--jzl-sage-light);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--jzl-sage);
  margin-bottom: 0.85rem;
}

.jzl-bento-info .et_pb_text_inner h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--jzl-ink);
}

.jzl-bento-info .et_pb_text_inner p {
  font-size: var(--text-sm);
  color: var(--jzl-ink-soft);
  line-height: 1.65;
}

/* Module Cards */
.jzl-bento-module {
  grid-column: span 4;
}

.jzl-bento-module .et_pb_text_inner {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 42, 50, 0.08);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  position: relative;
}

.jzl-bento-module .et_pb_text_inner:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 60px var(--jzl-purple-glow);
  transform: translateY(-4px);
}

.jzl-bento-module .et_pb_text_inner p:first-child strong {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: rgba(126, 86, 194, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--jzl-purple);
  margin-bottom: 0.85rem;
}

.jzl-bento-module-2 .et_pb_text_inner p:first-child strong {
  background: var(--jzl-gold-light);
  color: var(--jzl-gold);
}

.jzl-bento-module .et_pb_text_inner h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--jzl-ink);
  margin-bottom: 0.5rem;
}

.jzl-bento-module .et_pb_text_inner p {
  font-size: var(--text-sm);
  color: var(--jzl-ink-soft);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.jzl-bento-module .et_pb_text_inner em {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  background: var(--jzl-marker-green);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  font-style: normal;
}

/* Layout wird in Divi eingestellt */

/* --------------------------------------------------------------------------
   SPEAKERS SECTION
   -------------------------------------------------------------------------- */

.jzl-speakers {
  background: linear-gradient(
    180deg,
    var(--jzl-cream) 0%,
    var(--jzl-white) 100%
  );
}

.jzl-speakers-col-header .jzl-speakers-intro .et_pb_text_inner h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--jzl-ink);
  text-align: center;
}

.jzl-speakers-col-header .jzl-speakers-intro .et_pb_text_inner h2 strong {
  background: linear-gradient(
    104deg,
    transparent 0.9%,
    var(--jzl-marker-yellow) 2.4%,
    rgba(255, 241, 118, 0.45) 5.8%,
    rgba(255, 241, 118, 0.25) 93%,
    transparent 96%
  );
  padding: 0.05em 0.35em;
  border-radius: 4px 12px 10px 6px;
}

/* Speaker Card Base - auf .et_pb_text_inner */
.jzl-speaker-card {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  position: relative;
}

/* Gradient Border */
.jzl-speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(126, 86, 194, 0.3),
    rgba(224, 123, 83, 0.25),
    rgba(107, 144, 128, 0.2)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Rotation */
.jzl-speaker-card.jzl-speaker-sascha,
.jzl-speaker-sascha .et_pb_text_inner {
  transform: rotate(-1deg);
}

.jzl-speaker-card.jzl-speaker-gerda,
.jzl-speaker-gerda .et_pb_text_inner {
  transform: rotate(1deg);
}

.jzl-speaker-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    var(--shadow-lg),
    0 0 60px var(--jzl-purple-glow);
}

.jzl-speaker-card:hover::before {
  opacity: 1;
}

/* Avatar Container */
.jzl-speaker-card .et_pb_text_inner > p:first-child {
  margin: 0 auto 1rem;
  width: 90px;
  height: 90px;
  position: relative;
}

/* Avatar Image Wrapper (strong tag) */
.jzl-speaker-card .et_pb_text_inner > p:first-child strong {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* Avatar Image (img inside strong) */
.jzl-speaker-card .et_pb_text_inner > p:first-child strong img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dashed Border Ring */
.jzl-speaker-card .et_pb_text_inner > p:first-child strong::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px dashed var(--jzl-ink-muted);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Fallback: Letter-based avatars if no image */
.jzl-speaker-card .et_pb_text_inner > p:first-child strong:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-size: 2.25rem;
  color: var(--jzl-ink);
}

.jzl-speaker-card.jzl-speaker-sascha
  .et_pb_text_inner
  > p:first-child
  strong:not(:has(img)),
.jzl-speaker-sascha .et_pb_text_inner > p:first-child strong:not(:has(img)) {
  background: rgba(179, 229, 252, 0.5);
}

.jzl-speaker-card.jzl-speaker-gerda
  .et_pb_text_inner
  > p:first-child
  strong:not(:has(img)),
.jzl-speaker-gerda .et_pb_text_inner > p:first-child strong:not(:has(img)) {
  background: rgba(248, 187, 217, 0.5);
}

.jzl-speaker-card .et_pb_text_inner h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--jzl-ink);
  margin-bottom: 0.25rem;
}

.jzl-speaker-card .et_pb_text_inner em {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  font-style: normal;
  color: var(--jzl-sage);
  margin-bottom: 0.75rem;
}

.jzl-speaker-card .et_pb_text_inner > p:not(:first-child) {
  font-size: var(--text-sm);
  color: var(--jzl-ink-soft);
}

.jzl-speaker-card .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.jzl-speaker-card .et_pb_text_inner li {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-full);
}

/* Speakers Responsive */
@media (max-width: 700px) {
  .jzl-speaker-card {
    transform: rotate(0deg);
  }
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */

.jzl-faq-hybrid {
  background: var(--jzl-white);
}

.jzl-faq-col-header .jzl-faq-intro .et_pb_text_inner h2 {
  /* font-size: var(--text-4xl); */
  /* font-weight: 700; */
  /* letter-spacing: -0.02em; */
  color: var(--jzl-ink);
  text-align: center;
}

.jzl-faq-col-header .jzl-faq-intro .et_pb_text_inner h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 24'%3E%3Cpath d='M4 16 Q15 6, 30 12 T46 8 M42 4 L46 8 L40 11' stroke='%232d2a32' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  vertical-align: middle;
}

.jzl-faq-grid {
  /* display: grid !important; */
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  /* gap: 1rem; */
  /* max-width: 900px; */
  /* margin: 0 auto; */
}

.jzl-faq-grid > .et_pb_column {
  /* width: 100% !important; */
  /* margin: 0 !important; */
}

.jzl-faq-item .et_pb_text_inner {
  padding: 1.25rem 1.5rem;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.08);
  transform: rotate(var(--rotate, 2deg));
  transition: transform 0.3s var(--ease-bounce);
  position: relative;
}

.jzl-faq-item .et_pb_text_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
}

.jzl-faq-item .et_pb_text_inner:hover {
  transform: rotate(0deg) scale(1.02);
}

.jzl-faq-yellow .et_pb_text_inner {
  background: var(--jzl-marker-yellow);
}

.jzl-faq-green .et_pb_text_inner {
  background: var(--jzl-marker-green);
}

.jzl-faq-pink .et_pb_text_inner {
  background: var(--jzl-marker-pink);
}

.jzl-faq-item .et_pb_text_inner h4 {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--jzl-ink);
}

.jzl-faq-item .et_pb_text_inner p {
  font-size: var(--text-sm);
  color: var(--jzl-ink-soft);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   CTA SECTION - HYBRID
   -------------------------------------------------------------------------- */

.jzl-cta-hybrid {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--jzl-cream);
}

.jzl-cta-hybrid::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-warm) 100%
  );
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  filter: blur(60px);
  pointer-events: none;
}

.jzl-cta-col-content .jzl-cta-headline .et_pb_text_inner h2 {
  /* font-size: var(--text-4xl); */
  /* font-weight: 700; */
  /* line-height: 1.15; */
  /* letter-spacing: -0.02em; */
  color: var(--jzl-ink);
}

.jzl-cta-col-content .jzl-cta-headline .et_pb_text_inner h2 strong {
  font-family: var(--font-hand);
  font-weight: 600;
  position: relative;
}

.jzl-cta-col-content .jzl-cta-headline .et_pb_text_inner h2 strong::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -4px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 6 Q50 2, 100 6 T198 4' stroke='%23e07b53' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}

.jzl-cta-col-content .jzl-cta-lead .et_pb_text_inner {
  font-size: var(--text-lg);
  color: var(--jzl-ink-soft);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.jzl-cta-col-content .jzl-cta-note .et_pb_text_inner {
  display: inline-block;
  background: var(--jzl-marker-yellow);
  padding: 1.25rem 1.5rem;
  text-align: left;
  max-width: 300px;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
  transition: transform 0.3s var(--ease-bounce);
}

.jzl-cta-col-content .jzl-cta-note .et_pb_text_inner:hover {
  transform: rotate(0deg) scale(1.02);
}

.jzl-cta-col-content .jzl-cta-note .et_pb_text_inner strong {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.5rem;
}

.jzl-cta-col-content .jzl-cta-note .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  font-size: var(--text-sm);
}

.jzl-cta-col-content .jzl-cta-note .et_pb_text_inner li::before {
  content: "✓ ";
}

/* --------------------------------------------------------------------------
   FOOTER - HYBRID
   -------------------------------------------------------------------------- */

.jzl-footer-hybrid {
  background: var(--jzl-ink);
  color: rgba(255, 255, 255, 0.75);
}

.jzl-footer-col-brand .jzl-footer-brand .et_pb_text_inner {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.jzl-footer-col-nav .et_pb_menu__menu,
.jzl-footer-col-nav .et_pb_text_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.jzl-footer-col-nav .et_pb_menu__menu > li > a,
.jzl-footer-col-nav .et_pb_text_inner a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.jzl-footer-col-nav .et_pb_menu__menu > li > a:hover,
.jzl-footer-col-nav .et_pb_text_inner a:hover {
  color: white;
}

/* --------------------------------------------------------------------------
   REDUCED MOTION - HYBRID TEMPLATE
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .jzl-hero-hybrid::before,
  .jzl-hero-hybrid::after,
  .jzl-program-hybrid::before,
  .jzl-cta-hybrid::before {
    animation: none;
  }

  .jzl-philosophy::before {
    animation: none;
    background-position: 0% 50%;
  }

  .jzl-hero-col-content .jzl-hero-badge .et_pb_text_inner::before {
    animation: none;
  }
}

/* Divi Builder: Animations deaktivieren */
body.et-fb [data-animate],
body.et_fb_preview [data-animate] {
  opacity: 1;
  transform: none;
}
/* ==========================================================================
   BLOG TEASER SECTION
   ========================================================================== */

/* Section */
.jzl-blog-teaser.et_pb_section {
  background: var(--jzl-cream) !important;
  position: relative;
}

/* Row */
.jzl-blog-teaser .et_pb_row {
  align-items: center !important;
}

/* Column: Content */
.jzl-blog-teaser-col-content.et_pb_column {
  position: relative;
}

/* Kicker/Label */
.jzl-blog-teaser-col-content .jzl-blog-kicker .et_pb_text_inner {
  display: inline-flex;
  padding: var(--space-sm) var(--space-lg);
  background: var(--jzl-purple-light);
  color: var(--jzl-purple);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* Headline */
.jzl-blog-teaser-col-content .jzl-blog-headline .et_pb_text_inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-lg);
}

.jzl-blog-teaser-col-content .jzl-blog-headline .et_pb_text_inner h2 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Description */
.jzl-blog-teaser-col-content .jzl-blog-description .et_pb_text_inner p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin-bottom: var(--space-xl);
}

/* External Blog Posts Styling */
.jzl-blog-teaser-col-content .jzl-blog-latest {
  margin-bottom: var(--space-xl);
}

/* Container */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-blog-posts {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Single Post Card */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 42, 50, 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 42, 50, 0.12);
}

/* Featured Image */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--jzl-light-gray);
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.jzl-blog-teaser-col-content
  .jzl-blog-latest
  .jzl-external-post:hover
  .jzl-external-post-image
  img {
  transform: scale(1.05);
}

/* Content Area */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-content {
  padding: var(--space-xl);
}

/* Title */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin: 0 0 var(--space-md) 0;
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-title a:hover {
  color: var(--jzl-purple);
}

/* Date */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--jzl-text-light);
  margin: 0 0 var(--space-sm) 0;
}

/* Categories */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-categories {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--jzl-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--space-md) 0;
}

/* Excerpt */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin-bottom: var(--space-lg);
}

/* Read More Link */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--jzl-purple);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-more:hover {
  gap: var(--space-md);
}

.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-more::after {
  content: "→";
  font-size: var(--text-lg);
}

/* Error/Loading State */
.jzl-blog-teaser-col-content .jzl-blog-latest .jzl-blog-error {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-light);
  font-style: italic;
  text-align: center;
  padding: var(--space-xl);
}

/* CTA Button */
.jzl-blog-teaser-col-content .jzl-blog-cta .et_pb_button {
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--font-semibold) !important;
  padding: var(--space-md) var(--space-2xl) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base) !important;
  box-shadow: 0 4px 15px var(--jzl-purple-glow);
}

.jzl-blog-teaser-col-content .jzl-blog-cta .et_pb_button:hover {
  background: var(--jzl-purple-soft) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 86, 194, 0.25);
}

/* Column: Visual */
.jzl-blog-teaser-col-visual .jzl-blog-visual .et_pb_image_wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(45, 42, 50, 0.1);
}

/* ==========================================================================
   SIDEBAR BLOG CARDS (Compact Layout)
   ========================================================================== */

/* Column: Sidebar */
.jzl-blog-teaser-col-sidebar.et_pb_column {
  position: relative;
}

/* Sidebar Headline */
.jzl-blog-teaser-col-sidebar .jzl-blog-sidebar-headline .et_pb_text_inner h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-lg);
}

/* Compact Posts Container */
.jzl-blog-teaser-col-sidebar .jzl-external-blog-posts-compact {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Compact Post Card */
.jzl-blog-teaser-col-sidebar .jzl-external-post {
  background: var(--jzl-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(45, 42, 50, 0.06);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.jzl-blog-teaser-col-sidebar .jzl-external-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 42, 50, 0.1);
}

/* Compact Featured Image */
.jzl-blog-teaser-col-sidebar .jzl-external-post-image {
  position: relative;
  overflow: hidden;
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: var(--jzl-light-gray);
  flex-shrink: 0;
}

.jzl-blog-teaser-col-sidebar .jzl-external-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.jzl-blog-teaser-col-sidebar
  .jzl-external-post:hover
  .jzl-external-post-image
  img {
  transform: scale(1.1);
}

/* Compact Content Area */
.jzl-blog-teaser-col-sidebar .jzl-external-post-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Compact Title */
.jzl-blog-teaser-col-sidebar .jzl-external-post-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: var(--jzl-text-dark);
  margin: 0 0 var(--space-xs) 0;
}

.jzl-blog-teaser-col-sidebar .jzl-external-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.jzl-blog-teaser-col-sidebar .jzl-external-post-title a:hover {
  color: var(--jzl-purple);
}

/* Compact Date */
.jzl-blog-teaser-col-sidebar .jzl-external-post-date {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--jzl-text-light);
  margin: 0;
}

/* Hide Categories, Excerpt, and Read More in Compact Layout */
.jzl-blog-teaser-col-sidebar .jzl-external-post-categories,
.jzl-blog-teaser-col-sidebar .jzl-external-post-excerpt,
.jzl-blog-teaser-col-sidebar .jzl-external-post-more {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .jzl-blog-teaser-col-content .jzl-blog-headline .et_pb_text_inner h2 {
    font-size: var(--text-3xl);
  }

  .jzl-blog-teaser-col-content .jzl-blog-description .et_pb_text_inner p {
    font-size: var(--text-base);
  }

  .jzl-blog-teaser-col-visual,
  .jzl-blog-teaser-col-sidebar {
    margin-top: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .jzl-blog-teaser-col-content .jzl-blog-headline .et_pb_text_inner h2 {
    font-size: var(--text-2xl);
  }

  .jzl-blog-teaser-col-content .jzl-blog-latest .jzl-external-post-content {
    padding: var(--space-lg);
  }

  /* Compact Cards: Stack vertically on mobile */
  .jzl-blog-teaser-col-sidebar .jzl-external-post {
    flex-direction: column;
  }

  .jzl-blog-teaser-col-sidebar .jzl-external-post-image {
    width: 100%;
    height: 150px;
  }
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */

/* Section */
.jzl-events-section.et_pb_section {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3ef 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.jzl-events-section.et_pb_section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(126, 86, 194, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.jzl-events-section.et_pb_section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(107, 144, 128, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Column */
.jzl-events-col.et_pb_column {
  position: relative;
  z-index: 1;
}

/* Section Headline */
.jzl-events-col .jzl-events-headline .et_pb_text_inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-md);
  text-align: center;
  letter-spacing: -0.02em;
}

.jzl-events-col .jzl-events-headline .et_pb_text_inner h2 strong {
  background: linear-gradient(
    120deg,
    var(--jzl-sage) 0%,
    var(--jzl-purple) 50%,
    var(--jzl-sage-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.jzl-events-col .jzl-events-headline .et_pb_text_inner h2 strong::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--jzl-sage) 50%,
    transparent 100%
  );
  border-radius: var(--radius-full);
  opacity: 0.3;
}

/* Section Description */
.jzl-events-col .jzl-events-description .et_pb_text_inner p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* Events Container */
.jzl-events-col .jzl-external-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* Single Event Card */
.jzl-events-col .jzl-external-event {
  background: var(--jzl-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 42, 50, 0.06);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(107, 144, 128, 0.1);
}

.jzl-events-col .jzl-external-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(126, 86, 194, 0.03) 0%,
    rgba(107, 144, 128, 0.03) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 1;
}

.jzl-events-col .jzl-external-event:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(45, 42, 50, 0.12);
  border-color: rgba(107, 144, 128, 0.3);
}

.jzl-events-col .jzl-external-event:hover::before {
  opacity: 1;
}

/* Event Image */
.jzl-events-col .jzl-external-event-image {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(
    135deg,
    var(--jzl-sage-light) 0%,
    var(--jzl-purple-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.jzl-events-col .jzl-external-event-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(45, 42, 50, 0.4) 100%
  );
  opacity: 0.6;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.jzl-events-col .jzl-external-event:hover .jzl-external-event-image::after {
  opacity: 0.3;
}

.jzl-events-col .jzl-external-event-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

.jzl-events-col .jzl-external-event:hover .jzl-external-event-image img {
  transform: scale(1.05);
}

/* Event Content */
.jzl-events-col .jzl-external-event-content {
  padding: var(--space-2xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

/* Event Header: Date Badge + Title Group */
.jzl-events-col .jzl-external-event-header {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

/* Date Badge */
.jzl-events-col .jzl-external-event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.12) 0%,
    rgba(244, 114, 182, 0.12) 100%
  );
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.3);
  min-width: 100px;
  flex-shrink: 0;
}

.jzl-events-col .jzl-external-event-date-badge .weekday {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--jzl-text-light);
  margin-bottom: 2px;
}

.jzl-events-col .jzl-external-event-date-badge .day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--font-extrabold);
  line-height: 1;
  color: var(--jzl-text-dark);
  margin: 4px 0;
}

.jzl-events-col .jzl-external-event-date-badge .month {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--font-semibold);
  color: var(--jzl-text-medium);
}

/* Title Group */
.jzl-events-col .jzl-external-event-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Event Title */
.jzl-events-col .jzl-external-event-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin: 0;
}

/* Event Subtitle */
.jzl-events-col .jzl-external-event-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin: 0;
}

/* Date Link */
.jzl-events-col .jzl-external-event-date-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--jzl-purple);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  width: fit-content;
}

/* Event Meta Container */
.jzl-events-col .jzl-external-event-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Event Time */
.jzl-events-col .jzl-external-event-time {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
}

.jzl-events-col .jzl-external-event-time svg {
  color: var(--jzl-purple);
  flex-shrink: 0;
}

/* Event Location */
.jzl-events-col .jzl-external-event-location {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
}

.jzl-events-col .jzl-external-event-location svg {
  color: var(--jzl-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.jzl-events-col .jzl-external-event-location strong {
  color: var(--jzl-text-dark);
  font-weight: var(--font-semibold);
  display: block;
}

.jzl-events-col .jzl-external-event-location span {
  color: var(--jzl-text-medium);
  font-size: var(--text-sm);
}

/* Event Teaser */
.jzl-events-col .jzl-external-event-teaser {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin: var(--space-md) 0;
}

/* Registration Section */
.jzl-events-col .jzl-external-event-registration {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(45, 42, 50, 0.1);
}

/* Price Badge */
.jzl-events-col .jzl-external-event-price {
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(244, 114, 182, 0.12);
  color: #ec4899;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  width: fit-content;
}

/* Contact Info */
.jzl-events-col .jzl-external-event-contact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
}

.jzl-events-col .jzl-external-event-contact svg {
  color: var(--jzl-purple);
  flex-shrink: 0;
}

.jzl-events-col .jzl-external-event-contact a {
  color: var(--jzl-text-medium);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.jzl-events-col .jzl-external-event-contact a:hover {
  color: var(--jzl-purple);
}

/* Action Buttons */
.jzl-events-col .jzl-external-event-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Primary CTA Button */
.jzl-events-col .jzl-external-event-cta-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(
    100deg,
    var(--jzl-purple) 0%,
    #ec4899 100%
  ) !important;
  color: var(--jzl-white) !important;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  text-decoration: none;
  border-radius: 24px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(126, 86, 194, 0.25);
  min-height: 48px;
}

.jzl-events-col .jzl-external-event-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 86, 194, 0.35);
}

/* Secondary CTA Button */
.jzl-events-col .jzl-external-event-cta-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: transparent !important;
  color: var(--jzl-text-dark) !important;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  text-decoration: none;
  border-radius: 24px;
  border: 2px solid rgba(45, 42, 50, 0.15);
  transition: all var(--transition-base);
  min-height: 48px;
}

.jzl-events-col .jzl-external-event-cta-secondary:hover {
  border-color: var(--jzl-purple);
  color: var(--jzl-purple) !important;
}

/* Error State */
.jzl-events-col .jzl-events-error {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-light);
  font-style: italic;
  text-align: center;
  padding: var(--space-2xl);
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
}

/* Responsive */
@media (max-width: 980px) {
  .jzl-events-col .jzl-events-headline .et_pb_text_inner h2 {
    font-size: var(--text-3xl);
  }

  .jzl-events-col .jzl-events-description .et_pb_text_inner p {
    font-size: var(--text-base);
  }

  .jzl-events-col .jzl-external-events {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .jzl-events-col .jzl-events-headline .et_pb_text_inner h2 {
    font-size: var(--text-2xl);
  }

  .jzl-events-col .jzl-external-event-content {
    padding: var(--space-lg);
  }

  .jzl-events-col .jzl-external-event-header {
    flex-direction: column;
    gap: var(--space-md);
  }

  .jzl-events-col .jzl-external-event-date-badge {
    align-self: flex-start;
  }

  .jzl-events-col .jzl-external-event-title {
    font-size: var(--text-xl);
  }

  .jzl-events-col .jzl-external-event-actions {
    flex-direction: column;
  }

  .jzl-events-col .jzl-external-event-cta-primary,
  .jzl-events-col .jzl-external-event-cta-secondary {
    width: 100%;
  }
}

/* ==========================================================================
   JA-CODE HERO TEASER CARD (Rechte Hero-Spalte)
   ========================================================================== */

/* Column Container */
.jzl-hero-col-teaser {
  position: relative;
  z-index: 2;
}

/* Card Background Effect - Wird auf die Column angewendet */
.jzl-hero-col-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(250, 248, 245, 0.95) 100%
  );
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 40px rgba(126, 86, 194, 0.15);
  border: 2px solid var(--jzl-purple-light);
  transition: all var(--transition-card);
  z-index: -1;
}

.jzl-hero-col-teaser:hover::before {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(126, 86, 194, 0.25);
  border-color: var(--jzl-purple);
}

/* Inner Padding für alle Module */
.jzl-hero-col-teaser {
  padding: var(--space-2xl) !important;
}

/* Datum-Badge */
.jzl-hero-col-teaser .jzl-hero-teaser-date .et_pb_text_inner {
  display: inline-flex;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(
    135deg,
    var(--jzl-purple) 0%,
    var(--jzl-coral) 100%
  );
  color: var(--jzl-white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 15px var(--jzl-purple-glow);
}

/* Programm-Badge */
.jzl-hero-col-teaser .jzl-hero-teaser-badge .et_pb_text_inner {
  display: inline-flex;
  padding: var(--space-xs) var(--space-md);
  background: var(--jzl-sage-light);
  color: var(--jzl-sage);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* Headline */
.jzl-hero-col-teaser .jzl-hero-teaser-headline .et_pb_text_inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin: 0 0 var(--space-sm) 0;
}

.jzl-hero-col-teaser .jzl-hero-teaser-headline .et_pb_text_inner h2 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: var(--font-bold);
}

/* Tagline */
.jzl-hero-col-teaser .jzl-hero-teaser-tagline .et_pb_text_inner p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--jzl-purple);
  margin: 0 0 var(--space-lg) 0;
  font-style: italic;
}

/* Description */
.jzl-hero-col-teaser .jzl-hero-teaser-description .et_pb_text_inner p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin: 0 0 var(--space-lg) 0;
}

/* Features List */
.jzl-hero-col-teaser .jzl-hero-teaser-features .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
}

.jzl-hero-col-teaser .jzl-hero-teaser-features .et_pb_text_inner li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--jzl-text-dark);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-normal);
}

.jzl-hero-col-teaser .jzl-hero-teaser-features .et_pb_text_inner li::before {
  content: "◆";
  color: var(--jzl-sage);
  font-size: 0.6rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* Primary Button */
.jzl-hero-col-teaser .jzl-hero-teaser-btn-primary .et_pb_button {
  width: 100%;
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--font-semibold) !important;
  padding: var(--space-md) var(--space-xl) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base) !important;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.jzl-hero-col-teaser .jzl-hero-teaser-btn-primary .et_pb_button:hover {
  background: var(--jzl-purple-soft) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--jzl-purple-glow);
}

/* Secondary Button */
.jzl-hero-col-teaser .jzl-hero-teaser-btn-secondary .et_pb_button {
  width: 100%;
  background: transparent !important;
  color: var(--jzl-text-dark) !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-sm) !important;
  font-weight: var(--font-semibold) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border: 2px solid var(--jzl-light-gray) !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base) !important;
  text-align: center;
}

.jzl-hero-col-teaser .jzl-hero-teaser-btn-secondary .et_pb_button:hover {
  border-color: var(--jzl-purple) !important;
  color: var(--jzl-purple) !important;
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .jzl-hero-col-teaser {
    margin-top: var(--space-2xl);
    padding: var(--space-xl) !important;
  }

  .jzl-hero-col-teaser .jzl-hero-teaser-headline .et_pb_text_inner h2 {
    font-size: var(--text-3xl);
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .jzl-hero-col-teaser {
    padding: var(--space-lg) !important;
  }

  .jzl-hero-col-teaser .jzl-hero-teaser-headline .et_pb_text_inner h2 {
    font-size: var(--text-2xl);
  }

  .jzl-hero-col-teaser .jzl-hero-teaser-description .et_pb_text_inner p {
    font-size: var(--text-sm);
  }
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

/* Section 1: Hero / Error Message */
.jzl-404-section {
  background: linear-gradient(
    180deg,
    var(--jzl-white) 0%,
    var(--jzl-cream) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Decorative Background Blob */
.jzl-404-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--jzl-purple-light) 0%,
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
}

/* Column */
.jzl-404-col-content {
  position: relative;
  z-index: 2;
}

/* Error Code */
.jzl-404-col-content .jzl-404-code .et_pb_text_inner h1 {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: var(--font-extrabold);
  line-height: 1;
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.05em;
}

/* Headline */
.jzl-404-col-content .jzl-404-headline .et_pb_text_inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--jzl-text-dark);
  margin: 0 0 var(--space-lg) 0;
}

.jzl-404-col-content .jzl-404-headline .et_pb_text_inner h2 strong {
  background: var(--jzl-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Message */
.jzl-404-col-content .jzl-404-message .et_pb_text_inner p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--jzl-text-medium);
  margin: 0 0 var(--space-2xl) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Suggestion Box */
.jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner {
  background: var(--jzl-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin: 0 0 var(--space-2xl) 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner p strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--jzl-text-dark);
  display: block;
  margin-bottom: var(--space-md);
}

.jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-relaxed);
}

.jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner li::before {
  content: "→";
  color: var(--jzl-purple);
  font-weight: var(--font-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Buttons Container */
.jzl-404-col-content .jzl-404-btn-home,
.jzl-404-col-content .jzl-404-btn-contact {
  display: inline-block;
  margin: 0 var(--space-sm);
}

/* Primary Button (Home) */
.jzl-404-col-content .jzl-404-btn-home .et_pb_button {
  background: var(--jzl-purple) !important;
  color: var(--jzl-white) !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--font-semibold) !important;
  padding: var(--space-md) var(--space-2xl) !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all var(--transition-base) !important;
  box-shadow: 0 4px 15px var(--jzl-purple-glow);
}

.jzl-404-col-content .jzl-404-btn-home .et_pb_button:hover {
  background: var(--jzl-purple-soft) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--jzl-purple-glow);
}

/* Secondary Button (Contact) */
.jzl-404-col-content .jzl-404-btn-contact .et_pb_button {
  background: transparent !important;
  color: var(--jzl-text-dark) !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--font-semibold) !important;
  padding: var(--space-md) var(--space-2xl) !important;
  border: 2px solid var(--jzl-light-gray) !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition-base) !important;
}

.jzl-404-col-content .jzl-404-btn-contact .et_pb_button:hover {
  border-color: var(--jzl-purple) !important;
  color: var(--jzl-purple) !important;
  transform: translateY(-2px);
}

/* Section 2: Hilfreiche Links */
.jzl-404-links-section {
  background: var(--jzl-cream);
}

/* Links Headline */
.jzl-404-links-headline .et_pb_text_inner h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--jzl-text-dark);
  margin: 0 0 var(--space-lg) 0;
}

/* Links List */
.jzl-404-links-list .et_pb_text_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jzl-404-links-list .et_pb_text_inner li {
  margin-bottom: var(--space-sm);
}

.jzl-404-links-list .et_pb_text_inner a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.jzl-404-links-list .et_pb_text_inner a::before {
  content: "→";
  color: var(--jzl-purple);
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-fast);
}

.jzl-404-links-list .et_pb_text_inner a:hover {
  color: var(--jzl-purple);
}

.jzl-404-links-list .et_pb_text_inner a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info */
.jzl-404-contact-info .et_pb_text_inner p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--jzl-text-medium);
  margin-bottom: var(--space-md);
}

.jzl-404-contact-info .et_pb_text_inner p strong {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  color: var(--jzl-text-dark);
  display: block;
  margin-bottom: var(--space-xs);
}

.jzl-404-contact-info .et_pb_text_inner a {
  color: var(--jzl-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.jzl-404-contact-info .et_pb_text_inner a:hover {
  color: var(--jzl-purple-soft);
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .jzl-404-col-content .jzl-404-code .et_pb_text_inner h1 {
    font-size: clamp(5rem, 12vw, 8rem);
  }

  .jzl-404-col-content .jzl-404-headline .et_pb_text_inner h2 {
    font-size: var(--text-3xl);
  }

  .jzl-404-col-content .jzl-404-message .et_pb_text_inner p {
    font-size: var(--text-base);
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .jzl-404-section {
    min-height: 60vh;
  }

  .jzl-404-col-content .jzl-404-code .et_pb_text_inner h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .jzl-404-col-content .jzl-404-headline .et_pb_text_inner h2 {
    font-size: var(--text-2xl);
  }

  .jzl-404-col-content .jzl-404-suggestion .et_pb_text_inner {
    padding: var(--space-lg);
  }

  .jzl-404-col-content .jzl-404-btn-home,
  .jzl-404-col-content .jzl-404-btn-contact {
    display: block;
    margin: var(--space-sm) 0;
  }

  .jzl-404-col-content .jzl-404-btn-home .et_pb_button,
  .jzl-404-col-content .jzl-404-btn-contact .et_pb_button {
    width: 100%;
    text-align: center;
  }
}
