.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
  padding: 0 0 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 61, 145, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(7, 26, 51, 0.12);
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  background: #eef4ff;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.18), rgba(11, 61, 145, 0.22)),
    #e8f1ff;
}

.blog-card__body { padding: 1rem 1.05rem 1.15rem; }
.blog-card__body h2 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.blog-card__body p {
  margin: 0;
  color: #5a6b82;
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-empty { color: #5a6b82; }

.blog-article {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.blog-meta {
  color: #5a6b82;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.blog-feature {
  margin: 0 0 1.4rem;
  border-radius: 18px;
  overflow: hidden;
}

.blog-feature img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-content {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #0e1c2f;
}

.blog-content h2,
.blog-content h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 0.55rem;
}

.blog-content p { margin: 0 0 1rem; }

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
}

.blog-content th,
.blog-content td {
  border: 1px solid rgba(11, 61, 145, 0.14);
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.blog-content th {
  background: #eef4ff;
  font-size: 0.9rem;
}

.blog-content img {
  max-width: 100%;
  border-radius: 14px;
}
