/* ==========================================================
   Bellemann - 2 Spalter Styles
   Two-column section (Text + Video/Empty)
========================================================== */

/* Layout */
.bellemann-2spalter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.bellemann-2spalter__col {
  width: 100%;
}

/* GDPR YouTube Placeholder */
.yt-consent {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  overflow: hidden;
  margin-bottom: 10px;
}
.yt-consent__thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Overlay + Play Button */
.yt-consent__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.yt-consent__play {
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  position: relative;
  transition: background 0.3s ease, transform 0.2s ease;
}
.yt-consent__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 26px solid #FFD800;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.yt-consent__overlay:hover .yt-consent__play {
  background: rgba(0,0,0,0.8);
  transform: scale(1.05);
}

/* Consent Notice */
.yt-consent__notice {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .bellemann-2spalter__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yt-consent__play {
    width: 60px;
    height: 60px;
  }
  .yt-consent__play::before {
    border-left: 20px solid #FFD800;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
