/* squared-image.css */

/* 圖片容器設定 */
.squared-image {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* 圖片樣式設定 */
.squared-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* 懸停放大效果 */
.squared-image img:hover {
  transform: scale(1.03);
}

/* 手機響應式縮小 */
@media (max-width: 600px) {
  .squared-image img {
    width: 120px;
    height: 120px;
  }
}
