/* === STYLE02 CATEGORY BLOCK === */

.style02-wrapper {
  padding: 0px;
}

.style02-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.style02-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.style02-arrow {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #007bff;
  color: white;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-size: 16px;
}

/* Post Item */
.style02-post {
  display: flex;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.style02-post:hover {
  background: #f1f1f1;
}

/* Thumbnail */
.style02-thumb {
  width: 160px;
  min-width: 160px;
  overflow: hidden;
}

.style02-thumb img.style02-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Content */
.style02-content {
  flex: 1;
  margin-left: 10px;
  margin-right: 10px;
}

.style02-excerpt {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.5;
}

.style02-reads {
  color: #888;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .style02-post {
    
  }

  .style02-thumb {
    width: 40%;
    min-width: unset;
    
  }
}
