/* ===== Blog – archívum és egyedi poszt (namespace: .lk-blog-*) ===== */

.lk-blog-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.lk-blog-archive__title {
  text-align: center;
  margin-bottom: 40px;
}

.lk-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.lk-blog-card {
  background: linear-gradient(135deg, #f0f0f0, #e2d9ff);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lk-blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lk-blog-card__image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.lk-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lk-blog-card__content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lk-blog-card__title {
  font-size: 20px;
  margin: 0 0 10px;
}

.lk-blog-card__title a {
  color: #2a1f3d;
  text-decoration: none;
}

.lk-blog-card__title a:hover {
  color: #8f7cf7;
}

.lk-blog-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.lk-blog-card__link {
  align-self: flex-start;
  font-weight: bold;
  color: #6a11cb;
  text-decoration: none;
}

.lk-blog-card__link:hover {
  text-decoration: underline;
}

/* Egyedi poszt */

.lk-blog-single__hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.lk-blog-single__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.lk-blog-single__title {
  text-align: center;
  margin-bottom: 8px;
}

.lk-blog-single__meta {
  text-align: center;
  color: #6e6e6e;
  font-size: 14px;
  margin-bottom: 30px;
}

.lk-blog-single__content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 1.8;
}

.lk-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

.lk-blog-single__content p {
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  .lk-blog-grid {
    grid-template-columns: 1fr;
  }
  .lk-blog-single__content {
    padding: 20px;
    font-size: 16px;
  }
}