/* Quote & Author Pages */

.page-main {
  min-height: 70vh;
  padding: 2rem 0 4rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: #F7931A;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* Individual Quote Page */
.quote-page-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,147,26,0.15);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.quote-icon {
  font-size: 4rem;
  color: #F7931A;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.quote-page-text {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 1.5rem;
  font-style: italic;
}
.quote-page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.quote-page-footer cite {
  color: #F7931A;
  font-style: normal;
  font-size: 1.1rem;
}
.quote-page-footer cite a {
  color: #F7931A;
  text-decoration: none;
}
.quote-page-footer cite a:hover { text-decoration: underline; }
.quote-date {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Related quotes */
.related-quotes {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.related-quotes h2 {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.related-quotes ul {
  list-style: none;
  padding: 0;
}
.related-quotes li {
  margin-bottom: 0.75rem;
}
.related-quotes li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.related-quotes li a:hover { color: #F7931A; }
.view-all-link {
  display: inline-block;
  margin-top: 1rem;
  color: #F7931A;
  text-decoration: none;
  font-size: 0.95rem;
}
.view-all-link:hover { text-decoration: underline; }

/* Author Page */
.author-header {
  text-align: center;
  margin-bottom: 3rem;
}
.author-header h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.author-bio {
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.author-count {
  display: inline-block;
  background: rgba(247,147,26,0.15);
  color: #F7931A;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.author-quotes-list {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.author-quote-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,147,26,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.author-quote-card:hover {
  border-color: rgba(247,147,26,0.4);
  transform: translateY(-2px);
}
.author-quote-card blockquote {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.author-quote-card .quote-date {
  font-size: 0.8rem;
}

.back-link {
  display: inline-block;
  color: #F7931A;
  text-decoration: none;
  font-size: 0.95rem;
}
.back-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .quote-page-card { padding: 2rem 1.25rem; }
  .quote-page-text { font-size: 1.25rem; }
  .author-header h1 { font-size: 1.6rem; }
}
