.iow-pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.iow-pc-item {
  text-align: center;
}

.iow-pc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.iow-pc-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.iow-photo-upload-form {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.iow-pc-message {
  margin: 20px;
  padding: 10px;
  border-radius: 4px;
}

.iow-pc-message.success { background: #d4f8d4; color: #2d662d; }
.iow-pc-message.error { background: #f8d4d4; color: #662d2d; }
