.blogs-page {
  min-height: 70vh;
  background: #f4fbfb;
}

.blogs-hero {
  min-height: 390px;
  padding: 245px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #073f45 0%, #08737a 100%);
  color: #fff;
}

.blogs-hero h1 {
  margin: 5px 0 12px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.blogs-list {
  padding-top: 70px;
  padding-bottom: 90px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(6, 97, 104, .12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 63, 69, .09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 63, 69, .15);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dcecec;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  flex: 1;
  padding: 24px 24px 12px;
}

.blog-card-body h2 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.22;
}

.blog-card-body h2 a {
  color: #073f45;
}

.blog-date {
  margin-bottom: 12px;
  color: #718184;
  font-size: 13px;
}

.blog-excerpt {
  margin: 0;
  color: #445457;
  line-height: 1.65;
}

.blog-card-footer {
  padding: 12px 24px 24px;
}

.blog-read-more {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #066168;
  color: #fff;
  font-weight: 800;
  transition: background .2s ease;
}

.blog-read-more:hover {
  background: #dce73f;
  color: #073f45;
}

.blogs-empty {
  grid-column: 1 / -1;
  padding: 50px;
  text-align: center;
}

@media (max-width: 991px) {
  .blogs-hero {
    min-height: 280px;
    padding: 170px 0 55px;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blogs-hero {
    min-height: 240px;
    padding: 145px 0 45px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-list {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
