/* CSS Document */

.jal-random-image-wrapper {
    position:relative;
    height: 400px;
}

.jal-random-image-1 {
    position: absolute;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.jal-random-image-2 {
    position: absolute;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.jal-random-image-info {
    z-index: 3;
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-right: 10px;
    row-gap: 5px;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}

.jal-random-image-info a {
    color: #adcefc;
}

.jal-random-image-info-caption {
    display: flex;
    font-size: 1.3em;
    font-style: italic;
}

.jal-random-image-info-caption img {
    margin-bottom: 5px;
}

.jal-random-image-info-bkg {
    filter: drop-shadow(0 0px 6px rgba(0, 0, 0, 0.1));
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0px 0px 4px 3px rgb(0 0 0 / 40%);
}


/* 600px = 37.5em (phone portrait) */
@media all and (max-width: 37.5em) {
    .jal-random-image-wrapper {
        height: 350px;
    }

    .jal-random-image-1 {
        height: 350px;
    }

    .jal-random-image-2 {
        height: 350px;
    }
}
