/* ═══════════════════════════════════════════════════════════════
   NOTICIAS.CSS — Bádminton Perú
   Sección noticias homepage: 1 grande + 4 pequeñas
   → En Angular: noticias.component.scss
   ═══════════════════════════════════════════════════════════════ */

/* ── Sección ──────────────────────────────────────────────────── */
.bp-noticias {
  background: var(--bp-red);
  padding: 48px 0 56px;
}

/* ── Layout 2 columnas ────────────────────────────────────────── */
.bp-noticias-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ══════════════════════════════
   CARD GRANDE (izquierda)
══════════════════════════════ */
.bp-noticia-grande {
  background: var(--bp-white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bp-noticia-grande-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bp-noticia-grande-img {
  flex: 1;
  min-height: 300px;
  overflow: hidden;
  background: var(--bp-gray-light);
}

.bp-noticia-grande-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bp-noticia-grande:hover .bp-noticia-grande-img img {
  transform: scale(1.03);
}

.bp-noticia-grande-body {
  padding: 20px 24px 24px;
}

.bp-noticia-grande-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--bp-black);
  line-height: 1.3;
  margin: 6px 0 8px;
}

/* ══════════════════════════════
   GRID 4 PEQUEÑAS (derecha)
══════════════════════════════ */
.bp-noticias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

/* ── Card pequeña ─────────────────────────────────────────────── */
.bp-noticia-small {
  background: var(--bp-white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bp-noticia-small-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bp-noticia-small-img {
  height: 140px;
  overflow: hidden;
  background: var(--bp-gray-light);
  flex-shrink: 0;
}

.bp-noticia-small-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bp-noticia-small:hover .bp-noticia-small-img img {
  transform: scale(1.03);
}

.bp-noticia-small-body {
  padding: 12px 14px 14px;
  flex: 1;
}

.bp-noticia-small-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--bp-black);
  line-height: 1.3;
  margin: 4px 0 6px;
}

/* ── Compartidos ──────────────────────────────────────────────── */
.bp-noticia-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}

.bp-noticia-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--bp-red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}

.bp-noticia-date {
  font-size: 11px;
  color: #999;
  display: block;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bp-noticias-inner {
    grid-template-columns: 1fr;
  }

  .bp-noticia-grande-img {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .bp-noticias-grid {
    grid-template-columns: 1fr;
  }
}