.breadcrumb {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/sport/banner-bg.webp');
    background-size: cover;
}

.tournament-desc {
    margin-top: 10px;
}
.tournament-desc table{
    border: 5px red;
}

.tournament-name {
    font-size: var(--title);
    font-weight: bold;
    margin: var(--m-8) 0;
}

.tournament-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.tournament-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.tournament-desc {
    /* margin: var(--m-16) 0; */
    display: grid;
    grid-gap: 12px;
}

.previous-winner {
    margin-top: var(--m-24);
}

.winner-team {
    margin: var(--m-16) 0;
    display: grid;
    grid-gap: var(--m-24);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.team-card {
    background-color: #fff;
    border-radius: var(--m-4);
    overflow: hidden;
}

.team-img {
    height: 200px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; 
}

.team-info {
    padding: var(--m-8) var(--m-8);
}

.team-info {
    font-size: var(--sub-text);
}

.tournament-gallery {
    margin: var(--m-24) 0;
}
 
.photos {
    margin: var(--m-16) 0;
    display: grid;
    grid-gap: var(--m-24);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.photos img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--m-4);
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more .btn {
    margin-top: var(--m-24);
}

.ground-facilities {
    margin-top: var(--m-24);
}

.ground-facilities h3 {
    margin-bottom: var(--m-8);
}

.ground-facilities li{
    list-style-type: square;
    margin-left: var(--m-50)
}