.sunvit-home-about-layout {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 2.5rem;
}

.sunvit-home-about-layout.has-video {
    grid-template-columns: minmax(0, 1fr);
}

.sunvit-home-about-copy {
    width: 100%;
    max-width: 34rem;
    text-align: right;
}

.sunvit-home-about-layout:not(.has-video) .sunvit-home-about-copy {
    max-width: 40rem;
    text-align: center;
}

.sunvit-home-about-video {
    width: 100%;
    max-width: 36rem;
    overflow: hidden;
    background: transparent;
    border-radius: 0.75rem;
    line-height: 0;
    display: flex;
    justify-content: center;
}

.sunvit-home-about-video video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: var(--sunvit-home-video-height-mobile, 260px);
}

.sunvit-about-video-hero {
    position: relative;
    width: 100%;
    height: var(--sunvit-home-video-height-mobile, 260px);
    overflow: hidden;
    background: #111;
}

.sunvit-about-video-hero > video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sunvit-about-video-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.12));
}

@media (min-width: 769px) {
    .sunvit-home-about-layout.has-video {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
        gap: clamp(3rem, 6vw, 5.5rem);
    }

    .sunvit-home-about-video {
        max-width: 38rem;
    }

    .sunvit-home-about-video video {
        max-height: var(--sunvit-home-video-height-desktop, 560px);
    }

    .sunvit-about-video-hero {
        height: var(--sunvit-home-video-height-desktop, 560px);
    }
}
