/* Partner Stories Grid Styles */
.psg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.psg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.psg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.psg-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.psg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 0;
  font-size: 13px;
  color: #777;
}

.psg-category {
  padding: 4px 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
}

.psg-title {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 16px 16px;
}

.psg-title a {
  color: #111;
  text-decoration: none;
}

.psg-title a:hover {
  color: #0073aa;
}

.psg-pagination {
  text-align: center;
  margin-top: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.psg-pagination a,
.psg-pagination span {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  background: #f5f5f5;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
}

.psg-pagination .current {
  background: #0073aa;
  color: #fff;
}

/* สีพื้นหลังหมวดหมู่แบบสุ่ม */
.cat-news { background: #FF7A00; }
.cat-review { background: #0073aa; }
.cat-guide { background: #00BFA5; }
.cat-tips { background: #8E24AA; }
