.home-hero {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* ===== DESKTOP ===== */
.home-hero__desktop { display: block; }

.home-hero__desktop-inner {
    min-height: 768px;
    display: flex;
    width: 100%;
}

.home-hero__content {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 48px 0 48px 48px;
}

.home-hero__logo{
    margin-bottom: 32px;
}

.home-hero__logo-img {
    display: block;
    height: auto;
}

.home-hero__title { margin: 0; }

.home-hero__description--desktop {
    font-size: var(--wp--preset--font-size--text-l);
    color: var(--wp--preset--color--grey-600-text);
    margin-bottom: 32px;
}

.home-hero__description--desktop p { margin: 0; }

.home-hero__desktop-inner .wp-block-button{
    align-self: flex-start;
}

.home-hero__media {
    width: 60%;
    display: flex;
}

.home-hero__video-clip {
    width: 100%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.home-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== MOBILE ===== */
.home-hero__mobile {
    display: none;
    min-height: 600px;
    position: relative;
    background: #000;
}

.home-hero__mobile-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-hero__mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.23%, rgba(0, 0, 0, 0.6) 77.7%),
        linear-gradient(0deg, rgba(24, 58, 74, 0.3), rgba(24, 58, 74, 0.2));
    pointer-events: none;
}

.home-hero__mobile-content {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px 16px;
}

.home-hero__logo--mobile{
    margin-bottom: 16px;
}

.home-hero__title--mobile { color: #fff; }

.home-hero__description--mobile {
    font-size: var(--wp--preset--font-size--text-l);
    color: #E6E6E5;
    margin-bottom: 16px;
}

.home-hero__description--mobile p {margin: 0;font-size: var(--wp--preset--font-size--text-m);}

/* ===== SWITCH @ 1001px ===== */
@media (max-width: 1000px) {
    .home-hero { background: transparent; }
    .home-hero__desktop { display: none; }
    .home-hero__mobile { display: block; }
}
