/* ===== Collection Grid for Featured / Music / Scene ===== */

.page-template-collection-grid .contents-section{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

.page-template-collection-grid .page-title{
  text-align: center;
  font-size: 36px;
  letter-spacing: .08em;
  margin: 36px 0 22px;
}

.page-template-collection-grid .contents-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ---- card ---- */
.page-template-collection-grid .content-card{
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset;
}

.page-template-collection-grid .content-card a{
  color: inherit;
  text-decoration: none;
}

.page-template-collection-grid .content-card .card__thumb{
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.page-template-collection-grid .content-card .card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-template-collection-grid .content-card .card-meta{
  padding: 12px 16px 16px;
}

.page-template-collection-grid .content-card .category{
  display: block;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 6px;
}

.page-template-collection-grid .content-card .card__title{
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.page-template-collection-grid .content-card .tags{
  font-size: 11px;
  opacity: .8;
}

/* VIEW MORE ボタン */
.page-template-collection-grid .contents-more{
  display: block;
  margin: 28px auto 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-template-collection-grid .contents-more:hover{
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

/* ---- responsive ---- */
@media (max-width: 1024px){
  .page-template-collection-grid .contents-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px){
  .page-template-collection-grid .contents-section{
    padding-left: 12px; padding-right: 12px;
  }
  .page-template-collection-grid .contents-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-template-collection-grid .page-title{ font-size: 28px; }
}