/*Portada*/


.blog-container-cover{
    width: 100%;
    height: 700px;
    position: relative;
    margin-top: 80px;
    background-image: url(../img/jesus.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-container-cover:before{
    content: '';
    width: 100%;
    height: 100%;
    background: #7EFFF9;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.container-info-cover{
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-info-cover h1{
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.container-info-cover p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

/*Contenedor de categorias*/

input[type="radio"]{
    display: none;
}

.container-category{
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.container-category label{
    padding: 6px 40px;
    margin: 10px;
    font-size: 20px;
    background: #e2e2e2;
    border-radius: 5px;
    cursor: pointer;
}

.container-category label:hover{
    opacity: 0.8;
}



/*Post - Publicaciones*/

.container-post{
    max-width: 1200px;
    margin: auto;
}

.posts{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;

    margin-top: 20px;
    padding: 20px;
}

.posts .post{
    background: #fff;
    box-shadow: 0 0 20px -20px black;
    border-radius: 6px;
    overflow: hidden;
    padding-bottom: 20px;
}

.post .ctn-img{
    width: 100%;
}

.post .ctn-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post h2{
    font-size: 18px;
    margin-top: 20px;
    padding: 0px 20px;
}

.post span{
    display: block;
    margin-top: 10px;
    padding: 0px 20px;
}

.ctn-tag{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin-left: 16px;
    margin-top: 10px;
}

.ctn-tag li{
    list-style: none;
    font-size: 14px;
    margin: 4px;
    padding: 6px 10px;
    background: #e8e8e8;
    cursor: default;
}


.post button{
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 50px;
    font-size: 16px;
    background: #7EFFF9;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.post button:hover{
    opacity: 0.9;
}


/*sistema de filtrado*/

[value="TODOS"]:checked ~ .posts .post[data-category]{
    display: block;
}

[value="Capítulo-1:-Introducción-y-vida-oculta-de-Jesús-y-María."]:checked ~ .posts .post:not([data-category~="Capítulo-1:-Introducción-y-vida-oculta-de-Jesús-y-María."]),
[value="CAPITULO-2:-PRIMER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]:checked ~ .posts .post:not([data-category~="CAPITULO-2:-PRIMER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]),
[value="Capítulo-3:-SEGUNDO-AÑO-DE-VIDA-PÚBLICA"]:checked ~ .posts .post:not([data-category~="Capítulo-3:-SEGUNDO-AÑO-DE-VIDA-PÚBLICA"]),
[value="Capítulo-4:-TERCER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]:checked ~ .posts .post:not([data-category~="Capítulo-4:-TERCER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]),
[value="Capítulo-5:-JESÚS-SE-PREPARA-A-SU-PASIÓN-Y-MUERTE"]:checked ~ .posts .post:not([data-category~="Capítulo-5:-JESÚS-SE-PREPARA-A-SU-PASIÓN-Y-MUERTE"]),
[value="Capítulo-6:-LA-PASIÓN-DEL-SEÑOR."]:checked ~ .posts .post:not([data-category~="Capítulo-6:-LA-PASIÓN-DEL-SEÑOR."]),
[value="Capítulo-7:-GLORIFICACIÓN-DE-JESÚS-Y-MARÍA"]:checked ~ .posts .post:not([data-category~="Capítulo-7:-GLORIFICACIÓN-DE-JESÚS-Y-MARÍA"]),
[value="El-pais-de-Jesus"]:checked ~ .posts .post:not([data-category~="El-pais-de-Jesus"]){    
    display: none;
}

[value="TODOS"]:checked ~ .container-category [for="TODOS"],
[value="Capítulo-1:-Introducción-y-vida-oculta-de-Jesús-y-María."]:checked ~ .container-category [for="Capítulo-1:-Introducción-y-vida-oculta-de-Jesús-y-María."],
[value="CAPITULO-2:-PRIMER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]:checked ~ .container-category [for="CAPITULO-2:-PRIMER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"],
[value="Capítulo-3:-SEGUNDO-AÑO-DE-VIDA-PÚBLICA"]:checked ~ .container-category [for="Capítulo-3:-SEGUNDO-AÑO-DE-VIDA-PÚBLICA"],
[value="Capítulo-4:-TERCER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"]:checked ~ .container-category [for="Capítulo-4:-TERCER-AÑO-DE-LA-VIDA-PÚBLICA-DE-JESÚS"],
[value="Capítulo-5:-JESÚS-SE-PREPARA-A-SU-PASIÓN-Y-MUERTE"]:checked ~ .container-category [for="Capítulo-5:-JESÚS-SE-PREPARA-A-SU-PASIÓN-Y-MUERTE"],
[value="Capítulo-6:-LA-PASIÓN-DEL-SEÑOR."]:checked ~ .container-category [for="Capítulo-6:-LA-PASIÓN-DEL-SEÑOR."],
[value="Capítulo-7:-GLORIFICACIÓN-DE-JESÚS-Y-MARÍA"]:checked ~ .container-category [for="Capítulo-7:-GLORIFICACIÓN-DE-JESÚS-Y-MARÍA"],
[value="El-pais-de-Jesus"]:checked ~ .container-category [for="El-pais-de-Jesus"]{       
    background: #7EFFF9;
    color: #fff;
}

@media screen and (max-width: 1200px){
    .posts{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px){
    .posts{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 580px){
    .posts{
        grid-template-columns: repeat(1, 1fr);
    }
}