.blog-grid-section {
  width: 100%;
}

.blog-grid__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}
/* Removed first-child span logic as featured post is now in hero */

.blog-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card__image-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
  background-color: #f0f0f0;
}
.blog-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  background-color: #ffffff;
}
.blog-card__date {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
}
.blog-card__title {
  font-family: var(--font-display, serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-brand-navy-deep, #0f2a44);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-grid-loader {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.blog-grid-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-brand-gold, #d4af37);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.load-more-trigger {
  width: 100%;
  height: 1px;
  visibility: hidden;
  margin-top: 20px;
}

/*# sourceMappingURL=blog-grid.css.map */
