.container-post {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.comment {
  background: #f9f9f9;
  border-left: 4px solid #357ab8;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.comment-form textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 0.5rem;
}

.rating-form select {
  margin-right: 0.5rem;
}
.container-gallery {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.container-gallery h2 {
  text-align: center;
  color: #357ab8;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.gallery-item img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.gallery-item h3 {
  margin: 0.5rem 0;
  color: #333;
}

.gallery-item .date {
  font-size: 0.9rem;
  color: #777;
}

.no-image {
  background: #ddd;
  color: #555;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}