/* ==========================================================================
   Media Hacks — Páginas internas (notícias, listagens)
   Entrada leve: filtros compactos, anúncio sem blocos
   ========================================================================== */

.mh-list-page {
  padding: 1.25rem 0 0;
}

.mh-list-page__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .mh-list-page__inner { padding: 0 2rem; }
}

.mh-list-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mh-list-page__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0;
  line-height: 1.15;
}

.mh-list-page__dek {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0.35rem 0 0;
  max-width: 32rem;
  line-height: 1.45;
}

.mh-list-page__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  color: #9ca3af;
  white-space: nowrap;
}

.mh-list-page__meta svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
}

/* Filtros compactos */
.mh-list-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding-bottom: 0.15rem;
}

.mh-list-filters__label {
  font-family: 'Sora', sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-right: 0.15rem;
}

.mh-list-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}

.mh-list-chip__count {
  margin-left: 0.3rem;
  font-size: 0.5625rem;
  font-weight: 700;
  opacity: 0.55;
}

.mh-list-chip--active {
  background: #059669;
  color: #fff;
}

.mh-list-chip--idle {
  background: transparent;
  color: #6b7280;
  border-color: rgba(0, 0, 0, 0.08);
}

.mh-list-chip--idle:hover {
  color: #059669;
  border-color: rgba(5, 150, 105, 0.35);
}

.mh-list-active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.mh-list-active__label {
  font-size: 0.625rem;
  color: #9ca3af;
}

.mh-list-active__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: #ecfdf5;
  color: #059669;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mh-list-active__pill:hover {
  background: #fef2f2;
  color: #dc2626;
}

.mh-list-active__pill svg {
  width: 0.65rem;
  height: 0.65rem;
}

/* Anúncio — fluxo contínuo, sem bloco */
.mh-list-ad {
  padding: 1rem 0 1.25rem;
}

.ad-slot--flow {
  background: transparent;
  border: none;
  border-radius: 0;
  color: #d1d5db;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
}

/* Grid notícias */
.mh-list-grid-section {
  padding: 1.25rem 0 1.5rem;
  background: #fafafa;
}

.mh-list-grid-section__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .mh-list-grid-section__inner { padding: 0 2rem; }
}

.mh-list-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.mh-list-grid-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.mh-list-grid-head span {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.mh-news-card img {
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.mh-news-card:hover img {
  transform: scale(1.03);
}

.mh-list-feature {
  padding: 1.25rem 0;
  background: #fff;
}

.mh-list-feature__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .mh-list-feature__inner { padding: 0 2rem; }
}

.mh-list-feature__media {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.mh-list-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.mh-list-feature:hover .mh-list-feature__media img {
  transform: scale(1.02);
}

.mh-list-bottom-ad {
  padding: 1.5rem 0 2rem;
  text-align: center;
}

.mh-list-bottom-ad .ad-slot--flow {
  margin: 0 auto;
}

/* Leituras — tema claro com acento roxo */
.mh-list-page--leitura {
  background: #fff;
}

.mh-list-page--leitura .mh-list-page__kicker {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9333ea;
  margin-bottom: 0.5rem;
}

.mh-list-page--leitura .mh-list-chip--active {
  background: #9333ea;
  color: #fff;
}

.mh-list-page--leitura .mh-list-chip--idle:hover {
  color: #9333ea;
  border-color: rgba(147, 51, 234, 0.35);
}

.mh-list-page--leitura .mh-list-active__pill {
  background: #faf5ff;
  color: #9333ea;
}

.mh-list-page--leitura .mh-list-active__pill:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* Cards de leitura — hovers roxos */
.mh-list-feature--leitura:hover h2,
.mh-list-feature--leitura:hover h3,
.mh-leitura-card:hover h2,
.mh-leitura-card:hover h3 {
  color: #9333ea;
}

.mh-leitura-card:hover {
  border-color: rgba(147, 51, 234, 0.3);
}

.mh-leitura-pagination__active {
  background: #9333ea;
  color: #fff;
}

.mh-leitura-link {
  color: #9333ea;
  transition: color 0.15s;
}

.mh-leitura-link:hover {
  color: #7e22ce;
}
