/* GRID (2 kolom tetap) */
.pariwisata {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px;
  border-radius: 15px;
}

/* ITEM */
.post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: #000;
}

/* HILANGKAN UNDERLINE SEMUA KONDISI */
.post-item,
.post-item:hover,
.post-item:focus,
.post-item:visited {
  text-decoration: none;
  color: #000;
}

/* IMAGE */
.post-thumb {
  width: 120px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.post-content {
  flex: 1;
}

.post-category {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.post-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* 🔥 HOVER FIX (INI YANG PENTING) */
.post-item:hover * {
  color: #DC0000 !important;
}

/* OPTIONAL: TRANSISI BIAR HALUS */
.post-item * {
  transition: 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 847px){
  .pariwisata {
    padding: 0;
  }
  
  .post-item {
    display: block;
  }

  .post-thumb {
    width: 100%;
    height: 50%;
  }

  .post-title {
    font-size: 13px;
  }
}