
.entry-content.is-layout-constrained .landing-page {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  display: block !important;
}

.wp-block-group.alignwide {
  display: block !important;
  max-width: none !important;
  padding: 0 !important;
  overflow: visible !important;
}
.entry-content {
  display: block !important;
  max-width: none !important;
}
.wp-block-group {
  flex-direction: row !important;
}


.landing-page .hero {
  display:flex;
  align-items:center;
  gap:30px;
  padding:40px 0;
}

.landing-page .hero img {
  width:100%;
  border-radius:10px;
}

.landing-page .hero h1 {
  margin-top:0;
  font-size:2.2em;
  line-height:1.2;
}

.landing-page .hero p {
  font-size:1.1em;
  color:#444;
}


/* Vollbreite Hero */
.landing-page .hero-full {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100vw;
  padding: 120px 20px;
  overflow: hidden;
}

/* Hintergrundbild */
.landing-page .hero-full img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Text */
.landing-page .hero-full .hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Grid */
.landing-page .lp-feature-grid {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}



/* Preisbox */
.landing-page .lp-pricebox {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.landing-page .lp-pricebox h2 {
  margin-top: 0;
}

.landing-page .lp-pricebox .lp-price {
  font-size: 2em;
  margin: 10px 0;
}

.landing-page .lp-pricebox .lp-price span {
  font-size: 0.6em;
  color: #666;
}

.landing-page .lp-pricebox ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.landing-page .lp-pricebox ul li {
  margin-bottom: 10px;
}

.landing-page .lp-btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}







/* CTA-Container */
/* CTA-Container */
.landing-page .lp-cta {
  padding: 30px 10px;
  background: #0073e6;
  color: white;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
}

/* CTA-Überschrift */
.landing-page .lp-cta h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* CTA-Text */
.landing-page .lp-cta p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* CTA-Button */
.landing-page .lp-btn-cta {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: #0073e6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;

  /* WICHTIG: Button kompakt halten */
  max-width: 260px;
  width: auto;        /* <— verhindert Full-Width */
  text-align: center;
  margin: 0 auto;

  /* Hover-Animation */
  transition: background 0.2s ease, color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover-Effekt */
.landing-page .lp-btn-cta:hover {
  background: #005bb8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
