.epica-filtros {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.epica-filtros button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 20px;
}

.epica-filtros button:hover {
    opacity: 0.6;
}


#epica-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


.epica-card {
    text-decoration: none;
    color: inherit;
}


.epica-img img {
    width:100%;
    height:450px;
    object-fit:cover;
}


.epica-card h3 {
    margin-top:15px;
    font-size:20px;
}


@media(max-width:768px){

#epica-grid{
grid-template-columns:repeat(1,1fr);
}

.epica-img img{
height:350px;
}

}