/* Quotes Database */

.quotes-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

.quotes-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.quotes-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.quotes-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.quotes-filter {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5em 1.25em;
  border: 1px solid #d4d0c8;
  border-radius: 3px;
  background: #fff;
  color: #888;
  cursor: pointer;
  transition: all 0.15s;
}

.quotes-filter:hover {
  border-color: #8b7355;
  color: #8b7355;
}

.quotes-filter.active {
  background: #8b7355;
  border-color: #8b7355;
  color: #fff;
}

.quotes-section {
  margin-bottom: 3rem;
}

.quotes-section h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b7355;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0dcd4;
  margin-bottom: 1.5rem;
}

.quote-card {
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid #e8e5de;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.2s;
}

.quote-card:hover {
  border-color: #c8c2b6;
}

.quote-position-tag {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2em 0.6em;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
}

.tag-for {
  background: #e8ead4;
  color: #5a6b3a;
}

.tag-against {
  background: #f0e4e4;
  color: #8b5555;
}

.tag-ambiguous {
  background: #e8e4f0;
  color: #6b5a8b;
}

.quote-original {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  border: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  font-style: normal;
}

.quote-english {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #2a2a2a;
  border: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-style: italic;
  font-weight: normal;
}

.quote-meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.quote-significance {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.quote-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b7355;
}

/* Responsive */
@media (max-width: 600px) {
  .quote-card {
    padding: 1.25rem;
  }

  .quote-english {
    font-size: 1.05rem;
  }

  .quotes-header h1 {
    font-size: 1.6rem;
  }
}
