.dor-es {
  padding: 44px 18px;
  color: #561003;
}

.dor-es__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dor-es__topline {
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.dor-es__title {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 0 0 14px 0;
}

.dor-es__text {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 18px auto;
  font-size: 16px;
  line-height: 1.6;
}

.dor-es__text p {
  margin: 0.6em 0;
}

/* List container */
.dor-es__list {
  max-width: 920px;
  margin: 18px auto 0;
  border-radius: 10px;
  padding: 12px 12px;
}



.dor-es__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 12px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* if no body => keep as normal text, but button is disabled */
.dor-es__btn:disabled {
  cursor: default;
  opacity: 1;
}

.dor-es__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
}

.dor-es__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.dor-es__icon svg {
  display: block;
}

/* rotate plus to "x" when open (only for svg case) */
.dor-es__row.is-open .dor-es__icon svg {
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.dor-es__icon svg {
  transition: transform .2s ease;
}

.dor-es__label {
  font-size: 16px;
  line-height: 1.5;
}

/* Panel (expand/collapse) */
.dor-es__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .2s ease;
}

.dor-es__panelInner {
  padding: 0 10px 14px 48px; /* indent under icon */
  font-size: 15px;
  line-height: 1.6;
  color:white;
}

.dor-es__panelInner p {
  margin: 0.6em 0;
}