<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sidebar-recommendations {
    margin-top: calc(2 * var(--content-padding));
    margin-bottom: var(--content-padding);
}

.sidebar-recommendations-title {
    font-size: 1.2em;
    margin: 0;
    margin-bottom: var(--content-padding);
    color: var(--color-primary);
    font-weight: 900;
}

.sidebar-recommendations-list{

}

.sidebar-recommendations-list-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
}

.sidebar-recommendations-list-item:last-child {
    border-bottom: none;
}

.sidebar-recommendations-list-item + .sidebar-recommendations-list-item {
    margin-top: var(--content-padding);
}

.sidebar-recommendations-list-item-title {
    order: 2;
    margin-top: .7em;
    margin-bottom: .5em;

    font-family: PT Serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.2px;
    text-align: left;
    color: #000000;
}

.sidebar-recommendations-list-item-thumb {
    order: 1;

    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
    display: block;

    position: relative;
}

.sidebar-recommendations-list-item-thumb-link {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.sidebar-recommendations-list-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    backface-visibility: hidden;
    transition: transform 199ms cubic-bezier(0, 0, 0.15, 1.17);
}

.sidebar-recommendations-list-item:hover .sidebar-recommendations-list-item-thumb img {
    transform: scale(1.05);
}

.sidebar-recommendations-list-item-excerpt {
    order: 3;
}



/** sidebar recomendations small **/
.sidebar-recommendations-small {
    margin-top: calc(2 * var(--content-padding));
    margin-bottom: var(--content-padding);
}

.sidebar-recommendations-small-title {
    font-size: 1.2em;
    margin: 0;
    margin-bottom: var(--content-padding);
    color: var(--color-primary);
    font-weight: 900;
}

.sidebar-recommendations-small-list{

}

.sidebar-recommendations-small-list-item {
    display: flex;
}

.sidebar-recommendations-small-list-item + .sidebar-recommendations-small-list-item {
    margin-top: calc(0.7 * var(--content-padding));
}

.sidebar-recommendations-small-list-item-title {
    order: 1;
    margin-bottom:.7em;

    flex: 1;
    margin-top: 0;
}

.sidebar-recommendations-small-list-item-title a {
    font-weight: 900;
}

.sidebar-recommendations-small-list-item-thumb {
    order: 2;

    width: 30%;
    height: 0;
    padding-bottom: 20%;
    margin-left: 1em;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
    display: block;

    position: relative;
}

.sidebar-recommendations-small-list-item-thumb-link {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.sidebar-recommendations-small-list-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    backface-visibility: hidden;
    transition: transform 199ms cubic-bezier(0, 0, 0.15, 1.17);
}

.sidebar-recommendations-small-list-item:hover .sidebar-recommendations-small-list-item-thumb img {
    transform: scale(1.05);
}

.sidebar-recommendations-small-list-item-excerpt {
    order: 3;
}</pre></body></html>