
/* ===== Layout spacing adjustments ===== */
.waza-single .ws-header .ws-title{ margin-bottom: 14px; }
.waza-single .ws-video-gallery{ margin-top: 8px; margin-bottom: 18px; }
.waza-single .ws-video-gallery .wvg-thumbs{ margin-top: 10px; }
.waza-single .ws-basic{ margin-top: 22px; margin-bottom: 18px; }

/* ===== Compact basic-info card on desktop ===== */
@media (min-width: 1024px){
  .waza-single .ws-basic{
    padding: 10px 12px;
    border-radius: 8px;
  }
  .waza-single .ws-basic h2{
    font-size: 1rem;
    margin: 0 0 .4rem;
  }
  .waza-single .ws-basic-table th,
  .waza-single .ws-basic-table td{
    padding: .35rem .5rem; /* コンパクト化 */
  }
  .waza-single .ws-basic-table th{ width: 8em; }
}

/* ===== Keep main video 16:9, thumbnails small (from previous patch) ===== */
.waza-single .ws-video-gallery .wvg-main{
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
@supports not (aspect-ratio: 1 / 1){
  .waza-single .ws-video-gallery .wvg-main{ padding-bottom:56.25%; height:0; }
}
.waza-single .ws-video-gallery .wvg-main iframe,
.waza-single .ws-video-gallery .wvg-main video,
.waza-single .ws-video-gallery .wvg-main .wp-video,
.waza-single .ws-video-gallery .wvg-main .embed-holder{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover;
}

.waza-single .ws-video-gallery .wvg-thumbs{ 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  grid-auto-rows: 96px; 
  gap: 8px; 
}
.waza-single .ws-video-gallery .wvg-thumb{
  display:block; width:100%; height:100%; padding:0;
  border:1px solid #e5e5e5; border-radius:8px; overflow:hidden; background:#fff;
}
.waza-single .ws-video-gallery .wvg-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.waza-single .ws-video-gallery .wvg-thumb .ttl{ display:none!important; }
.waza-single .ws-video-gallery .wvg-thumb.is-active{ outline: 2px solid #4a8; outline-offset: 2px; }


/* 基本情報テーブルの調整（正しいクラスに適用） */
.waza-single .ws-basic-table{
  width: 100%;
  max-width: 500px !important;   /* コンパクト */
 /* margin: 0 0 0 20px !important;  左から20px余裕を持たせて左寄せ */
  border-collapse: collapse;
}

.waza-single .ws-basic-table th,
.waza-single .ws-basic-table td{
  font-size: 1rem;        /* 文字サイズを標準に戻す */
  padding: 0.5rem 0.75rem;
}

.waza-single .ws-basic-table th{
  width: 35%;
  text-align: left;
  white-space: nowrap;
}

.waza-single .ws-basic-table td{
  width: 65%;
}