/* ==================================================
   HOME – ESTRUTURA PRINCIPAL
================================================== */

.home-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==================================================
   CABEÇALHO DA HOME
================================================== */

.section-header {
  margin-bottom: 8px;
}

.section-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.section-header p {
  font-size: 15px;
  color: #555;
  margin-top: 4px;
}

/* ==================================================
   GRID EXCLUSIVO DA HOME
================================================== */

.home-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ==================================================
   CARDS – AJUSTES PARA HOME
================================================== */

.home-section .card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.home-section .card-body {
  padding: 14px;
}

.home-section .card-body h2 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
}

/* ==================================================
   META (EDITORIA)
================================================== */

.home-section .meta {
  font-size: 12px;
  font-weight: 600;
  color: #c62828;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ==================================================
   RESPONSIVO – HOME
================================================== */

@media (max-width: 1024px) {
  .home-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-section .grid {
    grid-template-columns: 1fr;
  }

  .section-header h1 {
    font-size: 22px;
  }
}