/* ===== 若手作家一覧ページ ===== */

.young-artist-archive {
  margin: 48px 0;
  padding: 0 20px;
}

.young-artist-archive > .container {
  max-width: 1160px;
  margin: 0 auto;
}

.young-artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.young-artist-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.young-artist-thumb {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #f6f3ea;
}

.young-artist-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.young-artist-card:hover .young-artist-thumb img {
  transform: scale(1.03);
}

.young-artist-card .young-artist-name {
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
}

.young-artist-card:hover .young-artist-name {
  text-decoration: underline;
}

.young-artist-card .young-artist-kana {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* ===== Bootstrap tab-pane 表示制御（Bootstrap CSS 非ロード補完） ===== */

.tab-content > .tab-pane         { display: none; }
.tab-content > .tab-pane.active  { display: block; }

/* ===== 若手作家 個別プロフィールページ ===== */

.young-artist-intro-bar {
  background: #faf8f3;
  border-bottom: 1px solid #e0d8c8;
  padding: 24px 0;
  margin-bottom: 0;
}

.young-artist-intro-bar > .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}

.young-artist-title {
  font-size: 22px;
  margin: 0;
  font-weight: bold;
}

.young-artist-title .kana {
  font-size: 14px;
  font-weight: normal;
  color: #555;
  margin-left: 6px;
}

.young-artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.young-artist-links a {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #999;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.young-artist-links a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ===== gendai 情報タブ ===== */

.gendai-name-block { flex: 1; }

.gendai-name-sub {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.gendai-info {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.gendai-portrait {
  flex-shrink: 0;
  width: 260px;
}

.gendai-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.gendai-bio-career { flex: 1; }

.gendai-bio {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

.gendai-career { margin-top: 32px; }

.gendai-section-title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.gendai-career-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.gendai-career-table th { width: 4em; padding: 5px 12px 5px 0; font-weight: normal; color: #888; white-space: nowrap; vertical-align: top; }
.gendai-career-table td { padding: 5px 0; line-height: 1.6; }

/* ===== タブ（Bootstrap CSS 非ロード補完） ===== */

.young-artist-tabs {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1160px;
  border-bottom: 2px solid #c8b99a;
  overflow: hidden;
}

.young-artist-tabs > li {
  float: left;
  margin-bottom: -2px;
}

.young-artist-tabs > li > a {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #666;
  padding: 10px 24px;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

.young-artist-tabs > li > a:hover {
  color: #333;
}

.young-artist-tabs > li.active > a,
.young-artist-tabs > li.active > a:hover,
.young-artist-tabs > li.active > a:focus {
  color: #333;
  border-bottom: 2px solid #333;
  margin-bottom: -2px;
  font-weight: bold;
}

.young-artist-tab-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px;
}

.tab-no-content {
  color: #999;
  font-size: 13px;
  padding: 48px 0;
  text-align: center;
}

/* ===== 動画グリッド ===== */

.young-artist-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-item .video-embed {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-item .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-item .video-title {
  margin-top: 8px;
  font-size: 13px;
  color: #333;
}

/* ===== レスポンシブ ===== */

@media screen and (max-width: 768px) {
  .young-artist-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gendai-info {
    flex-direction: column;
    gap: 24px;
  }

  .gendai-portrait { width: 180px; }


}

@media screen and (max-width: 480px) {
  .young-artist-archive {
    padding: 0 12px;
  }

  .young-artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .young-artist-tabs > li > a {
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .young-artist-video-grid {
    grid-template-columns: 1fr;
  }
}
