/* Article and Timeline Styles */

.article-preview {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.article-preview:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  margin-bottom: 0.25rem;
}

.article-link {
  text-align: left;
  color: #1a202c;
  background: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.article-link:hover {
  color: #0d0d0d;
  text-decoration: underline;
}

.article-summary {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
}

.article-tags {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s;
}
.tag-pill:hover {
  background: #e5e7eb;
}

.article-content-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a202c;
  text-align: left;
  margin-bottom: 0.5rem;
}

.article-content-meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.article-content-body {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.article-content-body p {
  margin: 1rem 0 1.5rem 0;
}

.article-content-body ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.article-content-body ul ul {
  list-style-type: circle;
  margin-left: 1.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.article-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.article-content-body th,
.article-content-body td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.article-content-body th {
  font-weight: 600;
  background: #f9fafb;
  color: #1f2937;
}

.timeline-container {
  padding-left: 1rem;
}
.timeline-year-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: -1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
}
.timeline-quarter {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.timeline-article-link {
  text-align: left;
  color: #6b7280;
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.timeline-article-link:hover {
  color: #111;
}

.article-content-body h2 {
  font-size: 1.375rem; /* ~text-xl */
  font-weight: 700;
  color: #1a202c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content-body h3 {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  color: #1a202c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content-body h4 {
  font-size: 1rem; /* text-base */
  font-weight: 600;
  color: #1a202c;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-content-body h5 {
  font-size: 1rem; /* text-base */
  font-weight: 600;
  color: #1a202c;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.article-content-body li {
  margin-bottom: 0.5rem;
}

/* Tagline and disclaimer styling */
.article-content-body p[data-tagline],
.article-content-body p[data-disclaimer] {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  color: #6b7280; /* gray-500 - muted but readable */
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Horizontal rule styling in articles */
.article-content-body hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
  width: 100%;
}

/* Tagline specific styling (bold paragraph) */
.article-content-body p[data-tagline] {
  font-size: 1.0625rem; /* reduced by ~1pt */
  font-weight: 600;
  color: #4b5563; /* gray-600 - original baseline color */
  letter-spacing: 0.025em; /* subtle letter spacing */
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}

/* Tagline hover effect */
.article-content-body p[data-tagline]:hover {
  color: #0f766e; /* teal-700 - deeper teal on hover */
  transform: scale(1.01);
  letter-spacing: 0.04em; /* less letter spacing expansion */
}

/* Disclaimer specific styling (italic paragraph) */
.article-content-body p[data-disclaimer] {
  font-size: 0.875rem; /* smaller text */
  font-style: italic;
  line-height: 1.6;
  max-width: 42rem; /* constrain width for better readability */
  margin-left: auto;
  margin-right: auto;
  color: #9ca3af; /* gray-400 - more subtle for disclaimer */
}