.data-explorer {
  max-width: 1100px;
  margin: 75px auto;
  padding: 0 25px;
}
.data-explorer > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  background: linear-gradient(115deg, #1d2b62, #5c52c6);
  box-shadow: 0 14px 30px #1d2b6233;
  color: #fff;
  font:
    800 19px "Plus Jakarta Sans",
    sans-serif;
  cursor: pointer;
  list-style: none;
}
.data-explorer > summary::-webkit-details-marker {
  display: none;
}
.data-explorer > summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
}
.data-explorer[open] > summary {
  border-radius: 16px 16px 0 0;
}
.data-explorer[open] > summary::after {
  content: "\f077";
}
.data-explorer .data-section {
  margin: 0;
  padding: 38px 25px 5px;
  background: #f7f8ff;
  border-radius: 0 0 16px 16px;
}
.data-explorer .section-intro {
  margin: 0 0 24px;
}
.overview-section {
  position: relative;
  overflow: hidden;
}
.overview-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -110px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: #b7d9ff66;
}
.overview-section > * {
  position: relative;
}
@media (max-width: 600px) {
  .data-explorer {
    margin: 55px auto;
    padding: 0 7%;
  }
  .data-explorer > summary {
    padding: 20px;
    font-size: 16px;
  }
  .data-explorer .data-section {
    padding: 30px 15px 0;
  }
}
.data-explorer > summary {
  display: none;
}
.data-explorer > .data-section {
  display: block !important;
  border-radius: 16px !important;
}
details.data-explorer {
  display: contents;
}
details.data-explorer > summary {
  display: none !important;
}
details.data-explorer > .data-section {
  display: block !important;
  max-width: 1050px;
  margin: 75px auto;
  padding: 0 25px;
  background: transparent;
  border-radius: 0 !important;
}
@media (max-width: 600px) {
  details.data-explorer > .data-section {
    margin: 55px auto;
    padding: 0 7%;
  }
}
