.tournament-header {
    /* margin-bottom: 40px; */
    margin-bottom: 25px;
}

.tournament-header .breadcrumbs {
    margin-bottom: 0;
}

.tournament-header__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    /* margin-bottom: 10px; */
    /* margin-top: 40px; */
}

.tournament-header .page-heading{
    margin: 0;
}


.tournament-header__info .sub-heading {
    font-size: 40px;
    /*white-space: nowrap;*/
    text-align: center;
}

.tournament-header__title {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tournament-header__request-text {
    font-size: 14px;
    color: #269a29;
    white-space: nowrap;
}

.tournament-header__preview-text {
    font-size: 20px;
    color: #888888;
    margin-bottom: 40px;
    line-height: 115%;
}


.tournament__winner {
    display: flex;
    align-items: center;
    /* gap:  */
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    /* line-height: 148%; */
    line-height: 129%;

    vertical-align: middle;
}

.tournament__winner-img {
    margin-right: 8px;
}

.tournament__winner-content{
    /* height: fit-content; */
}

.tournament__winner-title {
    /* margin-bottom: 10px; */
    color: #888888;
    font-size: 16px;
}

.tournament__button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.tournament-docs {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(225px, 1fr) );
    text-align: center;
    grid-gap: 20px;
}

.tournament-docs__item {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 20px;
    color: #333333;
    text-decoration: none;
}

.participant-row-double {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.tournament-section .sub-heading{
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 24px;
}


.tournament-summary{
    margin: 60px 0;
}

.tournament-summary__attributes{
    display: table;
    margin-bottom: 12px;
}

.tournament-summary__attribute{
    display: table-row;
}

.tournament-summary__attribute{
    display: table-row;
    line-height: 148%;
    
}
.tournament-summary__attribute div{
    display: table-cell;
    border-bottom: 4px solid transparent;
}
.tournament-summary__attribute div:first-child{
    border-right: 60px solid transparent;
}
.tournament-summary__description{
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    line-height: 148%;
}

.tournament-request-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.tournament-section-participants{
    margin-bottom: 120px;
}

.participants-table .js-toggleable-text__button{
    display: block;
}

.participants-table__buttons{
    display: flex;
    align-items: center;
    justify-content: center;
}

.participants-table .js-toggleable-text__text{
    display: none;
}
.participants-table.is--toggled .js-toggleable-text__text{
    display: table-row;
}

.tournament-summary__status-label{
    /* color: #096724; */
}

@media (max-width: 850px) {
    .tournament__winner {
        margin-top: 0;
        /* margin-bottom: 40px; */
    }

    .tournament-header__info {
        /* flex-direction: column; */
    }

    .tournament-summary{
        margin: 40px 0;
    }
}

@media (max-width: 520px) {
    .tournament-header__info {
        flex-direction: column;
        align-items: flex-start;
    }
    .tournament-header__info .sub-heading {
        font-size: 25px;
    }

    .tournament__winner {
        /* font-size: 16px; */
        /* margin-bottom: 20px; */
    }

    .tournament-header__preview-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}