/* Fonts */
.cover .item .name {
    font-size: 28px;
}
.cover .item .catcher {
    font-family: 'MediaSans-Bold';
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cover .item .caption {
    margin-top: 20px;
    font-family: 'KeplerStd-Scn';
    font-size: 11px;
}
@media only screen and (min-width: 1024px) {
    .cover .item .name {
        font-size: 40px;
    }
    .cover .item .catcher {
        font-size: 19px;
    }
}


/* Cover */
.cover {
    height: 500px;
    overflow: hidden;
    position :relative;
}
.cover.highlight {
    height: 100vh;
}
.cover .item {
    margin: 0;
}
.cover .item .thumbnail {
    padding: 0;
    margin: 0;
    position: static;
}
.cover .item .thumbnail .wrapper {
    position: static;
}
.cover .item .thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cover .item .details {
    max-width: 400px;
    color: #fff;
    position: absolute;
    z-index: 50;
    bottom: var(--default-gap);
    padding: 0 var(--default-gap);
}
