/* ================================================
CORREÇÕES DE DESIGN E LAYOUT - FASE 3
Manus - Gestor Master de TI
Data: 02 de Abril de 2026
================================================ */

/* ========== HERO SECTION - REDESIGN ========== */
.sc_blogger_item_default_over_bottom_center {
  max-height: 400px !important;
  overflow: hidden !important;
}

.sc_blogger_item_default_over_bottom_center .sc_blogger_item_image {
  height: 350px !important;
  object-fit: cover !important;
}

/* ========== GRID DE POSTS - REALINHAMENTO ========== */
@media (min-width: 1025px) {
  .sc_blogger {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
  }
  
  .sc_blogger_item {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .sc_blogger {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 767px) {
  .sc_blogger {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ========== EXPANDIR CONTEÚDO HORIZONTALMENTE ========== */
.wp-block-kadence-column {
  max-width: 100% !important;
}

.wp-block-kadence-row {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* ========== TIPOGRAFIA PADRONIZADA ========== */
h1 {
  font-size: 48px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

h2 {
  font-size: 32px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

h4 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

body, p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* ========== CONTRASTE DE CORES - WCAG AA ========== */
a {
  color: #d32f2f !important;
}

a:hover {
  color: #b71c1c !important;
}

.post_title, .entry-title {
  color: #212121 !important;
}

/* ========== FIM DAS CORREÇÕES ========== */
