/* === Grille de liste === */
.cb-news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 20px 0;
}

.cb-news-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.cb-news-item:hover {
  transform: scale(1.02);
}

.cb-news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.cb-news-content {
  padding: 15px;
}

.cb-news-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: #0a2a49;
}

.cb-news-excerpt {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.cb-news-link {
  font-weight: 600;
  color: #f69030;
  text-decoration: none;
}
.cb-news-link:hover {
  text-decoration: underline;
}

/* === News mise en avant === */
.cb-news-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0a2a49;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin: 30px 0;
  text-align: center;
}

.cb-news-featured-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cb-news-featured-content {
  padding: 25px;
}

.cb-news-featured-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.cb-news-featured-excerpt {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.cb-news-featured-link {
  background: #f69030;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cb-news-featured-link:hover {
  background: #d9751c;
}
