#quotes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media only screen and (min-width: 640px) {
  #quotes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote {
  display: flex;
  flex-direction: column;
  outline-width: 0.125rem;
  outline-style: solid;
  outline-color: var(--grey-lowkey);
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: white;
  /* max-width: 24rem; */
  transition: box-shadow 0.1s ease-in-out, outline-color 0.1s ease-in-out;
}

.quote:hover {
  outline-color: transparent;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
}

.quote__body::before,
.quote__body::after {
  content: '"';
  font-family: monospace;
  font-size: 1.75rem;
}

.quote__body {
  font-size: 1.25rem;
  flex-grow: 1;
}

.quote__cite {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}

.quote__author-image {
  border-radius: 9999rem;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}

.quote__author-name {
  margin-left: 1rem;
}
