/* Diseño específico para la sección de noticias */
.noticias-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(200,16,46,0.08);
}
.noticias-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200,16,46,0.12);
}
.noticias-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noticias-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.noticias-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro-bomberos);
}
.noticias-meta {
  font-size: 0.95rem;
}
.noticias-resumen {
  font-size: 1rem;
  color: #333;
}
.noticias-leer-mas {
  margin-top: auto;
}
/* ==========================
   Noticias - Bomberos Tulcán
   ========================== */
.noticias-lista .card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(200,16,46,0.08);
}
.noticias-lista .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200,16,46,0.12);
}
.noticias-lista .card-img-top {
  height: 200px;
  object-fit: cover;
  background: #eee;
}
.noticias-lista .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro-bomberos);
}
.noticias-lista .card-subtitle {
  font-size: 0.95rem;
}
.noticias-lista .card-text {
  font-size: 1rem;
  color: #333;
}
.noticias-lista .card-body {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.noticias-lista .btn {
  margin-top: auto;
}
.btn-bomberos, .btn-outline-bomberos {
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.btn-bomberos {
  background: var(--rojo-bomberos);
  color: var(--blanco-bomberos);
  border: none;
}
.btn-bomberos:hover, .btn-bomberos:focus {
  background: #a00b23;
  color: var(--blanco-bomberos);
}
.btn-outline-bomberos {
  background: transparent;
  color: var(--rojo-bomberos);
  border: 2px solid var(--rojo-bomberos);
}
.btn-outline-bomberos.active, .btn-outline-bomberos:hover, .btn-outline-bomberos:focus {
  background: var(--rojo-bomberos);
  color: var(--blanco-bomberos);
}
