/* ================================== */
/*               Thumbs               */
/* ================================== */

div.multithumb_box {
    margin: 0 auto;
    max-width: 900px;
    overflow: hidden;
    text-align: left;

    --thumb-size: 294px;
}

article.post.type_thumb {
    display: inline-block;
    width: var(--thumb-size);
    height: var(--thumb-size);
    overflow: hidden;
    position: relative;
}

article.post.type_thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

article.post.type_thumb .text_box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--padding);
    background-color: var(--bg-1);
    border-radius: 0;
}