.author_name_disclosure {
  /* font-style: italic; */
  /* font-weight: 700; */
}

em {
  font-style: italic;
}

/* ------- Tick/Cross icons ------- */
.top_icons {
  margin: 0 auto;
  max-width: 600px;
  max-height: 8rem;
  display: flex;
  justify-content: space-between;
  padding: var(--space--base) 0;
}

.top_icons > svg {
  margin-right: 5px;
}

.top_icons > svg:last-child {
  margin: 0;
}

/* ------- Survey wrapper ------- */
.survey_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* ------- Accordion header ------- */

.accordion_head {
  background-color: var(--neutral-50);
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  min-height: 5rem;
  padding: var(--space--medsmall);
  font-family: var(--font-family--base);
}

.accordion_head:hover {
  color: white;
  background-color: var(--neutral-800);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author_info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 150px;
}

.author_name {
  font-size: var(--font-size--base);
  font-weight: 600;
}

.affiliation {
  text-wrap: balance;
  font-size: var(--font-size--small);
}

.response {
  border-radius: 50%;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.response svg {
  overflow: visible;
}

.expand_symbol {
  width: 1rem;
  text-align: center;
  font-weight: normal;
  font-size: 1.5rem;
}

/* ------- Accordion body ------- */

.accordion_body {
  padding: 0 var(--space--base);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease-in-out;
  align-items: start;
  overflow: hidden;
}

.accordion_content {
  overflow: hidden;
}

.expand {
  grid-template-rows: 1fr;
}

.accordion_content > *:first-child {
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  text-align: center;
  margin-bottom: 1.25rem;
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  padding: 0.625rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.btn:hover {
  color: white;
  background-color: var(--neutral-800);
}

hr {
  margin-bottom: 0.875rem;
  border-style: inset;
  border-width: 1px;
}

/* Media queries */
@media screen and (max-width: 599px) {
  .accordion_head {
    gap: 0.8rem;
  }

  .accordion_body {
    padding: 0 0.7rem;
  }

  .affiliation {
    font-size: var(--font-size--x-small);
  }

  .author_name {
    font-size: 1rem;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  p,
  P > * {
    font-size: 1rem;
  }
}
