
.cdc-ressources {
  max-width: 680px;
  margin: 1.5rem 0 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.cdc-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffc240;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 700;
  color: #014c2c;
  width: 100%;
  text-align: left;
  transition: filter 0.15s;
}
.cdc-toggle:hover { filter: none; }
.cdc-toggle.open  { border-radius: 6px 6px 0 0; }
.cdc-toggle .cdc-label { flex: 1; }
.cdc-toggle .cdc-count {
  font-size: 12px;
  font-weight: 700;
  background: #014c2c;
  color: #ffc240;
  padding: 2px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}
.cdc-toggle .cdc-chevron {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #014c2c;
}
.cdc-toggle.open .cdc-chevron { transform: rotate(180deg); }
background: #ffc240 !important;
.cdc-panel {
  border: 1.5px solid #ffc240;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  display: none;
  background: #ffc240 !important;
}
.cdc-panel.open { display: block; }

.cdc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid #f0e8d0;
  text-decoration: none !important;
  color: inherit !important;
  background: #fff;
  transition: background 0.12s;
}
.cdc-item:last-child { border-bottom: none; }
.cdc-item:hover { background: #f5f5f0; }

.cdc-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.cdc-icon.col-a { background: #014c2c; }
.cdc-icon.col-b { background: #9ABC1E; }

.cdc-info { flex: 1; min-width: 0; }
.cdc-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ABC1E;
  margin-bottom: 2px;
}
.cdc-title {
  font-size: 14px;
  color: #014c2c;
  font-weight: 700;
  line-height: 1.4;
}
.cdc-desc {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  line-height: 1.3;
}
.cdc-arrow {
  color: #ffc240;
  font-size: 24px;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
}
