.content-badge {
  display: inline-block;
  background-color: #ccebe5;
  color: #0080a5;
  font-weight: 600;
  padding: 4px 10px 4px 10px;
  border-radius: 9999px;
  font-size: 14px;
  text-align: center;
}

h4 {
  font-size: 36px;
  font-weight: 300;
  color: #1e293b;
}

p {
  font-size: 24px;
  color: #475568;
  line-height: 1.6;
  text-align: justify;
}

.quote-headshot {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 128px;
  padding: 1.5rem;
  margin: 1.5rem;
}

.quote-headshot img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
}

.accordion-section {
  background: #e6f7f2;
  padding: 2rem 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.accordions details {
  min-width: 80%;
  max-width: 80%;
  background: #ffffff;
  border-radius: 24px;
  border: none;
  transition: box-shadow 0.2s;
  overflow: wrap;
}

.accordions details[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.accordions summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  background: none;
  border: none;
  outline: none;
  list-style: none;
  user-select: none;
  padding: 32px;
}

.accordions details[open] summary::after {
  transform: rotate(-180deg);
}

.accordion-description {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 18px;
  color: #475568;
}
