.thumbnail-frode {
    position: relative;
    display: inline-block;
    max-width: 400px;
    text-align: left;
    transition: all 0.2s ease-in-out;
}

.thumbnail-frode-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    padding: 15px;
    color: #fff;
    background-color: rgba(35, 35, 47, 0.8);
}

.thumbnail-frode-title {
    color: inherit;
}

.thumbnail-frode-description {
    font-size: 1.0625rem;
}

.thumbnail-frode-btn {
    align-self: flex-end;
}

* + .thumbnail-frode-btn {
    margin-top: 0.9375rem;
}
.isotope-wrap .flex {
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
}
.isotope-wrap .flex > * {
    max-width: 80%;
}
@media (min-width: 576px) {
    .thumbnail-frode {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .thumbnail-frode-caption {
        padding: 25px;
    }
    .thumbnail-frode-img > img {
        max-height: 251px;
    }
    .isotope-wrap .flex {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .thumbnail-frode-content {
        width: 100%;
        overflow: hidden;
    }

    .thumbnail-frode-title, .thumbnail-frode-description {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .desktop .thumbnail-frode img {
        position: relative;
        z-index: 1;
        transform: scale(1);
        transition: transform .4s;
    }

    .desktop .thumbnail-frode-caption {
        background-color: #23232f;
        transform: scale(0.4);
        transition: transform .4s, opacity .4s;
    }

    .desktop .thumbnail-frode:hover img {
        transform: scale(0.4);
    }

    .desktop .thumbnail-frode:hover .thumbnail-frode-caption {
        transform: scale(1);
    }
    .thumbnail-frode-img > img {
        max-height: 348px;
    }
}

@media (min-width: 1200px) {
    .thumbnail-frode-caption {
        padding: 32px 40px 40px;
    }

    * + .thumbnail-frode-description {
        margin-top: 11px;
    }
    .thumbnail-frode-img > img {
        max-height: 444px;
    }
}


@media (max-width: 1200px) {
    /* .isotope-wrap .flex {
        row-gap: 20px;
        flex-direction: column;
    } */
}

