/* 案件固有調整（SNSサミット2024登壇レポート） */

/* 表紙: 会場装飾写真をテーマ色でティントして背景に敷く（3テーマ共通で自動追従） */
.slide.cover.photo-cover {
  background-image:
    linear-gradient(180deg,
      color-mix(in srgb, var(--c-bg) 90%, transparent) 0%,
      color-mix(in srgb, var(--c-bg) 97%, transparent) 100%),
    url('../img/venue-backdrop.png');
  background-size: cover;
  background-position: center 30%;
}

/* 会場写真フルブリード＋下部キャプション帯（WS-41）。
   背景画像は各スライドの inline style="background-image:url(...)" で指定する。 */
.slide.photo-full {
  padding: 0;
  justify-content: flex-end;
  gap: 0;
  background-size: cover;
  background-position: center 35%;
}
.photo-full .photo-caption {
  background: color-mix(in srgb, var(--c-section) 90%, transparent);
  color: var(--c-on-section);
  padding: 3cqw 7cqw 4cqw;
  display: flex;
  flex-direction: column;
  gap: 1cqw;
}
.photo-full .photo-caption .slide-h2 { color: var(--c-on-section); }
.photo-full .photo-caption .lead { color: color-mix(in srgb, var(--c-on-section) 90%, transparent); max-width: 100%; }
