/* Style specific to Random Quote Generator */
@import url("../style.css");

.quote-display-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.15));
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.quote-watermark-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.quote-body-text {
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.quote-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c084fc;
}

.quote-author-context {
  font-size: 0.85rem;
  color: #94a3b8;
}

.quote-topic-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 3px 8px;
  border-radius: 999px;
}
