/* Blogs listing — matches about & contact chrome */

body.page-blogs .blogs-page {
  padding: calc(var(--site-header-height, 96px) + 40px) 0 72px;
  background: linear-gradient(165deg, #f4f7f8 0%, #e8eef0 45%, #dfe8ea 100%);
  min-height: calc(100svh - var(--site-header-height, 96px));
  box-sizing: border-box;
}

@media (max-width: 575px) {
  body.page-blogs .blogs-page {
    padding-top: calc(var(--site-header-height, 72px) + 24px);
  }
}

body.page-blogs .blogs-page .container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.blogs-page__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d5a62;
  margin: 0 0 12px;
}

.blogs-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1a2e32;
  margin: 0 0 16px;
}

.blogs-page__lead {
  font-family: "Jost", sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #4a5f66;
  margin: 0;
}

.blogs-page__intro {
  text-align: center;
  margin-bottom: 40px;
}

.blogs-page__empty {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #5a7078;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 34, 35, 0.08);
  border-radius: 16px;
}

.blogs-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

.blogs-page__card {
  background: #fff;
  border: 1px solid rgba(18, 34, 35, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(18, 34, 35, 0.04),
    0 10px 28px rgba(18, 34, 35, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blogs-page__card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(18, 34, 35, 0.06),
    0 14px 32px rgba(18, 34, 35, 0.08);
}

.blogs-page__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blogs-page__card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef0;
}

.blogs-page__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blogs-page__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
  flex: 1 1 auto;
}

.blogs-page__card-date {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d6b75;
}

.blogs-page__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #122223;
  margin: 0;
}

.blogs-page__card-excerpt {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #5a7078;
  margin: 0;
  flex: 1 1 auto;
}

.blogs-page__card-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3d6b75;
  margin-top: 4px;
}

.blogs-page__pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.blogs-page__pagination .admin-pagination {
  width: 100%;
  max-width: 720px;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  justify-content: center;
}

.blogs-page__pagination .admin-pagination__summary {
  width: 100%;
  text-align: center;
  font-family: "Jost", sans-serif;
  color: #5a7078;
}

.blogs-page__pagination .pagination {
  justify-content: center;
}

.blogs-page__pagination .pagination a,
.blogs-page__pagination .pagination span {
  font-family: "Jost", sans-serif;
  border-color: #d4dee3;
  color: #1a2e32;
}

.blogs-page__pagination .pagination a:hover {
  border-color: #3d6b75;
  color: #3d6b75;
}

.blogs-page__pagination .pagination .active span {
  background: var(--site-primary);
  border-color: var(--site-primary);
}
