html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    overflow-x: hidden;
}


header, ul, li, div, a, img{ box-sizing: border-box; margin: 0; padding: 0; }
header { background: linear-gradient(#fff5 90%, #fff0); width: 100%; height: 150px; padding: 0 2%; box-sizing: border-box; position: fixed; z-index: 10; transition-duration: 2s; }
header.scrolled { background-color: #ddd; border-radius: 0 0 5rem 5rem; }
header nav { height: 100%; display: flex; align-items: center; }
header ul { list-style-type: none; width: 100%; margin: 0; padding: 0 16% 0 5%; display: flex; justify-content: space-between; text-transform: uppercase; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 1.5rem; font-weight: 600;}
header a { text-decoration: none; color: #000; transition-duration: 0.5s; }
header a:hover {color: #2229;}
header img { height: 8rem; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); transition-duration: 1s;}
header img:hover {transform: translate(-55%, -55%);}
.logooo {color: transparent}

noscript {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.ventana {display: flex; background-color: #ddd; flex-direction: column; border-radius: 10px; border: 10px solid red; align-items: center; text-align: center; padding: 2% 5%; max-width: 500px;}
.ventana h2 {margin: 5% 0 6% 0; font-size: 3rem;}
.ventana p {font-size: 1.3rem; margin: 10px;}


.titulo-noticias { width: 100%; height: 100vh; background-image: linear-gradient(#0000 70%, #000f), url(img/toro-equipo.jpeg); background-position: bottom ; background-repeat: no-repeat; background-size: cover; border-radius: 0px; text-align: center; text-transform: uppercase; font-family: "Titan One"; line-height: 180px; font-size: 4rem; letter-spacing: 0.1em; word-spacing: 0.6em; display: flex; flex-direction: column; justify-content: flex-end; align-self: flex-start; }

.titulo-noticias h1 { color: #ddd; width: 100%; margin: 0; transition-duration: 1s;}


.centro-pagina { background: linear-gradient(#000f , #06c); margin: 0; padding: 0; }

.cronicas { background: linear-gradient(#000f , #06c); border-radius: 0%; height: 100vh; display: flex; width: 100%; align-items: center; }






.news-container {
    max-width: 1300px;
    margin: auto; 
    padding: 40px 20px 40px 20px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* TARJETA */
.news-card {
    background-color: #ddd; 
    border-radius: 10px; 
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(1,1,1,1); 
    transition: 0.3s ease;
    display: flex; 
    flex-direction: column;
}
.news-card:hover { transform: scale(1.02); }

.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; flex-grow: 1; display: inline-flex; flex-direction: column; text-align: justify;}

.card-meta { font-size: 0.95rem; color: #666; margin-bottom: 10px; display: flex; justify-content: space-between; }
.card-tag { color: #06c; font-weight: bold; }

.card-title { font-size: 1.25rem; margin: 0 0 15px 0; color: #000; line-height: 1.4; }
.card-excerpt { font-size: 0.95rem; color: #666; margin-bottom: 20px; flex-grow: 1; }

.btn-leermas {
    display: block; 
    text-align: center; 
    background-color: #06c;
    color: white; 
    text-decoration: none; 
    padding: 10px; 
    border-radius: 5px; 
    font-weight: bold;
    transition: 0.2s;
    margin: 0 0 10px 0;
}
.btn-leermas:hover { background: #038; }

.btn-fotos {
    display: block; 
    text-align: center; 
    background-color: #06c;
    color: white; 
    text-decoration: none; 
    padding: 10px; 
    border-radius: 5px; 
    font-weight: bold;
    transition: 0.2s;
}

.btn-fotos:hover {
    background: #038;
}




footer {padding: 0; background-color: #ddd; height: auto; }
.pie ul { padding: 0; list-style-type: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
.pie ul li {margin-right: 20px;}
.pie ul li img { background-color: #fff; height: 100px; width: auto; margin: 10px; border: 2px solid #000; padding: 10px; border-radius: 5px; }
.diputacionli {flex-basis: 100%; order: -1; text-align: center; margin: 1rem 0 1.5rem 0;}
#diputacion {height: 180px;}
.copy {padding: 0.6rem; background-color: #038; font-size: 1.2rem; color: #ddd; text-align: justify; font-family: Arial, Helvetica, sans-serif;}


@media (max-width: 1240px) {
    header {height: 125px;}
    header ul {font-size: 1.2rem; padding: 0;}
    .masinformacion {margin-left: 40px; margin-right: 5vw;}
    header img {height: 6rem; padding: 0;}
    header.scrolled {border-radius: 0 0 2rem 2rem;}

    .titulo-noticias {line-height: normal; font-size: 3rem;}

    .centro-pagina {flex-direction: column;}
    .news-container {padding: 20px;}

    .pie ul li img {height: 50px; margin: 5px; padding: 5px;}
    #diputacion {height: 100px;}
}

@media (max-width: 767px) {
    header {height: 100px;}
    header ul {font-size: 1rem; padding: 0; display: flex; flex-wrap: wrap;}
    header img {height: 4rem; padding: 0;}
    header.scrolled {border-radius: 0 0 2rem 2rem;}
    .masinformacion { transform: translateY(-5.5vh); margin: 0; margin-left: 30vw; text-align: center;}
    .noticiasli, .calendarioli {flex: 1 0 100%;}
    .nadali, .masinformacion {flex: 1; box-sizing: border-box; display: flex;}
    .noticiasli {margin-top: 2.5rem; margin-bottom: 1rem; margin-left: 2vw;}

    .titulo-noticias {line-height: normal; font-size: 1.6rem;}
    .titulo-noticias h1 {margin-bottom: 2rem;}

    .centro-pagina {flex-direction: column;}

    .pie ul li img {height: 50px; margin: 5px; padding: 5px;}
    #diputacion {height: 100px;}
    .copy {font-size: 0.8rem;}
}

@media (max-width: 480px) {
    .noticiasli {margin-left: 4vw;}
}

@media (max-width:350px) {header ul {font-size: 0.8rem;}}

@media (max-width:350px) {.news-grid {height: 100%; place-items: center;} .news-card {width: 70vw; margin: 0 auto;}}

@media (max-width: 300px) {
    header ul {font-size: 0.6rem}
    .noticiasli {margin-top: 1.5rem; margin-bottom: 0.5rem; margin-left: 1.9vw;}
    .masinformacion {transform: translateY(-4vh);}
    .titulo-noticias {font-size: 1rem;}
    .news-card {width: 50vw;}
    .copy {font-size: 0.6rem;}
}


@media (max-width: 250px) {.titulo-index {font-size: 0.6rem;} #diputacion {height: 80px;}}