.paket-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 20px;
}

.paket-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.paket-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.paket-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 8px;
}

.paket-body {
  padding: 20px;
  flex: 1;
}

.paket-body h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #c2410c;
}

.paket-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.paket-btn {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.paket-btn:hover {
  background: #005bb5;
}
