.rep-accordion {
  min-width: 260px;
  max-width: 320px;
}

.rep-item {
  background: #eaf2fb;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.rep-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}
.rep-summary::-webkit-details-marker { display: none; }

.rep__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}


.rep-logo {
  max-height: 24px;
  max-width: 70px;
  object-fit: contain;
}

.rep-name {
  flex: 1;
  font-weight: 700;
  color: #1a7a3c;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.rep-chevron {
  background-image: url('../images/chevron.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 32px;
  height: 32px;
  transition: transform 0.2s;
}
.rep-item[open] .rep-chevron {
  transform: rotate(-180deg);
}

.rep-body {
  padding: 0 14px 14px 14px;
  font-size: 0.9rem;
  color: #222;
}
.rep-body p { margin: 4px 0; }
