.u-object-fit {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.u-overlay {
    position: relative;
}

.u-overlay::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    content: "";
    background-color: var(--black-color);
    transition: opacity 1s var(--animation-base);
}

.no-image.u-overlay::before {
    background-color: var(--ghost-accent-color);
}

.u-overlay:not(.no-image).initialized::before {
    opacity: 0.4;
}

.site-cover {
    z-index: unset !important;
    display: flex;
    min-height: 120px;
    /* min-height: 600px;
    max-height:  120px;
    min-height: 600px;
     */
}

.site-cover .search {
    width: 400px;
    margin: 30px auto 0;
}

.site-cover .search-field {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    color: darkgray;
    cursor: pointer;
    background-color: var(--white-color);
    border-radius: 5px;
}

.cover-content {
    position: relative;
    z-index: 20;
    /* padding: 30px; 
     */
    padding: 3px;
    margin: auto;
    color: var(--white-color);
    text-align: center;
}

.cover-title {
    max-width: 720px;
    margin: 0 auto;
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ghost-accent-color);
}

.has-serif-title .cover-description {
    font-family: var(--font-serif);
    font-weight: 700;
}

.cover-description {
    max-width: 720px;
    margin: 0 auto;
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 460px) {
    .site-cover .search {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .site-cover {
        min-height: 100px;
    }

    .cover-title {
        font-size: 3.6rem;
    }

    .cover-description {
        font-size: 24px;
    }
}
