/* Articles specific styles */
:root {
  --article-orange: #FA9B15;
  --article-orange-light: #fff5e6;
}

.article-hero {
  border-bottom: 3px solid var(--article-orange);
}

.article-topic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--article-orange);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-topic svg {
  width: 16px;
  height: 16px;
}

.article-meta {
  font-size: 0.95rem;
  color: #6c757d;
}

.article-meta svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

.article-content h2 {
  color: var(--article-orange);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  font-weight: 600;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content blockquote {
  border-left: 4px solid var(--article-orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

/* Listing page styles */
.article-card {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(250, 155, 21, 0.15);
  transform: translateY(-2px);
}

.article-card.featured-article {
  border: 2px solid var(--article-orange);
  padding: 2rem;
}

.article-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: var(--article-orange);
}

.article-summary {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.featured-badge {
  display: inline-block;
  background: var(--article-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-outline-warning {
  color: var(--article-orange);
  border-color: var(--article-orange);
}

.btn-outline-warning:hover {
  background: var(--article-orange);
  border-color: var(--article-orange);
  color: white;
}

/* Author thumbnail in cards */
.author-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: #212529;
}