/*-------------------------------------- Leyenda */
.album {
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    width: 100%;
    border: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    justify-content: left;
    align-content: flex-start;
    gap: 5px;
    background: #DEE;
}
.foto {
    cursor: pointer;
    box-sizing: border-box;
    text-decoration:none;
    color:#000;
    max-width: 270px;
  }
@media screen and (max-width: 768px) {
    .boxFotos {
        width: 100%;
    }
}
@media screen and (max-width: 430px) {
    .boxFotos {
        width: 100%;
    }
}
/*------------------------------------- Versus */
.versus {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 22px;
    text-align: center;
    color:#099;
    letter-spacing: 1px;
    word-spacing: 3px;
}
/*------------------------------------- Media */
.box {
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 1fr   600px       1fr;
    grid-template-areas: " .     boxMedia  .";
    justify-items: center;
    align-items: center;
}
.boxMedia {
    grid-area: boxMedia;
    width: 600px;
    height: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 5px   1fr       5px;
    grid-template-areas: " .     boxFotos  .";
    justify-items: center;
    align-items: center;
    background: #DEE;

}
.boxFotos {
    margin-top: 5px;
    margin-bottom: 5px;
    grid-area: boxFotos;
    width: 100%;
    height: 100%;
    background: #DEE;
}
@media screen and (max-width: 768px) {
    .box {
        grid-template-columns: 100%;
        grid-template-areas: " boxMedia";
    }
}
@media screen and (max-width: 430px) {
    .box {
        grid-template-columns: 100%;
        grid-template-areas: " boxMedia";
    }
    .boxMedia {
        width: 100%;
        height: 100%;
    }
}
/*------------------------------------- Video */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mensaje {
    width: 100%;
    display: grid;
    grid-template-columns: 10px   1fr      10px;
    grid-template-areas: " .      parrafo  .";
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 22px;
    
    padding: 10px;
}
.parrafo {
    grid-area: parrafo;
    margin:10px;
    padding-top: 20px;
}
/*------------------------------------------ Resumen Partido */
.tit_resumen{
    width: 100%;
    display:grid;
    justify-items: center;
    align-items: center;
    font-size: 18px;
    color:#099;
    letter-spacing: 5px;
    padding-bottom: 15px;
}
.box_evento {
    width: 100%;
    display:grid;
    grid-template-columns: 20px  10px  1fr         40px        10px;
    grid-template-areas: " orden .     comentario  logo_video  .";
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.orden {
    grid-area: orden;
    font-size: 26px;
    display:grid;
    justify-self: right;
}

.comentario {
    grid-area: comentario;
    letter-spacing: 1px;
    word-spacing: 3px;
    font-size: 22px;
    display:grid;
    justify-self: left;
}
.logo_video {
    grid-area: logo_video;
    display:grid;
    justify-self: right;
}