/* ======================================
   HOME — BASE
====================================== */
.home-page {
  background: transparent;
  width: 100%;
  max-width: 1200px;
}

/* ======================================
   HOME — HERO
====================================== */

.home-hero {
  padding: 16px 0 0;
}

.home-hero-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 2.65fr) minmax(0, 1fr);
  gap: 12px;
  padding: 0 12px;
  box-sizing: border-box;
}

.hero-main,
.hero-side {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #ddd;
}

.hero-main {
  min-height: 462px;
}

.hero-side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 462px;
}

.hero-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a2e7a, #051740);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .90) 0%,
    rgba(0, 0, 0, .38) 42%,
    rgba(0, 0, 0, 0) 76%
  );
}

.hero-overlay.small {
  padding: 12px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .84) 0%,
    rgba(0, 0, 0, .44) 48%,
    rgba(0, 0, 0, 0) 82%
  );
}

.hero-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--editorial-color, #0f766e);
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px 3px;
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-main h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -.2px;
  text-transform: uppercase;
  font-weight: 700 !important;
  max-width: 92%;
}

.hero-side h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hero .hero-overlay,
.home-hero .hero-overlay * {
  text-transform: uppercase;
  font-weight: 600;
}



COLUNA DIREITA — VOCÊ VIU ISSO?
====================================== */
.side-title {
  margin: -53px 0 26px;
  font-size: 24px;
  line-height: 1.1;
  color: #111;
  font-weight: 600;
}

.side-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
  height: 150px;
  min-height: 150px;
}

.side-card-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.side-card-image {
  position: absolute;
  inset: 0;
}

.side-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.42) 48%,
    rgba(0,0,0,0) 82%
  );
}

.side-card .hero-tag {
  margin-bottom: 6px;
}

.side-card h3 {
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ======================================
   RESPONSIVO
====================================== */
@media (max-width: 1100px) {
.news-row-thumb {
    height: 145px;
  }
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: 250px;
  }

  .hero-side-stack {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .hero-side {
    min-height: 190px;
  }

  .home-below-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-right-col {
    border-left: 0;
    padding-left: 0;
  }

  .side-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .side-card {
    min-height: 180px;
    height: 180px;
  }
}

@media (max-width: 640px) {
 
 .home-right-col {
  border-left: 0;
}

  .home-hero,
  .home-below {
    padding-left: 0;
    padding-right: 0;
  }

  .home-hero-grid,
  .home-below-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-main h2 {
    font-size: 20px;
    max-width: 100%;
  }

  .hero-side h3,
  .side-card h3 {
    font-size: 12px;
  }
.news-row-thumb {
    height: 190px;
  }
.side-title {
    font-size: 18px;
  }

  .side-cards {
    grid-template-columns: 1fr;
  }

  .side-card {
    height: 190px;
    min-height: 190px;
  }
}

/* =============================
   AJUSTE COLUNA DIREITA
============================= */
.home-right-col {
  margin-top: 61px;
}
