.matches-hero__title {
    text-align: center;
    font-size: 60px;
}

.matches-hero__text {
    text-align: center;
    margin-top: 20px;
}

.matches-hero__meta {
    margin-top: 60px;
}

.matches-list__title {
    text-align: center;
    margin-top: 90px;
}

.match-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(103, 8, 29, 0.85);
    border: 1px solid #ddd;
    padding: 2rem;
    color: #fff;
}

.match-card__competition {
    text-align: left;
    font-size: 45px;
}

.match-card::before,
.match-card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.45) saturate(0.9);
    z-index: 1;
}

.match-card::before {
    left: 0;
    background-image: var(--match-home-logo);
}

.match-card::after {
    right: 0;
    background-image: var(--match-away-logo);
}

.match-card > * {
    position: relative;
    z-index: 2;
}

.btn-more {
    background-color: #67081d;
    color: #ddd;
    padding: 10px;
    border-radius: 25px;
}

.match-card__date {
    text-align: right;
}

.match-card__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0.35rem;
}

.match-card__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.col-12 {
    margin-bottom: 20px;
}

.match-card__location {
    padding: 20px;
}

.match-card__score {
    display: flex;
    font-size: 40px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}
