.card-container {
    display: flex;
    width: 100%;
}
.back-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    border-right: 1px solid rgba(0,0,0,.125); /* Граница как у карточки */

}
.back-button {
    writing-mode: vertical-lr; /* Вертикальный текст */
    transform: rotate(180deg); /* Разворот текста */
    padding: 20px 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
