/* --- BLOG CSS (Apenas Estilo Visual dos Artigos) --- */

/* GRID DOS ARTIGOS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #0f172a;
  line-height: 1.3;
}

.card-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-card .link-arrow {
  color: #d4af37 !important; /* Força a cor Dourada */
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  visibility: visible !important; /* Garante que não esteja oculto */
  opacity: 1 !important;
}

.article-card .link-arrow:hover {
  color: #0f172a !important; /* Fica Azul Escuro/Preto ao passar o mouse */
}

/* Garante que a setinha (ícone) tenha a mesma cor do texto */
.article-card .link-arrow i {
  color: inherit !important;
}

/* PÁGINA DE LEITURA (ARTIGO) */
.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.image-gallery-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.image-gallery-blog img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
}

@media (max-width: 768px) {
  .image-gallery-blog {
    grid-template-columns: 1fr;
  }
}
