/* ==========================================================
   Bellemann - News Block Styles
   Grid of news cards with hover effects
   Typography and link styles handled globally
========================================================== */

.bellemann-news {
  margin: 0 auto;
  max-width: 1200px;
}

/* Grid */
.bellemann-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Single post variant */
.bellemann-news--single {
  grid-template-columns: repeat(3, 1fr);
  justify-items: start;
}
.bellemann-news--single .bellemann-news__card {
  grid-column: span 1;
  max-width: 100%;
}

/* Two post variant */
.bellemann-news--double {
  grid-template-columns: repeat(3, 1fr);
  justify-items: start;
}
.bellemann-news--double .bellemann-news__card {
  grid-column: span 1;
  max-width: 100%;
}

/* Card */
.bellemann-news__card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.bellemann-news__card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Image */
.bellemann-news__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}
.bellemann-news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.bellemann-news__image a:hover img {
  transform: scale(1.05);
}

/* Title */
.bellemann-news__card-title {
  margin: 0 0 10px;
  line-height: 1.3;
  font-size: 20px;
}

/* Excerpt */
.bellemann-news__excerpt {
  margin-bottom: 15px;
  flex-grow: 1;
}
