.blog-section { padding: var(--section-py) var(--px); background: var(--light) }

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-more:hover { color: var(--black); border-color: var(--black) }

.blog-more svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform .2s;
}

.blog-more:hover svg { transform: translateX(3px) }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 20px);
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0, 0, 0, .09) }

.blog-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--light) }

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-thumb img { transform: scale(1.05) }

.blog-body { padding: clamp(12px, 1.5vw, 16px) }

.blog-title {
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .blog-header { align-items: center }
}
