
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(18,52,94,.05);
  display: flex;
  flex-direction: column;
}
.blog-card-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.03);
}
.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 13px;
  color: #2451a2;
  background: #eaf1ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.blog-card-date {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
  display: block;
}
.blog-card h2 {
  color: #222222;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card h2 a {
  color: inherit;
}
.blog-card h2 a:hover {
  color: #2451a2;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 20px;
  flex: 1;
}
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-article h2 {
  color: #222222;
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 800;
  margin: 40px 0 14px;
  line-height: 1.25;
}
.blog-article h3 {
  color: #2451a2;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  margin: 28px 0 10px;
  line-height: 1.3;
}
.blog-article p {
  margin-bottom: 18px;
  line-height: 1.75;
}
.blog-img {
  margin: 32px 0;
}
.blog-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(20, 35, 65, .08);
}
.read-suggestion {
  background: #eaf1ff;
  border-left: 4px solid #2451a2;
  padding: 14px 20px;
  margin: 24px 0 30px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: #333;
}
.read-suggestion strong {
  color: #2451a2;
}
.article-meta {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 30px;
}
.blog-article a {
  color: #2451a2;
  text-decoration: underline;
}
.blog-article a:hover {
  color: #a01b1e;
}
.back-article {
  margin: 40px 0 10px;
  padding-top: 24px;
  border-top: 1px solid #e7edf6;
}
.back-article a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2451a2;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.back-article a:hover {
  color: #a01b1e;
}