/**
 * Trump Coin Tracker Page Styles
 * Non-critical CSS loaded after initial render
 */

/* Page Header (same as signals.css for consistency) */
.page-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header .breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.page-header .breadcrumbs a {
  color: white;
  text-decoration: none;
}

.page-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
}

.page-header .subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
}

.page-header .meta {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* Insights Section */
.insights-section {
  margin: 3rem 0;
}

.insight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f59e0b;
}

.insight-card h3 {
  margin-top: 0;
  color: #1f2937;
  font-size: 1.2rem;
}

.insight-card p {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: #374151;
}

.insight-card ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.insight-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-content h4 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.05rem;
  color: #1f2937;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.faq-item h3 {
  margin-top: 0;
  color: #92400e;
}

.faq-item p,
.faq-item ul {
  color: #78350f;
  line-height: 1.7;
}

.faq-item a {
  color: #b45309;
  font-weight: 600;
}

/* Related Content */
.related-content {
  margin: 3rem 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.link-card {
  padding: 1.5rem;
  background: white;
  border: 2px solid #fed7aa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

.link-card h3 {
  margin-top: 0;
  color: #92400e;
  font-size: 1.1rem;
}

.link-card p {
  margin: 0.5rem 0 0 0;
  color: #78350f;
  font-size: 0.9rem;
}

/* Footer */
.page-footer {
  background: #fffbeb;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 2px solid #fef3c7;
}

.page-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-footer p {
  margin: 0.5rem 0;
  color: #92400e;
  font-size: 0.9rem;
}

.page-footer .disclaimer {
  font-size: 0.85rem;
  color: #b45309;
  margin-top: 1rem;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.75rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .timeline-date {
    font-size: 0.9rem;
  }
}

/* Table Styles for Insights and FAQ Content */
.insight-card table,
.faq-item table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.insight-card table thead,
.faq-item table thead {
  background: #fef3c7;
}

.insight-card table th,
.faq-item table th {
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid #fbbf24;
  color: #92400e;
}

.insight-card table td,
.faq-item table td {
  padding: 0.75rem;
  border: 1px solid #fed7aa;
  color: #78350f;
}

.insight-card table tbody tr:hover,
.faq-item table tbody tr:hover {
  background: #fffbeb;
}

@media (max-width: 768px) {
  .insight-card table,
  .faq-item table {
    font-size: 0.8rem;
  }

  .insight-card table th,
  .insight-card table td,
  .faq-item table th,
  .faq-item table td {
    padding: 0.5rem;
  }
}
