/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 08 2025 | 20:23:15 */
.agreement-box {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 0 6px 2px #0001;
  padding: 1.5rem;
  text-align: center;
}
.cover {
  position: relative;
  width: 100%;
  height: 400px; /* Beispielhöhe */
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cover-content {
  position: relative; /* Damit es über dem Blur liegt */
  color: white;
  padding: 20px;
  z-index: 1;
}
/* Eigene Klasse für gleich hohe Spalten */
.equal-cols {
  display: flex;
  align-items: stretch; /* Alle Spalten gleich hoch */
}

.equal-cols > .wp-block-column {
  display: flex;
  flex-direction: column;
}