/* =========================================================
 * video-cover.css (PRO)
 * - 동영상 Archive 표지(대표 페이지) 전용
 * - 1440 layout-inner 기준
 * ========================================================= */

.page-video-cover .site-main{ padding: 0; }
.page-video-cover .layout-inner.layout-1440{ padding: 16px 16px 26px; }

/* 공통 카드 톤 */
.page-video-cover .card{
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.35);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  background:#fff;
}

/* HERO */
.v-hero{
  padding: 18px;
  display:flex;
  justify-content:space-between;
  gap: 18px;
  align-items:flex-start;
}

.v-title{
  margin:0;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.5px;
  color: rgba(15,23,42,.92);
}
.v-sub{
  margin: 8px 0 12px;
  color: rgba(15,23,42,.68);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.55;
}

/* Search */
.v-search{
  display:flex;
  align-items:center;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.v-input{
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.55);
  background:#fff;
  color:#0f172a;
  -webkit-text-fill-color:#0f172a;
  font-weight: 800;
  outline: none;
}

.v-input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.v-input::placeholder{
  color: rgba(15,23,42,.45);
  font-weight: 700;
}

.v-btn{
  flex: 0 0 auto;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.55);
  background:#fff;
  color:#0f172a;
  -webkit-text-fill-color:#0f172a;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
@media (hover:hover){
  .v-btn:hover{ background: rgba(15,23,42,.04); }
}

@media (max-width: 420px){
  .v-search{ gap: 8px; }
  .v-input{ padding: 0 12px; border-radius: 12px; font-size: 14px; }
  .v-btn{ padding: 0 12px; font-size: 13px; }
}

.v-tip{ margin-top: 10px; display:flex; gap:8px; flex-wrap:wrap; }
.v-pill{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.18);
  color: rgba(37,99,235,.95);
  font-weight: 900;
  font-size: 12px;
}

/* HERO Actions */
.v-hero-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
}
.v-cta{
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.55);
  background:#fff;
  font-weight: 1000;
  text-decoration:none;
  color: rgba(15,23,42,.86);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.v-cta-primary{
  background:#2563eb;
  border-color:#2563eb;
  color:#fff;
}
@media (hover:hover){
  .v-cta:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15,23,42,.10);
  }
  .v-cta-primary:hover{
    filter: brightness(1.02);
    box-shadow: 0 12px 26px rgba(37,99,235,.24);
  }
  .v-cta:active{ transform: translateY(0); box-shadow:none; }
}

/* Sections */
.v-section{ margin-top: 16px; }
.v-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 12px;
  margin: 0 2px 10px;
}
.v-h2{
  margin:0;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
}
.v-muted{
  color: rgba(15,23,42,.60);
  font-weight: 800;
  font-size: 13px;
}

/* Category cards */
.v-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v-card{
  border-radius: 18px;
  padding: 12px 14px;
  padding-right: 84px;
  text-decoration:none;
  border: 1px solid rgba(148,163,184,.35);
  background: linear-gradient(135deg, rgba(241,245,249,.95), rgba(255,255,255,.9));
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform .12s ease, box-shadow .12s ease;
  position: relative;
}
.v-card-title{
  font-weight: 1000;
  font-size: 16px;
  color: rgba(15,23,42,.92);
}
.v-card-desc{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  font-weight: 800;
  line-height:1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-card-go{
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 1000;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  color: rgba(37,99,235,.95);
  border: 1px solid rgba(37,99,235,.18);
  text-decoration: none;
}
@media (hover:hover){
  .v-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15,23,42,.10);
  }
  .v-card:hover .v-card-go{
    background: rgba(37,99,235,.16);
    border-color: rgba(37,99,235,.28);
  }
}

/* 카드별 톤 */
.v-card--group{ background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(255,255,255,.95)); }
.v-card--family{ background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(255,255,255,.95)); }
.v-card--kids{  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(255,255,255,.95)); }
.v-card--events{background: linear-gradient(135deg, rgba(168,85,247,.10), rgba(255,255,255,.95)); }

@media (max-width: 980px){
  .v-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .v-cards{ grid-template-columns: 1fr; }
}

