/* =========================================
   WDF Hero -lohko
   ========================================= */
.wdf-hero {
    position: relative;
    min-height: 80vh;        /* min-height ettei sisältö leikkaudu matalilla näytöillä */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 64px;
}

.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;
	background: rgba(0,0,0,0.5);
}
.wdf-hero__sisalto {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    padding: var(--wdf-padding-y) var(--wdf-padding-x);
    box-sizing: border-box;
}

.wdf-hero__sisalto--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.wdf-hero__alaotsikko {
    color: #ffffff;
    margin: 0 0 16px 0;
    font-size: 2.074rem;	
}
/* Peitto per rivi: inline + box-decoration-break clone */
.wdf-hero__alaotsikko-teksti {
    display: inline;
    background: var(--wp--preset--color--dark);
    padding: 4px 12px;
    -webkit-box-decoration-break: clone; /* Safari / iOS */
    box-decoration-break: clone;
}

.wdf-hero__teksti {
    color: #ffffff;
    margin: 0 0 32px 0;
	font-size: 1.2rem;
}
.wdf-hero__sisalto--dark-text .wdf-hero__otsikko,
.wdf-hero__sisalto--dark-text .wdf-hero__alaotsikko,
.wdf-hero__sisalto--dark-text .wdf-hero__teksti {
    color: #000000;
}

.wdf-hero__sisalto--dark-text .wdf-hero__alaotsikko-teksti {
    background: rgba(255, 255, 255, 0.85);
}
.wdf-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Tumma tausta -vaihtoehto */
.wdf-hero--tumma {
    background: var(--wp--preset--color--dark);
}

/* Mobiili */
@media (max-width: 767px) {
	.wdf-hero__alaotsikko {
		font-size:1.602rem;
		line-height: 41px;
	}
}