/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  /* color: #1a1a1a; */
  /* background-color: #f9fafb; */
  /* font-family: system-ui, -apple-system, sans-serif; */
  background-color: #111827;
  color: white;
}

/* Header styles */
.site-header {
  /* background-color: white; */
  background-color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #dc2626;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo:hover {
  color: #b91c1c;
}

.timer-icon {
  width: 24px;
  height: 24px;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #4b5563;
}

.home-link:hover {
  color: #1a1a1a;
}

/* Main content styles */
.main-content {
  max-width: 896px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.article {
  background-color: #111827;
  border-radius: 0.5rem;
}

/* Article header styles */
.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #6b7280;
}

.separator {
  color: #d1d5db;
}

/* Featured image styles */
.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

/* Article content styles */
.article-content {
  padding: 2rem;
  background-color: #111827;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.article-content h2,
.article-content h3 {
  font-size: 1.5rem;
  color: #4b5563;
  margin: 2rem 0 1rem;
}

.article-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

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

/* Author bio styles */
.author-bio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Footer styles */
.site-footer {
  background-color: white;
  border-top: 1px solid #e5e7eb;
  padding: 2rem;
  margin-top: 4rem;
  text-align: center;
  color: #6b7280;
}

/* Responsive styles */
@media (max-width: 768px) {
  .article-header h1 {
    font-size: 2rem;
  }

  .featured-image {
    height: 300px;
  }

  .article-content {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0.75rem;
  }

  .logo span {
    font-size: 1.125rem;
  }

  .article-header h1 {
    font-size: 1.75rem;
  }

  .featured-image {
    height: 250px;
  }

  .article-content {
    padding: 1rem;
  }
}