/**
 * Purpose: Blog index tile grid (card layout, readable titles).
 * Source: Antlab blog index UX.
 * Notes: Complements Bootstrap 4 cards; images use object-fit for consistent height. Tile titles use IBM Plex at normal weight (no faux-bold card titles).
 */
body.blog-index-page {
	font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.blog-index-page .blog-tile-card .card-title,
.blog-index-page .blog-tile-card .card-title a {
	font-weight: 400;
}
.blog-index-articles--tiles-only {
  padding-top: 2.5rem;
}

@media (min-width: 992px) {
  .blog-index-articles--tiles-only {
    padding-top: 3rem;
  }
}
.blog-tile-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  background: #fff;
}
.blog-tile-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}
.blog-tile-card__img-link {
  display: block;
  background: #f4f4f4;
}
.blog-tile-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-tile-card .card-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.blog-tile-card .card-title a:hover {
  color: #00adef;
}

.blog-page-intro {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	text-align: center;
	font-size: 1.05rem;
	color: #444;
	line-height: 1.65;
	font-family: "IBM Plex Sans", system-ui, sans-serif;
}
h2.blog-pillar-label {
	display: block;
	width: 100%;
	clear: both;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #00adef;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 0.4rem;
	margin: 2.5rem 0 1.25rem;
}
.blog-tile-card__title {
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
}
.blog-tile-card__excerpt {
	font-size: 0.88rem;
	color: #555;
	line-height: 1.6;
	font-family: "IBM Plex Sans", sans-serif;
}
