
.chm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .chm-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .chm-blog-grid {
    grid-template-columns: 1fr;
  }
}

.chm-blog-card {
  background: #ffffff;
}

.chm-blog-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.chm-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chm-blog-image-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background: #0b4f45;
}

.chm-blog-content {
  padding: 16px 4px 0 4px;
}

.chm-blog-date {
  display: inline-block;
  background: #93d2bf;
  color: #0b4f45;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.chm-blog-title {
  margin: 12px 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.chm-blog-title a {
  color: #111111;
  text-decoration: none;
}

.chm-blog-title a:hover {
  text-decoration: underline;
}

.chm-blog-excerpt {
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}
