.articlePage {
  min-height: 100vh;
  background-color: #f8fafc;
  padding-bottom: 80px;
}

.articleContainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 40px 0 20px;
}

.backLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  margin-bottom: 24px;
}

.backLink:hover {
  color: #f62440;
}

.title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f62440;
}

.badge {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imageWrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}

.content p {
  margin-bottom: 24px;
}

.content p:last-child {
  margin-bottom: 0;
}

.content h1, 
.content h2, 
.content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1e293b;
}

.content ul, 
.content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 8px;
}

.content strong {
  font-weight: bold;
  color: #1e293b;
}

.content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.content a:hover {
  color: #1d4ed8;
}

.notFound {
  text-align: center;
  padding: 100px 20px;
}

.notFound h1 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 16px;
}

.notFound p {
  color: #64748b;
  margin-bottom: 24px;
}

.btnPrimary {
  display: inline-block;
  background: #f62440;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s;
}

.btnPrimary:hover {
  background: #d11f35;
}

@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }
  .imageWrapper {
    height: 250px;
  }
  .content {
    padding: 24px;
    font-size: 16px;
  }
}
