
.cbs-container {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.cbs-content {
  flex: 3;
}
.cbs-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cbs-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cbs-post.featured {
  flex: 1 1 100%;
  position: relative;
}
.cbs-post.grid {
  flex: 1 1 calc(50% - 10px);
  position: relative;
}
.cbs-post img {
  width: 100%;
  border-radius: 6px;
}
.cbs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: crimson;
  color: white;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
}
.cbs-post h2 {
  font-size: 1.2rem;
  margin-top: 10px;
}
.cbs-meta {
  font-size: 0.85rem;
  color: #555;
}
.cbs-socials a {
  display: block;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 4px;
  background-color: #eee;
  text-align: center;
  font-weight: bold;
  color: #000;
}
.cbs-newsletter {
  background: #6236ff;
  color: white;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}
.cbs-newsletter input {
  padding: 8px;
  width: 80%;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
}
.cbs-newsletter button {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  background: white;
  color: #6236ff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.cbs-recent ul {
  list-style: none;
  padding: 0;
}
.cbs-recent li {
  margin-bottom: 10px;
}
#cbs-load-more {
  margin-top: 20px;
  padding: 10px 15px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
