
.blog {
  padding: 4em 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.blog-wrap {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.blog h2 {
  padding: 10px 0;
  margin: 0 0 30px;
  background: linear-gradient(to right, #007bff, #ff77e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
  text-align: left;
}

.blog-card {
  display: block;
  background: white;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1.5em 1.6em;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.18);
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 0.8em;
}

.blog-meta time {
  font-weight: 700;
  color: #8B0000;
}

.blog-meta .dot {
  opacity: 0.5;
}

.tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.tag {
  font-size: 0.78em;
  padding: 0.35em 0.7em;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  color: #444;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.15em;
  line-height: 1.35;
  color: #1f2e36;
}

.blog-more {
  margin-top: 1.6em;
}

.blog-link {
  color: #8B0000;
  text-decoration: none;
  font-weight: 700;
}

.blog-link:hover {
  text-decoration: underline;
}

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