#socialmedia-start::before {
  content: "";
  display: block;
  height: 190px; /* Höhe des Headers */
  margin-top: -190px;
}

/* -----------------------------------------------------------
   VERTICAL HERO
----------------------------------------------------------- */
.partial-vertical-hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #d9ff3d;
}

/* Grid: 50% Video / 50% Text */
.partial-vertical-hero-inner {
    display: grid;
    grid-template-columns: 41vw auto 10vw;
    width: 100%;
    height: 100%;
}

/* Vertical Video */
.partial-vertical-hero-video {
    height: 100vh;
    width: 56.25vw; /* 9:16 Verhältnis */
    aspect-ratio: 9 / 16;
}

/* Vertical Text */
.partial-vertical-hero-text {
    padding: 3rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.partial-vertical-hero-text h2 {
    align-self: center;
    font-size: 5.2em;
    margin: auto;
    text-align: start;
    font-family: "CoFo Kak", sans-serif;
    text-transform: none;
}

/* -----------------------------------------------------------
   SOCIAL MEDIA – REELS
----------------------------------------------------------- */
.partial-vertical-reel {
    min-height: 65vh;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    flex-wrap: nowrap;
}


/* Mini-Videos */
.partial-vertical-mini-video {
    width: calc(138vw / 6 - 0.5rem);
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 0.5rem;
    position: relative;
    margin-left: -0.3em;
    z-index: 1;
    margin-top: 3em;
    border-radius: 0px;
}

/* Hover-Text direkt auf dem Video */
.video-wrapper::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.video-wrapper:hover::after {
    opacity: 1;
}

/* -----------------------------------------------------------
   LEGACY/OPTIONAL OVERLAY (nicht genutzt, aber gelassen)
----------------------------------------------------------- */

/* Falls später mal genutzt */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}
