.tournament-container {
    width: 100%;
    display: flex;
    padding: 15px;
}

.tournament-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    
}

.tournament-wrapper-info {
    width: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.tournament-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 15px;
}

.tournament-header h1{
    color: var(--light);
    text-align: center;
    letter-spacing: 1.5px;
}

.postponed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}

.postponed img {
    width: 85%;
}

.tournament-placeholder-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tournament-placeholder {
    width: 230px;
    padding: 0 10px;
    border: 3px solid var(--main);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.tournament-placeholder:hover{
    border: 3px solid var(--light);
}

.placeholder-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--main);
    margin-bottom: 10px;
    text-align: center;
    margin-top: 10px;
}

.placeholder-title {
    font-weight: 600;
}

.placeholder-tournament {
    font-size: 16px;
    font-weight: 400;
}

.text_accent {
    color: var(--accent);
}

.placeholder-heading h3 {
    color: var(--light);
}

.placeholder-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image img{
    width: 50%;
    height: 100%;
}

.placeholder-click {
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 200;
    font-size: 15px;
    text-align: center;
}