.blog-page {
  background: #f7f9fb;
  min-height: 100vh;
}

.blog-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.blog-back {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-back:hover {
  color: #fff;
  text-decoration: none;
}

.blog-meta {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.blog-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: #fff;
}

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

.blog-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  line-height: 1.75;
  color: #334155;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}

.blog-content p,
.blog-content ul,
.blog-content ol {
  margin: 0 0 1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.25rem;
}

.blog-content a {
  color: var(--pink);
}

.blog-figure {
  margin: 1.25rem 0;
}

.blog-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.blog-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.blog-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-footer {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s;
}

.article-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.article-thumb {
  aspect-ratio: 16 / 9;
  background: #e8edf2 center/cover no-repeat;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 1rem 1.15rem 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.article-body strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.article-body span {
  color: var(--muted);
  font-size: 0.88rem;
}

.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr !important;
  }
}
