.sg-wrap {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: inherit;
}

/* ── Sidebar ── */
.sg-sidebar {
  width: 200px;
  flex-shrink: 0;
}
.sg-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 14px;
}
.sg-cat {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  line-height: 1.4;
}
.sg-cat:hover  { background: #f0f0f0; color: #053273; }
.sg-cat.active { background: #053273; color: #fff; font-weight: 600; }

/* ── Main ── */
.sg-main { flex: 1; min-width: 0; }

.sg-heading {
  font-size: 26px;
  font-weight: 700;
  color: #053273;
  margin: 0 0 4px;
}
.sg-subheading {
  font-size: 14px;
  color: #999;
  margin: 0 0 24px;
}

/* ── Grid ── */
.sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Card ── */
.sg-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}
.sg-card.sg-hidden { display: none; }

.sg-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eee;
}
.sg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sg-card:hover .sg-img-wrap img { transform: scale(1.04); }

.sg-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #053273;
}

.sg-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sg-title {
  font-size: 15px;
  font-weight: 700;
  color: #053273;
  margin: 0;
  line-height: 1.3;
}
.sg-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.sg-btn {
  display: block;
  text-align: center;
  border: 2px solid #053273;
  color: #053273;
  border-radius: 8px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.sg-btn:hover { background: #053273; color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sg-wrap    { flex-direction: column; padding: 40px 16px; gap: 24px; }
  .sg-sidebar { width: 100%; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .sg-sidebar-label { width: 100%; margin-bottom: 4px; }
  .sg-cat     { width: auto; }
}
@media (max-width: 600px) {
  .sg-grid { grid-template-columns: 1fr; }
}
