.custom-details {
  cursor: pointer;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff;
  transition: all 0.4s ease;
}
.custom-details:hover {
  background: #F4F6F8;
}
.custom-details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: all 0.5s allow-discrete;
}
.custom-details[open]::details-content {
  block-size: auto;
  block-size: calc-size(auto, size);
}
.custom-details summary {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 12px;
  border-bottom: 1px solid #a1a1a1cc;
  font-size: 24px;
  font-weight: 500;
}
.custom-details summary img {
  transition: all 0.4s ease-in-out;
}
.custom-details[open] summary img {
  transform: rotateZ(180deg);
}

@media (max-width: 768px) {
  .custom-details {
    font-size: 12px;
  }
  .custom-details summary {
    font-size: 14px;
  }
}
