/* =========================================
   WDF Hero -lohko
   ========================================= */

.wdf-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.wdf-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wdf-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wdf-hero__sisalto {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.wdf-hero__otsikko {
    color: #ffffff;
    margin: 0 0 16px 0;
}

.wdf-hero__teksti {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
}

.wdf-hero__painike {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.wdf-hero__painike:hover {
    opacity: 0.85;
}