/*
 Theme Name:   ColorMag Child
 Template:     colormag
 Version:      1.0
*/

/* ===== Kongkow Bisnis Grid Layout ===== */

.cm-category-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.cm-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 25px;
}

.cm-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
  transition: .3s;
}

.cm-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.cm-post-thumb {
  position: relative;
  overflow: hidden;
}

.cm-post-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .3s;
}

.cm-post-card:hover img {
  transform: scale(1.05);
}

.cm-post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0073aa;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

.cm-post-body {
  padding: 18px;
}

.cm-post-title {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.cm-post-title a {
  color: #222;
  text-decoration: none;
}

.cm-post-title a:hover {
  color: #0073aa;
}

.cm-post-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.cm-post-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.cm-pagination {
  margin-top: 40px;
  text-align: center;
}

.cm-no-post {
  padding: 40px;
  text-align: center;
  font-size: 16px;
}

