.tournament-item {
    background: #fff;
    border: 1px solid #e8ddd2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(58, 42, 26, .06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tournament-item .item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 20px;
    flex: 1;
}

.tournament-item .item-content .item-title-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tournament-item .item-content .item-title {
    color: #000;
    font-family: "UVN Chim Bien";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 39.2px */
    text-decoration: none;
}

.tournament-item .item-content .item-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: #888;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px; /* 143.75% */
}

.tournament-item .item-content .item-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tournament-item .item-content .item-footer .prices {
    display: flex;
    gap: 8px;
}

.tournament-item .item-content .item-footer .prices .price {
    color: #7A1414;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
}

.tournament-item .item-content .item-footer .prices .original-price {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    text-decoration-line: line-through;
}

.tournament-item .item-content .item-footer .register-button {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    background: #7A1414;
    color: #FCF7EE;
    text-align: center;
    font-family: "UVN Chim Bien";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    text-transform: capitalize;
}
