.card-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #1a3a5c;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3a5c;
  color: #c9a84c;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
}

.hero {
  position: relative;
  background-image: url('/assets/images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 58, 92, 0.82);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.pagination a, .pagination-current {
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.pagination a {
  border: 1px solid #1a3a5c;
  color: #1a3a5c;
}
.pagination a:hover {
  background: #1a3a5c;
  color: white;
}
.pagination-current {
  background: #1a3a5c;
  color: white;
}

.post-featured-image {
  padding: 0 24px;
  margin-bottom: 1rem;
}

.post-featured-image img {
  display: block;
  max-width: 760px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  margin: 0 auto;
}
