/* 영종루터교회 홈페이지 공용 스타일 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500;600;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
  --forest: #26362a;
  --forest-deep: #1a271d;
  --gold: #b3893f;
  --gold-light: #d9b876;
  --cream: #f6f2e8;
  --cream-card: #ffffff;
  --text-main: #2c2a24;
  --text-sub: #6b6558;
  --border-soft: #e4ddca;
  --shadow: 0 6px 20px rgba(38, 54, 42, 0.06);
  --shadow-hover: 0 14px 34px rgba(38, 54, 42, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.75;
  font-weight: 300;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif KR', serif;
  color: var(--forest-deep);
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest-deep);
}

.brand .cross {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 6px;
}

.brand .logo-photo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
}

.brand .logo-icon {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

.brand > span {
  display: inline-block;
  text-align: center;
}

.brand .sub {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  color: var(--text-sub);
  display: block;
  margin-top: -3px;
  letter-spacing: 0.04em;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

nav.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.92rem;
  border-radius: 999px;
  color: var(--text-main);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--gold);
  color: #fff;
}

.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #faf3e2, #f1e2bf 60%);
  color: var(--text-main);
  padding: 108px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 137, 63, 0.16), transparent 70%);
}

/* Hero slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slideshow .slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 720px 520px at 18% 62%, rgba(18, 14, 6, 0.6), transparent 72%),
    linear-gradient(135deg, rgba(42, 32, 16, 0.46), rgba(58, 44, 20, 0.34) 60%);
}

.hero-content { position: relative; z-index: 2; }

.hero-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(243, 239, 226, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.hero-dots button.active {
  background: var(--gold-light);
  width: 22px;
  border-radius: 999px;
}

.hero-photo-credit {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--forest-deep);
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 660px;
}

.hero p.lead {
  max-width: 560px;
  font-size: 1.02rem;
  color: var(--text-sub);
  margin-bottom: 34px;
}

/* 사진 슬라이드쇼 위에 올라가는 히어로 텍스트(홈페이지)는 밝은 색 유지 */
.hero-content-photo .eyebrow { color: var(--gold-light); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.hero-content-photo h1 { color: #fdfbf5; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.75); }
.hero-content-photo p.lead { color: #f1ece0; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(243, 239, 226, 0.5);
  color: #f3efe2;
}

.btn-icon { display: inline-flex; align-items: center; gap: 7px; }
.btn-icon svg { flex-shrink: 0; }

/* Sections */
section { padding: 92px 0; }

.section-head { margin-bottom: 52px; }

.section-head .eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.05rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-head p { color: var(--text-sub); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.card {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card .num {
  color: var(--gold);
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.card h3 { font-size: 1.12rem; margin-bottom: 10px; }

.card p { color: var(--text-sub); font-size: 0.94rem; }

.card .meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* Info strip (home quick info) */
.info-strip {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.info-strip .card-grid { gap: 16px; }

.info-strip .card {
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-strip .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-strip h3 { font-size: 1rem; margin-bottom: 4px; }
.info-strip p { font-size: 0.88rem; color: var(--text-sub); margin: 0; }

/* Quote block */
.quote-block {
  background: var(--cream-card);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 48px 44px;
  position: relative;
  box-shadow: var(--shadow);
}

.quote-block blockquote {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 16px;
}

.quote-block cite {
  color: var(--gold);
  font-size: 0.86rem;
  font-style: normal;
}

/* Timeline / list rows (ministries) */
.row-list { border-top: 1px solid var(--border-soft); }

.row-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.row-item .row-main { flex: 1; min-width: 220px; }

.row-item .row-num {
  color: var(--gold);
  font-family: 'Noto Serif KR', serif;
  font-size: 0.85rem;
  margin-right: 8px;
}

.row-item h3 { font-size: 1.08rem; display: inline; }
.row-item .desc { color: var(--text-sub); font-size: 0.92rem; margin-top: 6px; }

.row-item .row-time {
  text-align: right;
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 500;
  white-space: nowrap;
}

/* Notice / placeholder box */
.notice-box {
  border: 1px dashed var(--gold);
  background: #fbf7ec;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}

.notice-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.notice-box p { color: var(--text-sub); max-width: 480px; margin: 0 auto; }

/* Steps (세례교육과정) */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.step:last-child { border-bottom: none; }

.step .step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Noto Serif KR', serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step h4 { font-size: 1rem; margin-bottom: 2px; }
.step p { font-size: 0.88rem; color: var(--text-sub); }

/* Info table (약력 등) */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th, .info-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: none;
  vertical-align: top;
}

.info-table thead th {
  background: var(--gold);
  color: #fff;
  font-family: 'Noto Serif KR', serif;
  font-weight: 500;
  font-size: 0.86rem;
}

.info-table thead th:first-child { border-radius: 10px 0 0 0; }
.info-table thead th:last-child { border-radius: 0 10px 0 0; }

.info-table td.td-group {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
  border-right: none;
}

.info-table td.td-period {
  color: var(--text-sub);
  white-space: nowrap;
}

.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover { background: var(--cream); }

/* Board (게시판) */
.board-list { display: flex; flex-direction: column; gap: 16px; }

.board-post {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: none;
}

.board-post .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.board-post .post-date { font-size: 0.82rem; color: var(--text-sub); }
.board-post h3 { font-size: 1.1rem; margin-bottom: 10px; }
.board-post .post-body { color: var(--text-sub); font-size: 0.94rem; }

/* 게시판 목록형 표 (일반적인 홈페이지 공지사항 스타일) */
.board-table { width: 100%; border-collapse: collapse; background: var(--cream-card); border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; }
.board-table thead th { background: var(--forest); color: #fff; font-size: 0.86rem; font-weight: 600; text-align: left; padding: 12px 16px; }
.board-table thead th.col-num, .board-table tbody td.col-num { text-align: center; width: 64px; }
.board-table thead th.col-date, .board-table tbody td.col-date { text-align: center; width: 120px; white-space: nowrap; }
.board-table tbody tr { border-bottom: 1px solid var(--border-soft); cursor: pointer; transition: background 0.15s ease; }
.board-table tbody tr:hover { background: var(--cream); }
.board-table tbody tr:last-child { border-bottom: none; }
.board-table tbody td { padding: 13px 16px; font-size: 0.94rem; color: var(--text-main); }
.board-table tbody td.col-num, .board-table tbody td.col-date { color: var(--text-sub); font-size: 0.86rem; }
.board-table tbody td.col-title a { color: var(--text-main); text-decoration: none; }
.board-table tbody td.col-title a:hover { color: var(--forest-deep); }
.board-table .has-image::after { content: "📷"; margin-left: 6px; font-size: 0.8em; opacity: 0.7; }

@media (max-width: 640px) {
  .board-table thead { display: none; }
  .board-table, .board-table tbody, .board-table tbody tr, .board-table tbody td { display: block; width: 100%; }
  .board-table tbody tr { padding: 14px 16px; }
  .board-table tbody td { padding: 2px 0; }
  .board-table tbody td.col-num { display: none; }
  .board-table tbody td.col-date { text-align: left; }
}

/* 게시글 상세보기 */
.post-detail-head { border-bottom: 2px solid var(--border-soft); padding-bottom: 18px; margin-bottom: 24px; }
.post-detail-head h1 { font-size: 1.4rem; margin-bottom: 8px; }
.post-detail-body { color: var(--text-main); font-size: 1rem; line-height: 1.8; white-space: pre-wrap; }
.post-detail-image { width: 100%; max-width: 560px; border-radius: 14px; margin: 20px 0; display: block; }

.youtube-box {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  box-shadow: none;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.youtube-box .yt-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.youtube-box h3 { color: var(--forest-deep); font-size: 1.05rem; margin-bottom: 4px; }
.youtube-box p { color: var(--text-sub); font-size: 0.9rem; margin: 0; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Placeholder tag */
.ph-tag {
  display: inline-block;
  background: var(--border-soft);
  color: var(--text-sub);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

/* Footer */
footer.site-footer {
  background: var(--cream-card);
  color: var(--text-sub);
  padding: 56px 0 30px;
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
}

footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

footer.site-footer h4 {
  color: var(--forest-deep);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

footer.site-footer p, footer.site-footer li { font-size: 0.88rem; color: var(--text-sub); }

footer.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

footer.site-footer a:hover { color: var(--gold); }

.copy-text {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  position: relative;
  width: fit-content;
}

.copy-text:hover { color: var(--gold); }

.copy-text .copy-icon { font-size: 0.8rem; opacity: 0.7; }

.copy-text::after {
  content: attr(data-label);
  position: absolute;
  left: 0;
  bottom: calc(100% + 6px);
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.copy-text.copied::after { opacity: 1; }

.sns-row { display: flex; gap: 10px; margin-top: 6px; }

.sns-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
}

footer .bottom-line {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-sub);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tablet */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero { padding: 72px 0 60px; }
  footer.site-footer .foot-grid { grid-template-columns: 1fr 1fr; }
  .quote-block { padding: 36px 30px; }
}

/* Mobile */
@media (max-width: 760px) {
  .site-header .wrap {
    justify-content: space-between;
    gap: 0;
  }
  nav.main-nav ul {
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 24px 20px;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  nav.main-nav.open ul { display: flex; }
  nav.main-nav a { display: block; }
  .nav-toggle {
    display: block;
    background: none; border: none;
    font-size: 1.4rem;
    color: var(--forest-deep);
    cursor: pointer;
  }
  .brand { font-size: 1rem; }
  .brand .sub { font-size: 0.52rem; }

  .hero { padding: 56px 0 48px; }
  .hero p.lead { font-size: 0.95rem; }
  .hero-dots { margin-top: 28px; }

  section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }

  .card { padding: 24px 20px; }
  .card-grid { gap: 16px; }

  .quote-block { padding: 28px 22px; border-radius: 16px; }
  .quote-block blockquote { font-size: 1.15rem; }

  .youtube-box { padding: 22px; gap: 16px; }
  .youtube-box .yt-icon { width: 44px; height: 44px; font-size: 1.2rem; }

  .notice-box { padding: 26px 20px; }

  .board-post { padding: 20px 22px; }

  .row-item { padding: 20px 0; gap: 10px; }
  .row-item .row-time { text-align: left; }

  /* 표는 좁은 화면에서 가로 스크롤로 처리 */
  .card:has(.info-table) { overflow-x: auto; }
  .info-table { min-width: 480px; }

  footer.site-footer .foot-grid { grid-template-columns: 1fr; }
  footer.site-footer { padding: 44px 0 24px; }
  .info-strip { margin-top: -30px; }

  .btn-row { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
}

/* Small phones */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .hero .eyebrow { font-size: 0.7rem; }
  section { padding: 40px 0; }
  .card { padding: 20px 18px; }
  .quote-block blockquote { font-size: 1.05rem; }
  .youtube-box { padding: 18px; flex-direction: column; align-items: flex-start; text-align: left; }
  .youtube-box .btn { width: 100%; text-align: center; }
}

/* 포스터 갤러리 */
.poster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.poster-card { display: block; text-decoration: none; border-radius: 14px; overflow: hidden; background: var(--cream-card); border: 1px solid var(--border-soft); box-shadow: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.poster-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.poster-thumb { position: relative; aspect-ratio: 3 / 4; width: 100%; background-color: var(--cream); overflow: hidden; }
.poster-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-thumb .poster-thumb-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 0.82rem; text-align: center; padding: 14px; }
.poster-card-body { padding: 14px 16px 18px; }
.poster-card-body h3 { font-size: 0.98rem; margin-bottom: 4px; }
.poster-card-body p { font-size: 0.82rem; color: var(--text-sub); }

/* 포스터 전체 화면 뷰 */
.poster-viewer { min-height: 100vh; background: #0f0f0f; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; position: relative; }
.poster-viewer img { max-width: 100%; max-height: 84vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.poster-viewer .poster-placeholder { width: min(420px, 90vw); aspect-ratio: 3 / 4; background: #1c1c1c; border: 1px dashed rgba(255, 255, 255, 0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.6); text-align: center; padding: 24px; font-size: 0.95rem; line-height: 1.6; }
.poster-viewer .poster-caption { color: #f3efe2; text-align: center; margin-top: 20px; }
.poster-viewer .poster-caption h1 { font-size: 1.3rem; margin-bottom: 4px; }
.poster-viewer .poster-caption p { color: rgba(243, 239, 226, 0.7); font-size: 0.9rem; }
.poster-back { position: fixed; top: 20px; left: 20px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.1); color: #f3efe2; padding: 9px 16px; border-radius: 999px; text-decoration: none; font-size: 0.85rem; backdrop-filter: blur(6px); z-index: 5; }
.poster-back:hover { background: rgba(255, 255, 255, 0.18); }

/* 유튜브 최신 영상 */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.video-card { display: block; text-decoration: none; border-radius: 14px; overflow: hidden; background: var(--cream-card); border: 1px solid var(--border-soft); box-shadow: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; width: 100%; background-color: var(--cream); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb .play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-thumb .play-badge span { width: 44px; height: 44px; border-radius: 50%; background: rgba(10, 10, 10, 0.6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.video-card-body { padding: 14px 16px 18px; }
.video-card-body h3 { font-size: 0.94rem; line-height: 1.5; }

/* 사진첩 */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.gallery-thumb { position: relative; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: var(--cream); cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.2s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb .gallery-thumb-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 0.76rem; text-align: center; padding: 10px; cursor: default; }

.lightbox { position: fixed; inset: 0; background: rgba(10, 10, 10, 0.92); display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; pointer-events: none; transition: opacity 0.2s; z-index: 50; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }

/* 사진첩 앨범(제목 + 여러 사진) */
.album-card { background: var(--cream-card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 22px 24px; margin-bottom: 20px; }
.album-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.album-card .album-meta { color: var(--text-sub); font-size: 0.8rem; margin-bottom: 4px; }
.album-card .album-desc { color: var(--text-sub); font-size: 0.9rem; margin-bottom: 14px; }
.album-card .album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-caption { color: #f3efe2; text-align: center; margin-top: 14px; font-size: 0.9rem; }
