.alineaciones-probables {
    text-align: center;
    margin: 20px;
}

.partidos {
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; 
}
.partidos a, .partidos a:hover{
    text-decoration:none;
}
.partido .equipo {
    width: 50px;
    height: 50px;
}
.partido .equipo img {
    width: 100%;
    height: auto;
}
span.resultado-partido {
    font-weight: bold;
    font-size: 1.225rem;
}
.info-partido {
    text-align: center;
    margin: 0 10px;
}
.info-partido .dia {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff4b44;
	margin-bottom: -4px;
}
.info-partido .hora {
    font-size: 14px;
    font-weight: normal;
    color: #333;
}
.partido {
    display: flex;
	flex: 1 1 calc(20% - 10px);
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
	    padding: 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    border-top: 2px solid #ff4b44;
}

.partido:hover {
    border-top: 2px solid #000;
}

@media (max-width: 1000px) {
    .container a {
        flex: 1 1 calc(25% - 10px);
    }
}

@media (max-width: 800px) {
    .container a {
        flex: 1 1 calc(33.33% - 10px);
    }
}

@media (max-width: 600px) {
    .container a {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 400px) {
    .container a {
        flex: 1 1 calc(100% - 10px);
    }
}

.resultado {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4b44;
    letter-spacing: 2px;
}
.jornada {
    font-size: 10px;
    font-weight: bold;
}