/* ==========================================
   Project: The Best Fetish Links
   File: blog.css
   Version: 3.0.6
   ========================================== */

/* === Blog Page Styles === */

.blog-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  align-items: stretch;
}

/* Карточки блога */
.blog-post {
  background-color: #1b1b1b;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  overflow: hidden;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* === Фиксированная высота изображения === */
.blog-thumb {
  width: 100%;
  height: 288px; /* 60% от высоты карточки (480px) */
  object-fit: cover; /* сохраняет пропорции и заполняет весь блок */
  display: block;
  border-bottom: 2px solid #222;
}

/* Контент карточки */
.blog-post h2 {
  color: #ff1a1a;
  font-size: 20px;
  margin: 12px 15px 8px;
  line-height: 1.3;
}

.blog-excerpt {
  flex-grow: 1;
  padding: 0 15px;
  color: #ddd;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: left;
}

.read-more {
  display: inline-block;
  margin: 10px 15px 15px;
  color: #ff3333;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
  align-self: flex-start;
}

.read-more:hover {
  color: #fff;
}

/* === Адаптивность === */
@media (max-width: 1024px) {
  .blog-grid {
    gap: 20px;
  }

  .blog-post {
    width: 300px;
    height: 450px;
  }

  .blog-thumb {
    height: 270px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    width: 90%;
    height: auto;
  }

  .blog-thumb {
    height: 250px;
  }
}

/* ==========================================
   End of Blog Page Styles
   Version: 3.0.6
   ========================================== */
