/* RESET Y BOX SIZING UNIVERSAL */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
}

/* IDENTIFICACION DE WEB */
.contenedor_principal {
  background: linear-gradient(to left, transparent, rgba(8, 7, 7, 0.973));
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 50px;
  border: 1px solid black;
}

h1 {
  padding-top: 20px;
  font-size: 50px;
  color: rgb(149, 149, 211);
  text-shadow: 4px 2px 10px white;
  animation-duration: 3s;
  animation-name: slidein;
  -webkit-text-stroke: 1px white;
}

iframe {
  width: 60%;
  margin: 0px;
}

.escuchar_radio {
  font-size: 15px;
  margin-right: -50px;
  font-family: 'Times New Roman', Times, serif;
  padding-top: 8px;
  color: #eee;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

/* MENU DE NAVEGACION */
nav {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-content: center;
}

nav li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #555;
}

/* SECCION CONTENEDOR NOTICIAS */
.contenedor_noticias {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.contenedor_tablas,
.contenedor_noticias_cuerpo,
.editoriales {
  padding: 10px;
}

.contenedor_tablas {
  flex: 0 0 30%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contenedor_tablas h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

.contenedor_noticias_cuerpo {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editoriales {
  flex: 0 0 18%;
  background-color: #f8f8f8;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px 20px 20px;
  max-height: 100%;
  overflow: auto;
}

.editoriales h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.editoriales h3.titulo_editorial {
  text-align: center;
  font-size: 20px;
  color: #222;
  margin: 5px 0 10px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.publicidad {
  background-color: #eee;
  border: 1px dashed #bbb;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 15px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
}

/* NOTICIA PRINCIPAL */
.noticia_caja_1 {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: #ddd;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}

.noticia_caja_1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  display: block;
}

.noticia_caja_1 h4,
.noticia_caja_1 h3 {
  position: absolute;
  color: white;
  margin: 0;
  padding: 0 10px;
  text-shadow: 1px 1px 3px black;
}

.noticia_caja_1 h4 {
  top: 10px;
  left: 10px;
  font-size: 1rem;
}

.noticia_caja_1 h3 {
  bottom: 70px;
  left: 10px;
  font-size: 3.5rem;
}

.noticia_caja_1 p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  max-height: 5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* NOTICIAS SECUNDARIAS */
.noticia_caja_contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.noticia_caja {
  position: relative;
  width: calc(50% - 5px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.noticia_caja img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.noticia_caja h4 {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 2;
  margin: 0;
}

.noticia_caja h3 {
  color: black;
  text-decoration: none;
  margin-top: 5px;
}

.noticia_caja h3 a,
.noticia_caja h3 a:hover {
  color: black;
  text-decoration: none;
}

.noticia_caja_contenido p,
.noticia_caja p {
  font-size: 15px;
  color: #333;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  height: 4.2em;
}

/* FOOTER */
.footer {
  background-color: #edf7f0;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  font-family: 'Segoe UI', sans-serif;
}

.footer p {
  margin: 5px 0;
}

/* NOTICIA COMPLETA */
.admin_noticias {
  min-height: 100vh;
  background: linear-gradient(to left, transparent, rgba(8, 7, 7, 0.973));
  padding: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.contenedor_noticias_completa {
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 10px;
}

.noticia_completa {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.categoria_noticia {
  font-size: 1rem;
  color: white;
  text-shadow: 1px 1px 3px black;
  margin: 0 0 10px 0;
}

.titulo_noticia {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 3px black;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.noticia_completa img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.copete_noticia {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.cuerpo_noticia {
  font-size: 1rem;
  color: white;
  line-height: 1.7;
  text-align: justify;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .contenedor_noticias {
      flex-direction: column;
  }
  .contenedor_tablas,
  .contenedor_noticias_cuerpo,
  .editoriales {
      flex: 1 1 100%;
      width: 100%;
  }
  .noticia_caja {
      width: 100%;
  }
  .contenedor_noticias_completa {
      width: 95%;
  }
  .titulo_noticia {
      font-size: 1.5rem;
  }
}

@media screen and (max-width: 400px) {
  .contenedor_principal h1 {
      font-size: 30px;
  }
  .escuchar_radio {
      font-size: 9px;
  }
  nav ul {
      flex-direction: column;
      gap: 5px;
  }
  .titulo_noticia {
      font-size: 1.3rem;
  }
  .noticia_caja {
      width: 100%;
  }
}

.leer_mas {
  color: blue;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
}

.leer_mas:hover {
  text-decoration: underline;
}

.noticia_caja p {
  margin: 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

.noticia_caja p a {
  color: blue;
  text-decoration: none;
}

.noticia_caja p a:hover {
  text-decoration: underline;
}

.leer_mas_inline {
  color: blue;
  font-weight: bold;
  margin-left: 5px;
  font-size: 0.9rem;
  text-decoration: none;
}

.leer_mas_inline:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .contenedor_principal {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(to bottom, rgba(8, 7, 7, 0.95), transparent);
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
  }

  .contenedor_principal h1 {
    font-size: 28px;
    text-align: center;
    color: rgb(149, 149, 211);
    text-shadow: 2px 1px 5px white;
    -webkit-text-stroke: 1px white;
  }

  .contenedor_principal .escuchar_radio {
    font-size: 16px;
    text-align: center;
    writing-mode: horizontal-tb;
    transform: none;
    color: #eee;
    text-shadow: 1px 1px 3px black;
    margin: 0;
    padding: 0;
  }

  .contenedor_principal iframe {
    width: 100% !important;
    height: 100px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
}



