/* BVV-Tabelle ausblenden */
.vcmc-spielplan table{
    display:none;
}

/* Kartenliste */

.vcmc-match-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin:25px 0;
}

/* Karte */

.vcmc-match{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fff;

    border-radius:14px;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.25s;

}

.vcmc-match:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 22px rgba(0,0,0,.12);

}

/* Heim */

.vcmc-match.home{

    border-left:6px solid #2e7d32;

}

/* Auswärts */

.vcmc-match.away{

    border-left:6px solid #999;

}

/* Datumsblock */

.vcmc-datebox{

    width:95px;

    padding:18px;

    text-align:center;

    background:#f5f7fa;

}

.vcmc-weekday{

    font-size:14px;

    font-weight:700;

    color:#777;

    text-transform:uppercase;

}

.vcmc-day{

    font-size:42px;

    line-height:1;

    font-weight:800;

    color:#005baa;

}

.vcmc-month{

    margin-top:4px;

    font-size:13px;

    color:#777;

    text-transform:uppercase;

}

/* Inhalt */

.vcmc-content{

    flex:1;

    padding:18px 0;

}

.vcmc-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}

.vcmc-badge{

    display:inline-block;

    padding:5px 12px;

    border-radius:25px;

    font-size:12px;

    font-weight:bold;

}

.vcmc-badge.home{

    background:#dff6dd;

    color:#2e7d32;

}

.vcmc-badge.away{

    background:#ececec;

    color:#666;

}

.vcmc-time{

    color:#777;

    font-size:15px;

}

.vcmc-team{

    font-size:22px;

    font-weight:700;

}

.vcmc-versus{

    display:flex;

    align-items:center;

    gap:12px;

    color:#999;

    margin:14px 0;

    font-size:14px;

    text-transform:uppercase;

}

.vcmc-versus span{

    flex:1;

    height:1px;

    background:#ddd;

}

/* Ergebnis */

.vcmc-score{

    width:120px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.vcmc-result{

    font-size:28px;

    font-weight:800;

}

.vcmc-result.win{

    color:#2e7d32;

}

.vcmc-result.lose{

    color:#d32f2f;

}

/* Handy */

@media(max-width:768px){

    .vcmc-match{

        flex-direction:column;

        text-align:center;

    }

    .vcmc-datebox{

        width:100%;

    }

    .vcmc-score{

        width:100%;

        padding-top:0;

    }

    .vcmc-top{

        flex-direction:column;

        gap:10px;

    }

}

.vcmc-clock{
    margin-top:12px;
    font-size:15px;
    font-weight:600;
    color:#005baa;
}

.vcmc-divider{
    height:1px;
    background:#e6e6e6;
    margin:16px 0;
}