/* =============================================
   VIP Feno — Blog CSS
   Post em destaque, grid, paginação, estado vazio
   (.vf-page-hero está em produtos.css)
   (.vf-blog-card está em home.css)
   ============================================= */

/* === Post em Destaque === */
.vf-blog__featured {
  max-width: 1100px;
  margin: 56px auto;
  padding: 0 24px;
}
.vf-blog__featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--vf-radius);
  overflow: hidden;
  box-shadow: var(--vf-shadow);
}
.vf-blog__featured-img { overflow: hidden; }
.vf-blog__feat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
  transition: transform 0.4s ease;
}
.vf-blog__featured-img:hover .vf-blog__feat-img { transform: scale(1.03); }
.vf-blog__no-thumb {
  width: 100%; height: 100%;
  min-height: 300px;
  background: var(--vf-green);
}
.vf-blog__featured-content {
  background: var(--vf-chalk);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.vf-blog__date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vf-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vf-blog__feat-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--vf-green);
  line-height: 1.3;
}
.vf-blog__feat-title a { color: inherit; }
.vf-blog__feat-title a:hover { color: var(--vf-lime); }
.vf-blog__feat-excerpt {
  font-size: 0.95rem;
  color: var(--vf-muted);
  line-height: 1.65;
}

/* === Lista horizontal dos posts restantes === */
.vf-blog__list {
  background: var(--vf-green-light);
  padding: 32px 24px 56px;
}
.vf-blog__list-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vf-blog-item {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  padding: 24px 28px;
  background: var(--vf-chalk);
  border-radius: 12px;
  transition: box-shadow var(--vf-transition), transform var(--vf-transition);
}
.vf-blog-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Conteúdo (esquerda) */
.vf-blog-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vf-blog-item__date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vf-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vf-blog-item__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--vf-green);
  line-height: 1.35;
  margin: 0;
}
.vf-blog-item__title a { color: inherit; }
.vf-blog-item__title a:hover { color: var(--vf-lime); }
.vf-blog-item__excerpt {
  font-size: 0.9rem;
  color: var(--vf-muted);
  line-height: 1.65;
  margin: 0;
}
.vf-blog-item__btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vf-green);
  border: 1.5px solid var(--vf-green);
  border-radius: var(--vf-radius);
  transition: background var(--vf-transition), color var(--vf-transition);
}
.vf-blog-item__btn:hover {
  background: var(--vf-green);
  color: var(--vf-white);
}

/* Imagem (direita) */
.vf-blog-item__img-wrap {
  width: 260px;
  height: 170px;
  border-radius: var(--vf-radius);
  overflow: hidden;
  flex-shrink: 0;
}
.vf-blog-item__img-wrap a { display: block; width: 100%; height: 100%; }
.vf-blog-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vf-blog-item:hover .vf-blog-item__img { transform: scale(1.04); }
.vf-blog-item__no-thumb {
  width: 100%;
  height: 100%;
  background: var(--vf-green);
  border-radius: var(--vf-radius);
}

/* Responsivo */
@media (max-width: 767px) {
  .vf-blog-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vf-blog-item__img-wrap {
    width: 100%;
    height: 200px;
    order: -1;
  }
}

/* === Paginação === */
.vf-blog__pagination { text-align: center; padding: 0 24px 64px; }
.vf-blog__pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: var(--vf-radius);
  background: var(--vf-chalk);
  color: var(--vf-text);
  font-size: 0.9rem;
  transition: background var(--vf-transition), color var(--vf-transition);
}
.vf-blog__pagination .page-numbers.current,
.vf-blog__pagination .page-numbers:hover {
  background: var(--vf-green);
  color: var(--vf-white);
}

/* === Estado vazio === */
.vf-blog__empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--vf-muted);
  font-size: 1rem;
}

/* === Responsividade === */
@media (max-width: 1024px) {
  .vf-blog__featured-inner { grid-template-columns: 1fr; }
  .vf-blog__feat-img        { min-height: 240px; }
  .vf-blog__featured-content { padding: 28px 24px; }
}
@media (max-width: 767px) {
  .vf-blog__featured { margin: 32px auto; }
  .vf-blog__grid      { margin-bottom: 40px; }
}
