/* Blog & Changelog Styles */

.blog-article {
  padding: 2rem 0 4rem;
}

.blog-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.blog-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, var(--foreground) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .blog-header h1 {
    font-size: 2.5rem;
  }
}

.blog-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Changelog */
.changelog {
  max-width: 800px;
}

.changelog-week {
  margin-bottom: 3rem;
}

.changelog-week-title {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.changelog-entry {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .changelog-entry {
    grid-template-columns: 80px 1fr;
  }
}

.changelog-entry:last-child {
  border-bottom: none;
}

.changelog-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  padding-top: 0.25rem;
}

.changelog-content h3 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.changelog-content ul {
  list-style: none;
  padding: 0;
}

.changelog-content li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.changelog-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Changelog Tags */
.changelog-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}

.tag-new {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.tag-update {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.tag-improvement {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.tag-fix {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

/* Upcoming Updates */
.upcoming-updates {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.upcoming-updates h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.upcoming-list {
  list-style: none;
  padding: 0;
}

.upcoming-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--foreground);
}

.upcoming-list li:last-child {
  border-bottom: none;
}

.upcoming-status {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: var(--gold);
}