.mhcp-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.mhcp-filter h3 {
  margin: 0 0 12px;
}

.mhcp-filter__box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mhcp-filter select {
  min-width: 110px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
}

.mhcp-filter button {
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  background: #283271;
}

.mhcp-filter button:hover {
  opacity: .9;
}

.mhcp-section {
  margin-bottom: 20px;
}

.mhcp-section-title {
  margin: 0 0 16px;
}

.mhcp-acc,
.mhcp-sub,
.mhcp-subsub {
  margin-bottom: 10px;
}

.mhcp-acc-btn span:first-child,
.mhcp-sub-btn span:first-child,
.mhcp-subsub-btn span:first-child {
  color: white;
}

.mhcp-acc-btn.is-open,
.mhcp-sub-btn.is-open,
.mhcp-subsub-btn.is-open {
  background: #0072A3;!important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mhcp-acc-btn,
.mhcp-sub-btn,
.mhcp-subsub-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  user-select: none;
  border: 0;
}

.mhcp-acc-btn {
  padding: 16px 20px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
  transition: background-color .2s ease;
  background:  #1F3E92;
  color:  #1e3a8a;
}

.mhcp-sub-btn {
  padding: 12px 16px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
  transition: background-color .2s ease;
  background: #0072A3;
  color: #1f3e92;
}

.mhcp-subsub-btn {
  padding: 10px 12px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  transition: background-color .2s ease;
  background: #0072A3;
  color: #1e3a8a;
}

.mhcp-acc-btn:hover,
.mhcp-sub-btn:hover,
.mhcp-subsub-btn:hover {
  background: #0072A3;
}

.mhcp-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transition: transform .3s ease;
  background: color-mix(in srgb,#009fe3 14%,white);
  color: #1e3a8a;
  flex: 0 0 34px;
}

.is-open .mhcp-chevron {
  transform: rotate(180deg);
}

.mhcp-panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 320ms ease, opacity 220ms ease;
}

.mhcp-panel.is-open {
  background:#F2F2F2 ;
  opacity: 1;
}

.mhcp-acc-panel {
  padding: 16px 20px;
}

.mhcp-sub-panel,
.mhcp-subsub-panel {
  padding: 12px 16px;
}

.mhcp-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.mhcp-list li + li {
  margin-top: 10px;
}

.mhcp-link {
  color:  #1e3a8a;
  font-weight: 400;
  word-break: break-word;
  text-decoration: none;
}

.mhcp-link:hover {
  color: #1f3e92;
  text-decoration: underline;
}

.mhcp-link-ico {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.mhcp-link-ico span {
  display: block;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.mhcp-doc-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 20px;
  transition: transform .25s ease, color .25s ease;
}

.mhcp-link:hover .mhcp-doc-icon {
  transform: translateY(-2px);
  color: #1f3e92;
}

.mhcp-empty {
  padding: 16px;
}

 /* Mobile: tamaño de letra*/
  @media (width >= 48rem){
    .mhcp-acc-btn,.mhcp-sub-btn, .mhcp-subsub-btn, .mhcp-link-ico span{
      font-size:1.125rem;
    }
  }





