/* START LEFT BLOCK */

.left_block {
    max-width: 380px;
    width: 100%;
    /*margin-right: 40px;*/
    /*display: none;*/
    margin: 130px auto 50px;
}

.left_block__title {
    font-weight: bold;
    text-align: center;
    font-size: 1.8em;
    line-height: 3em;
}

.left_block__title::before {
    content: " ";
    margin-left: 8px;
}

.kan11Tags {
    margin-top: 40px;
}

.kan11Tag {
    margin-bottom: 16px;
    width: 100%;
    background-color: #2d2d2d;
    height: 96px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

.kan11Tag_img {
    width: 40%;
    height: calc(100% - 8px);
    overflow: hidden;
    margin-top: 4px;
    border: 1px solid #6c6c6c;
}

.kan11Tag_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.kan11Tag_text {
    width: 60%;
    height: 100%;
    color: white;
    padding: 16px 8px 16px 16px;
    align-content: center;
}

@media (min-width: 768px) {
    .left_block {
        /*display: block;*/
        margin: 0;
        margin-right: 40px;
    }

    .kan11Tags {
        margin-top: 16px;
        overflow-y: auto;
        max-height: calc(100dvh - 169px);
    }

    .left_block__title {
        font-size: 1.5em;
        display: inline-block;
        border-right: 2px solid var(--main-red-color);
        line-height: unset;
    }
}

/* END LEFT BLOCK */