/* HERO */
.clg-hero {
  background: linear-gradient(135deg, #FF7A00, #ffb35c);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.clg-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.clg-hero p {
  font-size: 16px;
  opacity: 0.95;
}

.clg-hero-btns {
  margin-top: 20px;
}

.clg-hero-btns a {
  display: inline-block;
  padding: 12px 18px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn1 {
  background: #fff;
  color: #FF7A00;
}

.btn2 {
  background: #1e1e1e;
  color: #fff;
}

.clg-hero-btns a:hover {
  transform: scale(1.05);
}

/* SECTION */
.clg-section {
  padding: 60px 20px;
  background: #f7f7fb;
}

/* GRID */
.clg-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.clg-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.clg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #FF7A00, #ff9a3c);
}

.clg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* TOP */
.clg-top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.clg-logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #eee;
}

/* TITLE */
.clg-title {
  font-size: 17px;
  margin: 0;
  color: #1e1e1e;
}

/* META */
.clg-meta {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.clg-badge {
  background: #FFE9A3;
  color: #A87D00;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.clg-location {
  font-size: 12px;
  color: #666;
}

/* BODY */
.clg-body {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.clg-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}

.clg-row span {
  color: #777;
}

.clg-row b {
  color: #222;
}

/* BUTTONS */
.clg-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.clg-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.clg-btn.light {
  background: #f1f3f6;
  color: #333;
}

.clg-btn.dark {
  background: linear-gradient(90deg, #FF7A00, #ff9a3c);
  color: #fff;
}

/* HEADER */
.clg-header {
  text-align: center;
  margin-bottom: 40px;
}

.clg-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #1e1e1e;
  font-weight: 700;
}

.clg-header p {
  font-size: 15px;
  color: #666;
}

.clg-btn:hover {
  transform: scale(1.05);
}

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

  .clg-hero h1 {
    font-size: 28px;
  }
}

@media(max-width:600px) {
  .clg-container {
    grid-template-columns: 1fr;
  }

  .clg-hero h1 {
    font-size: 21px;
  }
}