

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  padding: 0rem 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

section {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
section + section {
  margin-top: 2.5em;
}

h1 {
  font-weight: 700;
  line-height: 1.125;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

h2 {
  margin-top: 0.25em;
  color: #999;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
}
h2 + * {
  margin-top: 1.5em;
}

summary {
  background-color: #fff;
  position: relative;
  cursor: pointer;
    list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  background-color: #f2f5f9;
}
summary div {
  display: flex;
  align-items: center;
}
summary h3 {
  display: flex;
  flex-direction: column;
}
summary small {
  color: #999;
  font-size: 10px;
}
summary strong {
  
  font-size: 20px;
}
summary span:first-child {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background-color: #f3e1e1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 1.25em;
}
summary span:first-child svg {
  width: 2.25rem;
  height: 2.25rem;
}
summary span:last-child {
  font-weight: 700;
  margin-left: auto;
}
summary:focus {
  outline: none;
}
summary .plus {
  color: #289672;
}

details {
  border-bottom: 1px solid #b5bfd9;
}
details[open] {
  box-shadow: -3px 0 0 #b5bfd9;
}
details:first-of-type {
  border-top: 1px solid #b5bfd9;
}
details > div {
  padding: 2em 2em 0;
  font-size: 10;
}

dl {
  display: flex;
  flex-wrap: wrap;
}
dl dt {
  font-weight: 700;
}
dl div {
  margin-right: 4em;
  margin-bottom: 2em;
}