.cbg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.cbg-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
  border-radius: 12px;
  overflow: hidden;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cbg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.cbg-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius:20px !important;
}

.cbg-content {
  padding: 18px;
}

.cbg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cbg-header h3 {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 21px;
  font-family:"inter"
}

.cbg-header h3 a {
  color: inherit;
  text-decoration: none;
}

.cbg-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f59e0b;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.18s ease;
}
.cbg-arrow:hover {
  transform: translateX(4px);
}

.cbg-content p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 25px;
	font-weight:400px;
	font-family:"inter"
  color: #d1d5db;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .cbg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cbg-grid {
    grid-template-columns: 1fr;
  }
}
