.preview {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.preview:nth-child(2n) {
    flex-direction: row-reverse;
}

.preview > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: auto;
    height: -webkit-fill-available;
}

.preview-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: auto;
}

.preview-date {
    font-weight: 500;
    font-size: 18px;
    color: #35003D;
    width: 100%;
    text-align: left;
}

.preview:nth-child(2n) .preview-date {
    text-align: right;
}

.preview-title {
    font-family: 'Days One', uppercase, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-align: right;
    width: 100%;
    color: #35003D;
}

.preview:nth-child(2n) .preview-title {
    text-align: left;
}

.preview-content {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-align: right;
    width: 100%;
    color: #505050;
}

.preview:nth-child(2n) .preview-content {
    text-align: left;
}

.preview-cover {
    width: 396px;
    height: 244px;
    background: gray;
}

.preview:nth-child(2n) .buttons-panel {
    flex-direction: row-reverse;
    margin-right: 0;
}

.preview .buttons-panel:before {
    content: '';
    height: 3px;
    width: 100%;
    background: #35003D;
}

.preview .buttons-panel .transition-button span {
    text-wrap: nowrap;
}