/* Recent */
.v-recent{ padding: 14px; }

.v-empty{
  padding: 18px 12px;
  text-align:center;
  color: rgba(15,23,42,.62);
  font-weight: 900;
}
.v-empty a{ color: rgba(37,99,235,.95); text-decoration:none; }
@media (hover:hover){ .v-empty a:hover{ text-decoration:underline; } }

.v-empty-actions{
  margin-top: 8px;
  display:flex;
  gap: 10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.v-empty-actions a{ color: rgba(37,99,235,.95); text-decoration:none; font-weight: 1000; }
@media (hover:hover){ .v-empty-actions a:hover{ text-decoration: underline; } }
.v-empty-dot{ opacity:.35; font-weight: 900; }

/* Recent grid: 동영상은 4열 카드 느낌(사진 6열보다 큼) */
.v-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px){
  .v-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .v-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .v-grid{ grid-template-columns: 1fr; }
}

.v-thumb{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(241,245,249,.7);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  text-decoration:none;
  color: inherit;
}

.v-thumb-media{
  position: relative;
  background: #0b1220;
  aspect-ratio: 16 / 9;
  overflow:hidden;
}
.v-thumb-media video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02);
}

.v-thumb-badge{
  position:absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37,99,235,.92);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(15,23,42,.25);
}

