.tsm-fixed-wrapper,
.tsm-rot-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.tsm-item {
    border: 1px solid #e9e9e99b;
    padding: 1.5em;
    margin-bottom: 1em;
    background: #fafafa;
    display:flex;
    gap:.5em;
    flex-direction: column;
}

.tsm-text {
    font-size: 1em;
    line-height: 1.5;
}

.tsm-author {
    font-weight: bold;
    font-size: .9em;
    text-align: right;
    padding-right:2em;
    border-image: linear-gradient(to right, #ffffff00 0%, #ffffff00 50%, #aaaaaaff 95%,  #aaaaaa00 100%) 1 / 1px 0 0;
    padding-top:.5em;
}
.tsm-author > span{
    display:block;
    color:gold;
}

.tsm-link {
    display: inline-block;
    font-size: .6em;
    color: #21759b;
    text-decoration: underline;
}

.tsm-rot-wrapper .tsm-slide {
    display: none;
}
.tsm-rot-wrapper {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    flex:1;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .tsm-rot-wrapper>*{
        width:100%;
    }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tsm-rot-wrapper>*{
        width:calc(50% - .5em);
    }
}
@media screen and (min-width: 1025px) {
    .tsm-rot-wrapper>*{
        width:calc(33.33% - .5em);
    }
}