/* Gallery Styles */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.gallery-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-item figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  max-width: 250px;
  color: #666;
}

.project-item {
  margin-bottom: 1rem;
}

.project-item-link-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

.project-item-link {
  color: #0d1b2a;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: #a3c8ef;
}

.project-item-link:hover {
  background: #91bceb;
}
