.tournament-package-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tournament-package-details {
    height: 100%;
}

.tournament-package-content {
    border-radius: 16px;
    background: var(--Background-Secondary, #FDFCFA);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
    padding: 24px;
}

@media (min-width: 768px) {
    .tournament-package-details-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .tournament-package-details-wrapper > *:first-child {
        flex: 1;
        order: 2;
    }
    
    .tournament-package-details-wrapper > *:last-child {
        flex: 2;
        order: 1;
    }
}

.tournament-package-details {
    display: flex;
    max-width: 1200px;
    padding: 24px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 24px;
    background: #FCF7EE;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.tournament-package-details .item-image {
    display: flex;
    width: 504px;
    height: 381px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    overflow: auto;
}

.tournament-package-details .item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

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

.tournament-package-details .item-content .item-title-and-description .item-title {
    color: #000;
    font-family: "UVN Chim Bien";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 44.8px */
}

.tournament-package-details .item-content .item-title-and-description .item-description {
    color: #545454;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.tournament-package-details .item-content .item-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tournament-package-details .item-content .item-times .item-title {
    color: #545454;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
}

.tournament-package-details .item-content .item-times .item-list li {
    color: #545454;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.tournament-package-details .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.tournament-package-details .item-footer .prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.tournament-package-details .item-footer .prices .original-price {
    color: #8F888A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-decoration-line: line-through;
}

.tournament-package-details .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;
}
