/* Quotes Page Styling */
.quote-content {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  padding: 2rem 3rem;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, rgba(255, 167, 38, 0.08), rgba(255, 167, 38, 0.04));
  border-radius: 20px;
  border: 1px solid rgba(255, 167, 38, 0.2);
  animation: fadeInScale 0.6s ease-out;
}

.quote-content::before,
.quote-content::after {
  content: "\201C";
  font-size: 5rem;
  color: var(--accent-orange);
  position: absolute;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.quote-content::before {
  left: 1rem;
  top: 0.5rem;
}

.quote-content::after {
  content: "\201D";
  right: 1rem;
  bottom: 0rem;
}

.quote-author {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: right;
  color: var(--accent-orange);
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 167, 38, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  position: relative;
  animation: slideInLeft 0.5s ease-out 0.3s both;
}

.quote-author::before {
  content: "— ";
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced loading state for quotes */
.loading .quote-content {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  color: transparent;
}

.loading .quote-content::before,
.loading .quote-content::after {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .quote-content {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .quote-content::before,
  .quote-content::after {
    font-size: 3.5rem;
  }

  .quote-content::before {
    left: 0.5rem;
    top: 0.2rem;
  }

  .quote-content::after {
    right: 0.5rem;
    bottom: -0.3rem;
  }

  .quote-author {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
}
