@charset "utf-8";
/* ===== 의성중부교회 최신 설교 영상 카드 : worship_list ===== */

.worship_main { width: 100%; }
.worship_main * { box-sizing: border-box; }

.worship_main .wm_video { display: block; position: relative; width: 100%; border-radius: 10px; overflow: hidden; background: #000; box-shadow: 0 6px 20px rgba(0,0,0,.10); transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s; }
.worship_main .wm_video:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,0,0,.20); }
.worship_main .wm_video + .wm_video { margin-top: 20px; }
.worship_main .wm_video img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.worship_main .wm_video:hover img { transform: scale(1.045); }
.worship_main .wm_video .wm_noimg { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 16 / 9; color: #ddd; background: #1c1c1c; font-size: 16px; padding: 0 16px; text-align: center; }

.worship_main .playbt { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 76px; height: 54px; background: rgba(0,0,0,.68); border-radius: 14px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; transition: background .2s, transform .2s; }
.worship_main .wm_video:hover .playbt { background: #ff0000; transform: translate(-50%,-50%) scale(1.05); }

.worship_main .wm_new { position: absolute; right: 12px; top: 12px; background: #ff3b30; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 5px; letter-spacing: .5px; }

.worship_main .wm_empty { cursor: default; box-shadow: none; }

/* 유튜브 팝업 */
#worship_yt_modal { display: none; position: fixed; inset: 0; z-index: 100000; }
#worship_yt_modal.on { display: block; }
#worship_yt_modal .wym_dim { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
#worship_yt_modal .wym_box { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 92%; max-width: 900px; }
#worship_yt_modal .wym_video { position: relative; padding-top: 56.25%; background: #000; border-radius: 8px; overflow: hidden; }
#worship_yt_modal .wym_video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
#worship_yt_modal .wym_close { position: absolute; right: -6px; top: -46px; width: 40px; height: 40px; background: none; border: 0; color: #fff; font-size: 34px; line-height: 1; cursor: pointer; }