.v-thumb-meta{
  padding: 10px 12px 12px;
}
.v-thumb-name{
  font-weight: 1000;
  font-size: 13px;
  color: rgba(15,23,42,.92);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.v-thumb-sub{
  margin-top: 6px;
  font-weight: 800;
  font-size: 11px;
  color: rgba(15,23,42,.55);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* breadcrumb 얇게(사진첩과 동일 톤) */
.page-video-cover .page-top{
  padding: 4px 0 !important;
  margin: 0 !important;
}
.page-video-cover .page-top-inner{
  min-height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.page-video-cover .breadcrumb{ margin: 0 !important; }
.page-video-cover .site-main{ padding-top: 0 !important; }
.page-video-cover .v-hero{ margin-top: 6px; }

/* =========================
   Video Modal (FINAL)
========================= */
.vmodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.vmodal[hidden]{ display:none; }

.vmodal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}

.vmodal-box{
  position: relative;
  max-width: 960px;
  margin: 6vh auto;
  background:#000;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.vmodal-box video{
  width:100%;
  height:auto;
  max-height: 80vh;
  display:block;
  background:#000;
}

.vmodal-close{
  position:absolute;
  top:8px;
  right:8px;
  width:36px;
  height:36px;
  border-radius:999px;
  border:none;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

/* 썸네일 */
.v-thumb{
  position:relative;
  border-radius:14px;
  background:#e5e7eb;
  aspect-ratio: 9 / 16;
  cursor:pointer;
  overflow:hidden;
}

.v-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#fff;
  background: rgba(0,0,0,.25);
}

.v-thumb{
  aspect-ratio: 4 / 3; /* 기본 세로 */
  background: linear-gradient(135deg, rgba(15,23,42,.08), rgba(255,255,255,.9));
}

/* 가로 영상도 깔끔하게 보이도록(썸네일은 그냥 박스 + 플레이 버튼) */
.v-play{
  border-radius: 999px;
  width: 64px;
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.v-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

@media (max-width:1100px){ .v-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width:720px){  .v-grid{ grid-template-columns: repeat(2, 1fr); } }

.v-thumb{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.35);
  background: rgba(241,245,249,.85);

  /* ✅ 세로영상 기본 비율 */
  aspect-ratio: 9 / 16;

  /* ✅ 지금처럼 “너무 길게” 늘어나는 것 방지 */
  max-height: 360px;
  cursor: pointer;
}

.v-thumb-video{
  width:100%;
  height:100%;
  object-fit: cover;  /* 세로/가로 섞여도 보기 좋게 */
  display:block;
}

.v-play{
  position:absolute;
  top: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(15,23,42,.38);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  backdrop-filter: blur(6px);
}

/* video_cover.css */

.v-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.v-item{
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.v-item video{
  width:100%;
  height:100%;
  display:block;
  background:#000;
  aspect-ratio: 9 / 16; /* 세로영상 기준 (손주 영상 최적) */
  object-fit:cover;
}

@media (max-width: 1100px){
  .v-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .v-grid{ grid-template-columns: repeat(2, 1fr); }
}

.page-video-cover .v-tabs{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  margin: 12px 2px 6px;
}

.page-video-cover .v-tab{
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.55);
  background: rgba(255,255,255,.9);
  color: rgba(15,23,42,.78);
  font-weight: 900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
}

.page-video-cover .v-tab.is-active{
  background:#2563eb;
  border-color:#2563eb;
  color:#fff;
}

@media (hover:hover){
  .page-video-cover .v-tab:hover{
    background: rgba(15,23,42,.04);
  }
  .page-video-cover .v-tab.is-active:hover{
    filter: brightness(1.02);
  }
}

.page-video-cover .v-hero{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
}

.page-video-cover .v-hero-right{
  min-width: 320px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 10px;
}

.page-video-cover .v-tip-right{
  justify-content:flex-end;
}

/* 모바일에서는 우측컬럼도 아래로 */
@media (max-width: 720px){
  .page-video-cover .v-hero{ flex-direction:column; }
  .page-video-cover .v-hero-right{
    align-items:flex-start;
    min-width: 0;
  }
  .page-video-cover .v-tip-right{ justify-content:flex-start; }
}

/* 동영상 업로드 가이드 리스트 스타일 */
.v-guide {
  list-style: none;         /* 기본 불렛 제거 */
  padding: 0 50px;
  margin: 15px 0 0 5px;     /* 상단 및 좌측 여백 조절 */
}

.v-guide li {
  font-size: 14px !important; /* 요청하신 13px 적용 */
  color: #475569;             /* 세련된 슬레이트 그레이 색상 */
  line-height: 1.35;           /* 줄 간격을 넓혀 읽기 편하게 조절 */
  display: flex;
  align-items: center;        /* 아이콘과 텍스트 중앙 정렬 */
  gap: 8px;                   /* 아이콘과 글자 사이 간격 */
  margin-bottom: 4px;         /* 항목 간 간격 */
}

/* 강조 텍스트가 있을 경우를 대비 */
.v-guide li strong {
  color: #1e293b;
  font-weight: 600;
}
/* =========================
   Quick 3 (빠른 이동)
========================= */
.v-quick3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}

.v-qbtn{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid #dbe6ff;
  background:#fff;
  text-decoration:none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.v-qbtn:hover{
  transform: translateY(-1px);
  border-color:#bcd0ff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .10);
}

.v-qbtn-title{
  font-weight:800;
  font-size:16px;
  color:#0f172a;
}

.v-qbtn-desc{
  font-size:13px;
  color:#64748b;
}

.v-qbtn-go{
  margin-top:auto;
  font-size:13px;
  font-weight:700;
  color:#2f6bff;
}

.v-qbtn--group{ background: #f5f8ff; }
.v-qbtn--kids{  background: #fff7ed; }
.v-qbtn--events{background: #f1f9ff; }

@media (max-width: 980px){
  .v-quick3{ grid-template-columns: 1fr; }
}

/* =========================
   Quick 3 (빠른 이동 카드)
========================= */
.v-quick3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}

.v-qbtn{
  position:relative;              /* ← 중요 */
  display:block;
  padding:16px 18px 18px;
  border-radius:16px;
  border:1px solid #dbe6ff;
  background:#fff;
  text-decoration:none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.v-qbtn:hover{
  transform: translateY(-1px);
  border-color:#bcd0ff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .10);
}

/* 제목 / 설명 */
.v-qbtn-title{
  font-weight:800;
  font-size:16px;
  color:#0f172a;
}

.v-qbtn-desc{
  margin-top:4px;
  font-size:13px;
  color:#64748b;
}

/* 🔥 열기 → 우측 상단 배치 */
.v-qbtn-go{
  position:absolute;
  top:14px;
  right:16px;
  font-size:13px;
  font-weight:700;
  color:#2f6bff;
}

/* 톤 */
.v-qbtn--group{ background:#f5f8ff; }
.v-qbtn--kids{ background:#fff7ed; }
.v-qbtn--events{ background:#f1f9ff; }

/* 모바일 */
@media (max-width: 980px){
  .v-quick3{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
 * Quick Section – Dashboard Professional Style
 * ========================================================= */

/* 상단 통합 헤더 컨테이너 */
.archive-header {
  padding: 18px 25px; /* 기존 24px -> 18px로 상하 여백 축소 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /* 순백색 카드 */
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* 은은한 그림자 */
}

/* 왼쪽 영역 스타일 */
.header-left { flex: 1; max-width: 500px; }
.v-title { font-size: 22px; font-weight: 800; color: #1e293b; margin-bottom: 4px; }
.v-sub { font-size: 13px; color: #64748b; margin-bottom: 16px; }

/* 슬림 검색창 */
.v-search-slim { display: flex; gap: 8px; margin-bottom: 12px; }
.v-input-slim {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}
.v-btn-slim {
  padding: 0 18px;
  background: #334155;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  height: 36px; /* 높이를 40px -> 36px로 축소하여 슬림화 */
  border-radius: 8px;
}

/* 오른쪽 아이콘형 카드 */
.header-right { display: flex; align-items: center; gap: 24px; }
.mini-grid { display: flex; gap: 15px; }
.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  background: #f1f5f9; /* 연한 배경색 */
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.mini-card:hover { 
  background: #eff6ff; 
  transform: translateY(-3px);
  border: 1px solid #3b4fd8; 
  box-shadow:0 10px 22px rgba(37,99,235,.12);
}


.mini-ico { font-size: 24px; margin-bottom: 6px; }
.mini-name { font-size: 13px; font-weight: 700; color: #1e293b; }

/* 액션 버튼 슬림화 */
.header-actions { display: flex; flex-direction: column; gap: 8px; }
.act-btn {
  padding: 10px 20px; /* 기존보다 상하좌우 여백 확대 */
  font-size: 13.5px;    /* 12px -> 13px로 키워 가독성 확보 */
  font-weight: 800;   /* 글씨를 더 두껍게 */
  min-width: 80px;    /* 최소 너비를 지정해 버튼 크기 통일 */
  font-size: 12px;
  text-align: center;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;

}
.act-btn.primary { background: #3b4fd8; color: #fff; }

/* 미니 가이드 */
.v-guide-mini { font-size: 12px; color: #94a3b8; display: flex; gap: 8px; }
.v-guide-mini .sep { color: #e2e8f0; }

/* 반응형 */
@media (max-width: 1024px) {
  .archive-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .header-right { width: 100%; justify-content: space-between; }
}

.v-quick-card{
  transition: all .18s ease;
}

/* ===================================================================================/
/* ===== Cover dropdown (Family) ===== */
.v-cover-dd{
  position: relative;
}

.v-cover-card--dd{
  position: relative;
  padding-right: 34px; /* caret 공간 */
}

.v-cover-caret{
  position:absolute;
  right:14px;
  top:14px;
  font-size:14px;
  opacity:.65;
}

.v-dd-menu{
  position:absolute;
  left:0;
  top: calc(100% + 10px);
  width: min(260px, 92vw);
  padding:10px;
  border-radius:16px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
  background:#fff;
  z-index: 50;
  display:none;
}

.v-cover-dd.is-open .v-dd-menu{ display:block; }

.v-dd-item{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:#0f172a;
}

.v-dd-item:hover{
  background:#f1f5ff;
}

.v-dd-sep{
  height:1px;
  background: rgba(15,23,42,.08);
  margin:8px 6px;
}

/* 모바일에서도 메뉴가 카드 위로 튀지 않게 */
@media (max-width: 520px){
  .v-dd-menu{ width: 92vw; }
}

.v-cover-dd{ position:relative; }
.v-dd-menu{
  position:absolute;
  left:0;
  top: calc(100% + 8px);
  min-width: 260px;
  padding:10px;
  z-index: 80;
  display:none;
}
.v-cover-dd.is-open .v-dd-menu{ display:block; }

/* 메뉴 위에 마우스 올려도 클릭 잘 되게 */
.v-dd-menu{ pointer-events:auto; }

/* 카드 오른쪽 정렬된 영역이라면 메뉴를 카드 오른쪽에 붙임 */
.v-dd-menu{
  left:auto;
  right:0;
}

/* 가족영상 mini-card 드롭다운 */
.mini-dd{ position: relative; display:inline-block; }
.mini-card--dd{ position:relative; padding-right:28px; } /* caret 공간 */
.mini-card--dd .mini-caret{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:12px;
  opacity:.75;
}

/* 메뉴: mini-card 아래에 뜨도록 */
.mini-dd .v-dd-menu{
  position:absolute;
  right:0;
  top: calc(100% + 8px);
  min-width: 240px;
  z-index: 80;
  display:none;
}
.mini-dd.is-open .v-dd-menu{ display:block; }

.mini-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;

  padding:16px 12px;
}

.mini-ico{
  font-size:22px;
  line-height:1;
}

.mini-name{
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  text-align:center;
}

.mini-card{
  transition:all .2s ease;
}

.mini-card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  background:#eef2ff;
}

/* ===== Mini card dropdown (family) ===== */
.v-cover-dd{ position:relative; display:inline-block; }

/* 손주영상 미니카드와 동일한 카드 톤을 유지한다는 전제 */
.mini-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-decoration:none;
  border:0;
  cursor:pointer;
}

.mini-card--dd{ position:relative; }

/* ✅ 글씨 중앙정렬(요청사항) */
.mini-card .mini-name{
  text-align:center;
  width:100%;
}

/* caret 크게(원하면) */
.mini-card .mini-caret{
  font-size:16px;          /* ← 더 크게 원하면 18~20px */
  line-height:1;
  opacity:.75;
  margin-top:-2px;
}

/* caret 아예 삭제하고 싶으면 아래 한 줄로 끝
.mini-card .mini-caret{ display:none; }
*/

/* 드롭다운 */
.v-dd-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding:10px;
  border-radius:14px;
  z-index:50;

  display:none;            /* 기본 닫힘 */
}

/* 열림 상태 */
.v-cover-dd.is-open .v-dd-menu{ display:block; }

/* 메뉴 아이템 */
.v-dd-item{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  font-size:13px;
}
.v-dd-item:hover{ background:#f1f5f9; }

.v-dd-sep{
  height:1px;
  background: rgba(15,23,42,.08);
  margin:8px 0;
}

/* =========================================================
 * Family video mini-card hover micro-tuning
 * - subtle bg brighten
 * - icon: row -> column (no layout shift)
 * - caret rotate 180deg on hover/open
 * ========================================================= */

.page-video-cover .v-cover-dd{
  position: relative;
}

/* ✅ 카드 높이 고정(레이아웃 안 흔들림) */
.page-video-cover .v-cover-card--dd{
  min-height: 86px;               /* 필요하면 82~90px 사이로 미세조정 */
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* ✅ hover 시 배경 아주 미묘하게 밝아지기 */
.page-video-cover .v-cover-dd:hover .v-cover-card--dd,
.page-video-cover .v-cover-dd.is-open .v-cover-card--dd{
  background: #f7f9ff;            /* 미세하게 밝게 */
  border-color: rgba(47,107,255,.35);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

/* ✅ 아이콘/텍스트 영역: 기본은 가로(수평) */
.page-video-cover .v-cover-card--dd .mini-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .18s ease;
}

/* ✅ hover/open 시 아이콘을 “세로로 보이게” (줄바꿈/스택 느낌)
   - 실제로는 transform + letter-spacing으로 자연스럽게 보이게 하는 방식
   - 이미 아이콘이 여러 줄(이모지 스택)이라면 transform만으로도 충분 */
.page-video-cover .v-cover-dd:hover .v-cover-card--dd .mini-ico,
.page-video-cover .v-cover-dd.is-open .v-cover-card--dd .mini-ico{
  transform: translateY(-2px);
}

/* ✅ “가족 영상” 글씨 중앙정렬 유지 */
.page-video-cover .v-cover-card--dd .mini-name{
  text-align: center;
  width: 100%;
}

/* ✅ caret 크기/회전(hover + open) */
.page-video-cover .v-cover-caret{
  display: inline-block;
  margin-left: 6px;
  font-size: 15px;                /* 기존보다 살짝 크게 */
  transition: transform .18s ease;
  transform-origin: 50% 45%;
}

.page-video-cover .v-cover-dd:hover .v-cover-caret,
.page-video-cover .v-cover-dd.is-open .v-cover-caret{
  transform: rotate(180deg);
}

/* (선택) caret이 너무 눈에 띄면 살짝 톤다운 */
.page-video-cover .v-cover-caret{
  opacity: .75;
}
.page-video-cover .v-cover-dd:hover .v-cover-caret,
.page-video-cover .v-cover-dd.is-open .v-cover-caret{
  opacity: 1;
}

/* 우측 카드 줄 컨테이너(클래스명은 너 파일에 맞춰 하나만 적용되면 됨) */
.vc-right, .va-right, .video-right{
  display:flex;
  gap:14px;
  align-items:center;
}

/* 카운터를 행사/여행 "우측"으로 밀기 */
.vc-counter{
  margin-left:auto;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  background:#fff;
}

.vc-counter-left{
  font-size: 13px;
  color: rgba(15,23,42,.70);
  margin-bottom: 6px;
}
.vc-counter-num{ font-size: 18px; font-weight: 800; }
.vc-counter-date{ font-size: 12px; color: rgba(15,23,42,.55); margin-top: 2px; }

.va-ico{
  font-size: 20px;
  margin-bottom: 6px;
}

.vc-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vc-counter{
  display: flex;
  flex-direction: column;
  justify-content: center;   /* 내부 텍스트 중앙 */
  min-width: 170px;
  height: 86px;              /* ⭐ 다른 카드와 동일 높이로 */
  padding: 14px 16px;

  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}

.vc-counter-left{
  font-size: 12px;
  color: rgba(15,23,42,.65);
  margin-bottom: 6px;
}

.vc-counter-num{
  font-size: 20px;
  font-weight: 800;
}

.vc-counter-date{
  font-size: 12px;
  color: rgba(15,23,42,.5);
}

/* 우측 영역 전체: 한 줄 정렬 */
.v-right{
  display:flex;
  align-items:center;
  gap:16px;
}

/* 미니카드 그룹은 가운데로 모으기 */
.v-mini-row{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:center;  /* ⭐ 중앙 정렬 */
  flex: 1 1 auto;          /* ⭐ 남는 공간을 미니카드가 먹고 중앙으로 */
  min-width: 0;
}

/* 카운터는 고정폭 + 가운데 정렬 */
.vc-counter{
  flex: 0 0 auto;
  min-width: 190px;
  height: 86px;            /* 미니카드 높이와 맞추고 싶으면 조정 */
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* 업로드/관리는 오른쪽 끝에 고정 */
.header-actions{
  flex: 0 0 auto;
}

.v-right{
  display:flex;
  flex-direction: column;
  align-items: flex-end;   /* 오른쪽 정렬 */
  gap: 14px;
}

/* 업로드/관리 한 줄 */
.v-actions{
  display:flex;
  gap:10px;
}

/* 카운터는 버튼 아래 */
.vc-counter{
  width: 200px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}





/* 상단 우측 전체: 미니카드 + 패널 */
.v-head-right{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* 미니카드 그룹은 가운데 느낌으로 */
.v-mini-row{
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

/* 우측 패널 */
.v-panel{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* 카운터 카드 (행사·여행 페이지 톤) */
.v-counter{
  width: 160px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
}

.v-counter-label{
  font-size: 12px;
  color: rgba(15,23,42,.55);
  margin-bottom: 6px;
}
.v-counter-num{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.v-counter-date{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(15,23,42,.55);
}

/* 버튼 2개: 한 줄(요청) */
.v-panel-actions{
  display: flex;
  gap: 10px;
}

/* 버튼 크기 균형(카운터 높이와 어울리게) */
.v-panel-actions .act-btn{
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

