

.item-ctn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: -30px;
}

.item {
    width: calc(var(--small) / 2 - 1px);
    height: calc(var(--small) / 2 / var(--poster-ratio));
    margin-bottom: 30px;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
}

.item-image {
    position: absolute;
    background-color: rgba(255,255,255, 0.12);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.2s; /* Safari */
    -moz-animation-duration: 0.2s;
    transition-duration: 0.2s;
    opacity: 0.85;
}

.item:hover .item-image {
    opacity: 0.65;
}

.item:hover .item-title {
    opacity: 1;
}

@media (max-width: 900px) {
    .item-ctn {
        margin-bottom: -2px;
        grid-template-columns: 1fr 1fr;
    }
    .item {
        margin-bottom: 2px;
        margin-right: 2px;
    }
}

@media (max-width: 500px) {
    .item {
        width: calc(100vw / 2 - 1px);
        height: calc(100vw / 2 / var(--poster-ratio));
    }
}

@media (max-width: 200px) {
    .item {
        width: calc(200px / 2 - 1px);
        height: calc(200px / 2 / var(--poster-ratio));
    }
}

.item-title {
    padding: 1.5em 0.7em 0.4em 0.7em;
    box-sizing: border-box;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7));

    position: absolute;
    bottom: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: white;
    opacity: 0.9;
    line-height: 1em;
}

.item-title-text {
}

.item-title-h {
    font-weight: bolder;
}

.item-title-p {
    font-size: 0.65em;
    line-height: 2em;
}

.item-title-sym {
    height: 1em;
}

.item-title-arrow {
    display: block;
    height: 100%;
}
