.members-api .member-row.active {
    background-color: #f3f3f3;
}
.members-api .member-row-head {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
}
.members-api .col-12.col-md-3.member-row-head:hover {
    font-weight: 700;
}
.members-api .col-12.mt-3.member-details {
    border-top: 1px solid #6e6e70;
    font-size: 12px;
    padding: 10px;
    margin-top: 0 !important;
}
.members-api .col-12.mt-3.member-details a{
    word-wrap: break-word;
    white-space: normal;
}
.c-accordion {
  overflow: hidden;
}

.c-accordion-item {
  border-bottom: 1px solid #eee;
}

.c-accordion-header-heading{
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 8px 5px 5px;
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  font-family: "DIN Next Bold", Arial, sans-serif;
}

.c-accordion-header-heading .col{
  text-transform: uppercase;
  flex:1;
}

.c-accordion-header-heading .col:nth-child(3),
.c-accordion-header .col:nth-child(3) {
    flex-basis: 25%;
}

.c-accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  padding: 8px 5px 5px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.c-accordion-header.open{
  background: #f3f3f3;
}

.c-accordion-header:hover {
  background: #f5f5f5;
}

.c-accordion-header .col {
  flex: 1;
}

.c-accordion-header .col:first-child {
    text-transform: uppercase;
}

.c-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
}

.c-accordion-details {
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    gap: 20px;
    flex-direction: row;
    background: #f3f3f3;
    border-top: 1px solid #6e6e70;
}

.c-details-col {
  flex: 1 1 48%; /* grow/shrink, min width */
  font-size: 14px;
}

.c-details-col p{
  display: flex;
  font-size: 12px;
  margin-bottom: 0;
}

.c-details-col p span br {
    display: none;
}

.c-details-col p strong{
  width: 90px;
  padding-right: 10px;
  font-family: "DIN Next Bold", Arial, sans-serif;
}

.c-details-col p span{
  width: calc(100% - 90px);
  white-space: pre-line;
  word-break: break-all;
}

.c-accordion-body.open {
  max-height: 1000px; /* large enough for content */
}

@media (max-width: 767px) {
  .c-accordion-header .col{
      flex: 1 0 33% !important;
  }

  .c-accordion-header-heading,
  .c-accordion-header {
      padding: 8px 5px;
      font-size: 14px;
  }

  .c-accordion-details {
      padding: 6px;
      gap: 0;
  }

  .c-details-col {
    flex: 1 1 48%;
    font-size: 12px;
  }

  .c-details-col p {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .c-details-col p strong {
      width: 80px;
      padding-right: 10px;
  }

  .c-details-col p span {
      word-wrap: break-word;
      width: calc(100% - 80px);
  }
}