:root {
    --cm_2022_text_sound_title_font: var(--cm_2022_publications_title_font);
    --cm_2022_text_sound_hyperlink_font: var(--cm_2022_left_right_text_font_size);
}

.cm_2022_text_sound_outer_container {
    width: 80%;
    margin: 2% auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
}

.cm_2022_text_sound_item_container {
    flex: 0 1 28%;
    position: relative;
    margin: 0 2.6% 5% 2.7%;
}

.cm_2022_text_sound_item_img_container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cm_2022_text_sound_item_img {
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.cm_2022_text_sound_item_title {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 9;
}

.cm_2022_text_sound_item_title a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
    font: 500 var(--cm_2022_text_sound_title_font) 'Open Sans', sans-serif;
    padding: 5px 0;
    border-bottom: 1px solid #e2e2ee;
    text-align: center;
    z-index: 9;
    color: #861f20;
}

.cm_2022_text_sound_item_text {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 9;
}

.cm_2022_text_sound_item_text a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid #e2e2ee;
    text-align: center;
    transition: 0.2s all ease-in-out;
    overflow: hidden;
    z-index: 9;
}

.cm_2022_text_sound_item_title a:hover {
    color: #861f20;
    transition: 0.2s all ease-in-out;
}

.cm_2022_text_sound_item_text::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    background-color: #861f20;
    z-index: 0;
    transition: 0.2s all ease-in-out;
    z-index: -9;
}

.cm_2022_text_sound_item_text:hover::after {
    left: 0;
    transition: 0.2s all ease-in-out;
}

.cm_2022_text_sound_item_inner_text {
    color: #262626;
    font: 300 var(--cm_2022_text_sound_hyperlink_font) 'EB Garamond', sans-serif;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.cm_2022_text_sound_item_text a:hover .cm_2022_text_sound_item_inner_text {
    color: #fff;
    transition: 0.2s all ease-in-out;
}

.cm_2022_text_sound_item_small_img_container {
    width: 25%;
    flex: 0 1 25%;
    position: relative;
    margin: 0px 15px 0px 5px;
    padding: 0;
    display: flex;
}

.cm_2022_text_sound_small_item_img {
    width: 100%;
    position: relative;
    border-radius: 5px;
}

@media screen and (orientation: portrait) and (max-width: 1050px) {
     :root {
        --cm_2022_text_sound_title_font: var(--cm_2022_publications_title_font);
        --cm_2022_text_sound_hyperlink_font: var(--cm_2022_left_right_text_font_size);
    }
    .cm_2022_text_sound_outer_container {
        width: 98%;
    }
    .cm_2022_text_sound_item_container {
        flex: 0 1 100%;
        /* margin: 0 5% 5% 5%; */
    }
    .cm_2022_text_sound_item_container:nth-of-type(2n) {
        /* margin: 0 0 0 1%; */
    }
    .cm_2022_text_sound_item_text a {
        justify-content: flex-start;
    }
    .cm_2022_text_sound_item_inner_text {
        flex: 0 1 60vw;
        padding-right: 2%;
    }
    .cm_2022_text_sound_item_small_img_container {
        width: unset;
        flex: 0 1 24vw;
        height: calc(24vw * 0.5625);
    }
}

@media screen and (orientation: landscape) and (max-width: 1050px) {
     :root {
        --cm_2022_text_sound_title_font: var(--cm_2022_publications_title_font);
        --cm_2022_text_sound_hyperlink_font: var(--cm_2022_left_right_text_font_size);
    }
    .cm_2022_text_sound_outer_container {
        width: 98%;
    }
    .cm_2022_text_sound_item_container {
        flex: 0 1 40%;
        margin: 0 5% 5% 5%;
    }
    .cm_2022_text_sound_item_container:nth-of-type(2n) {
        /* margin: 0 0 0 1%; */
    }
    .cm_2022_text_sound_item_text a {
        justify-content: flex-start;
    }
    .cm_2022_text_sound_item_inner_text {
        flex: 0 1 22vw;
        padding-right: 2%;
        text-align: left;
    }
    .cm_2022_text_sound_item_small_img_container {
        width: unset;
        flex: 0 1 12vw;
        height: calc(12vw * 0.5625);
    }
}