/* public\css\pages\collections.css
 */
.collection-story-section {
  padding: 0;
}

.collection-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0;
}

.collection-story-content {
  padding: 80px 60px;
  color: #111;
}

.collection-story-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.collection-story-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.collection-story-media {
  position: relative;
  width: 100%;
  padding-bottom: 76.44%; /* 584 ÷ 764 × 100% = 76.44% */
  height: 0;
  overflow: hidden;
}

.collection-story-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .collection-story-grid {
    grid-template-columns: 1fr;
  }

  .collection-story-content {
    padding: 50px 30px;
    text-align: center;
  }

  .collection-story-media {
    order: 1; /* 圖片在上 */
  }

  .collection-story-content {
    order: 2; /* 文字在下 */
  }

  .collection-story-media img {
    height: 260px;
  }
}
