.section02 {
  padding: 20px;
}

.section02 .post-slider-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.section02 .post-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  max-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.section02 .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.section02 .post-title p {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #333;
  line-height: 22px;
}

.section02 .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.section02 .bookmark {
  font-size: 18px;
  cursor: pointer;
}

/* Desktop: grid */
@media (min-width: 769px) {
  .section02 .post-slider-container {
    flex-wrap: wrap;
    overflow-x: unset;
    justify-content: space-between;
  }

  .section02 .post-card {
    
  }
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
  .section02 .post-slider-container {
    flex-wrap: nowrap;
  }

  .section02 .post-card {
    min-width: 200px;
    max-width: 230px;
  }
  
  .section02 .post-title p {
  font-size: 13px;
}
}
