/* ─── CABEÇALHO DA PÁGINA ────────────────────────── */
.noticias-page-header {
  padding: 40px 5rem 5% 3rem;
  background: var(--branco);
  border-bottom: 1px solid #e8e8e8;
}

.noticias-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1.2rem;
}

.noticias-page-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.noticias-page-breadcrumb a:hover {
  color: var(--azul);
}

.noticias-page-breadcrumb span {
  color: #bbb;
}

.noticias-page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--azul);
  text-transform: uppercase;
  line-height: 1.1;
}

/* ─── GRID DE CARDS ──────────────────────────────── */
.noticias-page-container {
  padding: 4rem 5%;
  background: var(--branco);
}

.noticias-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ─── CARD ───────────────────────────────────────── */
.noticias-page-card {
  border-bottom: 2px solid var(--azul);
}

.noticias-page-card-inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.noticias-page-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.2rem;
}

.noticias-page-corpo {
  padding: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.noticias-page-data {
  font-size: 0.78rem;
  color: #888;
}

.noticias-page-corpo h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s;
}

.noticias-page-card:hover .noticias-page-corpo h3 {
  color: var(--vermelho-escuro);
}

.noticias-page-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.2s;
}

.noticias-page-link i {
  transition: transform 0.2s;
}

.noticias-page-card:hover .noticias-page-link {
  color: var(--vermelho-escuro);
}

.noticias-page-card:hover .noticias-page-link i {
  transform: translateX(4px);
}

/* ─── ESTADO VAZIO ───────────────────────────────── */
.noticias-page-vazia {
  text-align: center;
  padding: 4rem 0;
  color: #999;
}

.noticias-page-vazia i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ─── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 900px) {
  .noticias-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .noticias-page-grid { grid-template-columns: 1fr; }
  .noticias-page-header { padding: 4rem 5% 2rem; }
}

/* ─── LISTA VERTICAL DE NOTÍCIAS ─────────────────── */
.noticias-page-lista {
  display: flex;
  flex-direction: column;
}

.noticias-page-item {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid #e0e0e0;
}

.noticias-page-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.noticias-page-item-texto {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.noticias-page-item-texto .noticias-page-data {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vermelho-escuro);
}

.noticias-page-item-texto h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--azul);
  line-height: 1.35;
  margin: 0;
}

.noticias-page-item-texto p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.noticias-page-item-texto .noticias-page-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--azul);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: inline;
  margin-top: 0.25rem;
}

.noticias-page-item-texto .noticias-page-link:hover {
  color: var(--vermelho-escuro);
}

.noticias-page-item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .noticias-page-item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .noticias-page-item-img {
    order: -1;
  }
}