.blog-hub-main {
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: #ece8e2;
}

.blog-hub-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.blog-hub-hero-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d0dae7;
}

.blog-hub-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 0;
}

.blog-hub-hero-copy {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.blog-hub-hero-copy h1 {
  margin: 0;
}

.blog-hub-hero-copy p {
  margin: 0;
  color: #4f6678;
}

.blog-hub-list {
  margin-top: 20px;
}

.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-hub-card:hover,
.blog-hub-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c6bcd0;
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.12);
}

.blog-hub-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.blog-hub-card-body {
  padding: 14px 14px 16px;
}

.blog-hub-card-body h2 {
  margin: 8px 0 6px;
  font-size: 1.35rem;
}

.blog-hub-card-body p {
  margin: 0;
  color: #536a7b;
}

.blog-detail-main {
  padding-top: 120px;
  padding-bottom: 56px;
  min-height: 100vh;
  background: #ece8e2;
}

.blog-detail-breadcrumb {
  margin: 0 0 10px;
  color: #607383;
  font-size: 0.94rem;
}

.blog-detail-breadcrumb a {
  color: #405a70;
  text-decoration: none;
}

.blog-detail-shell {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.blog-detail-title {
  margin: 8px 0 8px;
}

.blog-detail-meta {
  margin: 0 0 14px;
  color: #627588;
}

.blog-detail-cover {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8e1ec;
}

.blog-detail-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.blog-detail-content {
  margin-top: 16px;
  color: #425a6c;
  display: grid;
  gap: 10px;
}

.blog-detail-content p {
  margin: 0;
}

.blog-detail-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1100px) {
  .blog-hub-hero {
    grid-template-columns: 1fr;
  }

  .blog-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-hub-main,
  .blog-detail-main {
    padding-top: 100px;
  }

  .blog-hub-grid {
    grid-template-columns: 1fr;
  }

  .blog-hub-hero-copy,
  .blog-detail-shell {
    padding: 16px;
  }
}
