main.content {
  background-color: #edf2fd;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 70px; /* 照片左右間隔 */
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px; /* row跟row之間的間隔 */
}

.dm-page {
  width: 100%; /* 圖片大小調整 */
  max-width: 900px;
}

.dm-page img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
  border-radius: 4px;
}

.dm-empty {
  visibility: hidden;
}

@media (max-width: 768px) {
  .dm-spread {
    grid-template-columns: 1fr; /* 手機上改為單欄排列 */
    max-width: 450px; /* 限制手機上的圖片寬度 */
    gap: 20px;
  }
  .dm-empty {
    display: none;
  }
}
