/* Basic, minimal styling. Adjust in your theme as needed. */
.vcl-wrapper { position: relative; display: block; }
.vcl-hotspot { 
  display: block; 
  width: 100%; 
  cursor: pointer; 
  outline: none; 
  /* Default height for backward compatibility - will be overridden by JavaScript */
  height: 200px;
  min-height: 50px;
}

/* Responsive height classes - will be applied by JavaScript */
.vcl-hotspot.desktop-height { height: var(--desktop-height, 100%); }
.vcl-hotspot.mobile-height { height: var(--mobile-height, 100%); }

/* Mobile-first responsive breakpoint */
@media (min-width: 768px) {
  .vcl-hotspot.desktop-height { height: var(--desktop-height, 100%); }
  .vcl-hotspot.mobile-height { height: var(--desktop-height, 100%); }
}

.vcl-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 100000; /* above page content */
}

.vcl-modal {
  position: fixed; inset: 0; z-index: 100001;
  display: grid; place-items: center;
  padding: 24px;
}

.vcl-modal[hidden], .vcl-backdrop[hidden] { display: none !important; }

/* Player area should be the positioning context */
.vcl-player-area {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16/9;
  background: #000;
  /* allow the close button to sit 20px above the player */
  overflow: visible;
}

/* Keep the radius and crop only on the iframe wrapper, not the whole area */
.vcl-player-iframe-wrap,
.vcl-player-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.vcl-player-iframe-wrap {
  overflow: hidden;
  background: #000;
  position: relative;
  z-index: 1;
}

/* CTA should cover only the video area, not the whole screen */
.vcl-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8); /* semi transparent black */
  z-index: 2;
}

/* Close button should sit relative to the player area, ~20px above, to the right */
.vcl-close {
  position: absolute;
  right: 0;
  top: -30px;
  padding: 0;
  line-height: 1;
  border: 0;
  color: #ffffff;
  background: none;
  cursor: pointer;
  z-index: 3;
}

.vcl-cta-center { text-align: center; margin-bottom: 16px; }
.vcl-cta-title {
  color: #fff;
  margin: 0 0 10px;
  font-family: HomepageBaukasten;
  font-weight: 400;
  font-size: 40px;
	line-height: 1;
}
.vcl-cta-button {
  display: inline-block;
  padding: 10px 18px;
  background: #ffffff;
  color: #000000;
  font-family: HomepageBaukasten;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.vcl-cta-subtitle {
    font-family: HomepageBaukasten;
    font-weight: 400;
    font-size: 40px;
	line-height: 1;
}

.vcl-cta-bottom {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  width: min(100%, 960px); align-items: end;
}

.vcl-cta-left { color: #fff; font-size: 14px; }
.vcl-cta-desc {
  font-family: HomepageBaukasten;
  font-weight: 400;
  font-size: 20px;
}

.vcl-cta-right img {
  max-height: 60px; width: auto; display: block;
}


/*------------------------- T A B L E T S + M O B I L E ---------------------------*/
@media screen and (max-width:1250px){
	
.vcl-cta-overlay {
    padding: 20px 10px 10px;
}
.vcl-cta-title {
    max-width: 250px;
    margin: 0 0 20px;
    font-size: 27px;
}
.vcl-cta-button {
    font-size: 14px;
    letter-spacing: 1px;
}
.vcl-cta-subtitle {
    font-size: 23px;
}
.vcl-cta-desc {
    font-size: 16px;
}
	
	
	
}