/* GRID */
.cg-grid-container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 40px 20px;
}
.cg-grid-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px; /* side gap */
}

.sb-split-text {
  padding-right: 20px;
}
@media(max-width:768px){
  .sb-split-text {
    padding-right: 0;
  }
}
/* CARD */
.cg-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.cg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255,204,102,0.15);
}

/* IMAGE */
.cg-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* INFO */
.cg-card-info {
  padding: 15px;
  text-align: center;
}

.cg-card-info h3 {
  color: #fff;
}

.cg-card-info p {
  color: #aaa;
  font-size: 13px;
}
.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 25px;
  border: 1px solid #ffcc66;
  color: #ffcc66;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.view-btn:hover {
  background: #ffcc66;
  color: #000;
}

/* TAG */
.tag {
  display: inline-block;
  margin: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.tag.vip {
  background: #ffcc66;
  color: #000;
}

.tag.verified {
  background: #00b478;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .cg-grid-container {
    grid-template-columns: repeat(2,1fr);
  }
}