/* ============================================================
   DIVOKÉ SLOVENSKO – Štýly pre blog (blog.css)
   ============================================================ */

/* ── FEATURED ARTICLE ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: 0 8px 36px rgba(26,58,42,0.1);
}

.bf-img {
  min-height: 380px;
  overflow: hidden;
}

.bf-img img,
.bf-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-featured:hover .bf-img img { transform: scale(1.03); }

.bf-body {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-meta-line {
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.cat-tag {
  background: rgba(74,140,92,0.1);
  color: var(--forest-mid);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
}

.bf-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.25;
}

.bf-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

/* ── BLOG LIST ── */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26,58,42,0.1);
}

.bi-img {
  height: 190px;
  overflow: hidden;
}

.bi-img img,
.bi-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-item:hover .bi-img img { transform: scale(1.05); }

.bi-body {
  padding: 20px 18px 22px;
}

.bi-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bi-body h3 a { transition: color 0.2s; }
.bi-body h3 a:hover { color: var(--forest-light); }

.bi-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 14px;
}

.blog-link {
  font-size: 13px;
  color: var(--forest-light);
  font-weight: 500;
  transition: color 0.2s;
}

.blog-link:hover { color: var(--forest); }

.blog-item.hidden { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-img { min-height: 260px; }
}

@media (max-width: 768px) {
  .blog-list { grid-template-columns: 1fr; }
}
