/* Authentic Literary Examples Styling */

.modal-section .authentic-examples-list,
.modal-section #modal-authentic-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-section .authentic-example,
.modal-section #modal-authentic-list > div {
  background: linear-gradient(135deg, #f5f1ed 0%, #ffffff 100%);
  border-left: 3px solid #a89080;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.modal-section .authentic-example:hover,
.modal-section #modal-authentic-list > div:hover {
  border-left-color: #3d2e1f;
  box-shadow: 0 2px 8px rgba(61, 46, 31, 0.08);
}

.modal-section .quality-icon {
  font-size: 1.125rem;
  margin-right: 0.25rem;
}

.modal-section .authentic-quote,
.modal-section #modal-authentic-list div[style*="italic"] {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #3d2e1f;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.modal-section .authentic-citation,
.modal-section #modal-authentic-list div[style*="0.875rem"] {
  font-size: 0.875rem;
  color: #6b5d4f;
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-section .authentic-quote,
  .modal-section #modal-authentic-list div[style*="italic"] {
    font-size: 1rem;
  }
}
