.mdv-match-card {
    display: block;
    width: 100%;
    max-width: 900px;

    margin: 0 auto 40px auto;

    background: #f5f5f5;

    border-radius: 28px;

    padding: 40px;

    text-decoration: none;

    color: #111;

    transition: all 0.25s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);
}

.mdv-match-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(0,0,0,0.08);
}

.mdv-card-content {
    display: flex;

    flex-direction: column;

    gap: 30px;
}

.mdv-match-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    align-self: flex-start;

    padding: 10px 18px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #fff;

    background: #2563eb;
}

.mdv-match-status--live {
    background: #dc2626;
}

.mdv-match-status--finished {
    background: #111827;
}

.mdv-match-teams {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 80px;

    width: 100%;
}

.mdv-match-team {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex: 1;

    text-align: center;
}

.mdv-match-team img {
    width: 110px;

    height: 110px;

    object-fit: contain;
}

.mdv-match-team span {
    font-size: 32px;

    font-weight: 700;

    line-height: 1.2;

    color: #111;
}

.mdv-match-score {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 140px;

    font-size: 64px;

    font-weight: 900;

    line-height: 1;

    color: #111;
}

.mdv-match-meta {
    text-align: center;

    font-size: 18px;

    font-weight: 500;

    color: #6b7280;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .mdv-match-card {
        padding: 30px 20px;
    }

    .mdv-match-teams {
        flex-direction: column;

        gap: 40px;
    }

    .mdv-match-score {
        font-size: 42px;
    }

    .mdv-match-team span {
        font-size: 24px;
    }

    .mdv-match-team img {
        width: 90px;

        height: 90px;
    }
}
.mdv-match-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}

.mdv-match-league {
    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    color: #6b7280;
}

.mdv-match-date,
.mdv-match-time,
.mdv-match-stadium,
.mdv-matchday {
    font-size: 15px;

    line-height: 1.6;
}

.mdv-match-stadium {
    color: #6b7280;
}

.mdv-match-card {
    border: 1px solid #e5e7eb;
}