/* ============================================================
 * 테마7 (쁘띠리본) 전용 CSS (운영)
 *
 * [편집화면 테마 목록 썸네일 높이 정렬]
 * - 쁘띠리본(테마7) 커버는 375×709(0.529) 비율로 다른 테마 썸네일
 *   (780×1688, 0.462)보다 세로가 짧은 카드 디자인임
 * - 썸네일 박스를 다른 테마와 같은 비율(780:1688)로 맞추고 object-fit:fill 로
 *   쁘띠리본 이미지를 세로로 채움 → 하단 공백 없이 높이 정렬 (세로 약 14% 확대)
 * - 마크업: invitation_mobile*.blade.php 의
 *   .theme-type[data-id="theme7"] > .theme-img > img.list-thumbnail
 * - img 선택자는 기본 .list-thumbnail{height:auto} 규칙보다 특이도를 높여야
 *   height:100%(→object-fit:fill)가 적용됨 → .edit-invitation .accordion-content 접두 포함
 * ============================================================ */
.theme-type[data-id="theme7"] .theme-img {
  aspect-ratio: 780 / 1688;
  overflow: hidden;
}
.edit-invitation .accordion-content .theme-type[data-id="theme7"] .theme-img img.list-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
