.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
  line-height: 1.6;
  border: 1px solid #cccccc;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  margin: auto;
}

.content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 8px;
  color: #000000;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .quotes {
  width: 48px;
  height: 48px;
}

.content .words {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content .footer {
  text-align:right;
}

.content .para {
  z-index: 1;
  opacity: 0.8;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content ol {
  margin-bottom: 0;
  margin-top: 0;
}

.card:hover {
  box-shadow: 8px 8px var(--md-primary-fg-color--dark);
  border-color: var(--md-primary-fg-color);
  transform: translate(-8px, -8px);
}
