.cc-wrap {
  margin: 0 auto;
}

/* Accordion container */
.cc-accordion {
  display: grid;
  gap: 0px;
  padding: 20px 0;
}

/* MAIN level */
details.cc-acc {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

details.cc-acc:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

details.cc-acc[open] {
  border-color: #FF0068;
}

summary.cc-acc__summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: background-color 0.2s ease;
}

summary.cc-acc__summary:hover {
  background-color: rgba(59, 130, 246, 0.02);
}

summary.cc-acc__summary::-webkit-details-marker {
  display: none;
}

.cc-acc__title {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.cc-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #FF0068;
  font-weight: 600;
  font-size: 18px;
}

.cc-titleText {
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-chev {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #475569;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.cc-chev::before {
  content: "↓";
  font-size: 16px;
}

details[open] > summary .cc-chev {
  transform: rotate(180deg);
  color: #FF0068;
}

/* Content animation */
.cc-acc__content {
  padding: 0 24px 24px;
  color: #1e293b;
  border-top: 1px solid #e2e8f0;
  animation: accOpen 0.25s ease;
}

@keyframes accOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cc-contentCard {
  background: #fafbfc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}

/* SUB level (nested accordion) */
.cc-subAccordion {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

details.cc-sub {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

details.cc-sub:hover {
  border-color: #cbd5e1;
}

details.cc-sub[open] {
  border-color: #FF0068;
}

summary.cc-sub__summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background-color 0.2s ease;
}

summary.cc-sub__summary:hover {
  background-color: rgba(59, 130, 246, 0.02);
}

summary.cc-sub__summary::-webkit-details-marker {
  display: none;
}

.cc-sub__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.cc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF0068;
  flex-shrink: 0;
}

details.cc-sub[open] .cc-dot {
  background: #FF0068;
}

.cc-sub__title {
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-subChev {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: transform .22s ease, color .22s ease;
  flex: 0 0 auto;
  color: #475569;
}

.cc-subChev::before {
  content: "↓";
  font-size: 14px;
}

details[open].cc-sub > summary .cc-subChev {
  transform: rotate(180deg);
  color: #FF0068;
}

.cc-sub__content {
  padding: 0 18px 18px;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  animation: accOpen .18s ease;
}

/* Responsive adjustments */
@media (max-width: 520px) {
  summary.cc-acc__summary {
    padding: 16px 16px;
  }

  .cc-acc__content {
    padding: 0 16px 16px;
  }

  .cc-contentCard {
    padding: 16px;
  }

  summary.cc-sub__summary {
    padding: 14px 16px;
  }

  .cc-sub__content {
    padding: 0 16px 16px;
  }

  .cc-badge {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .cc-titleText {
    font-size: 15px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
  }

  .cc-acc__summary {
    align-items: flex-start;
  }

  .cc-chev {
    margin-top: 4px;
  }

  .cc-section-title{
    font-size:var(--mobile-title-size) !important;
  }
}


ul.cc-clean {
  list-style: none;
  padding-left: 0;
}

ul.cc-clean li {
  margin: 8px 0;
  color: #475569;
  position: relative;
  padding-left: 18px;
}

/* 🔥 custom bullet */
ul.cc-clean li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF0068;
}

.cc-section-title{
  margin:0 0 24px;
  line-height:1.2;
}

.cc-section-title.align-left{
  text-align:left;
}

.cc-section-title.align-center{
  text-align:center;
}

.cc-section-title.align-right{
  text-align:right;
}