/* ===== 汎用コンポーネント: 専門家カード + インタビューバナー ===== */
/* 他ページにも挿入可能な独立コンポーネント設計 */

/* --- Section wrapper --- */
.sec-experts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 0;
}

.sec-experts__label {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1A56DB;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-experts__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.5;
  margin: 0 0 12px;
}

.sec-experts__lead {
  text-align: center;
  font-size: 14px;
  color: #6B7A90;
  line-height: 1.8;
  margin: 0 0 48px;
}

/* --- Expert cards grid --- */
.expert-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.expert-card {
  background: #fff;
  border: 1px solid #E2E6ED;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none!important;
  color: inherit!important;
  display: block;
}

.expert-card:hover {
  box-shadow: 0 8px 32px rgba(26, 86, 219, 0.12);
  transform: translateY(-4px);
}

.expert-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f0f4fa;
}

.expert-card__body {
  padding: 20px;
}

.expert-card__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1A56DB;
  margin-bottom: 6px;
  line-height: 1.4;
}

.expert-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 8px;
  line-height: 1.3;
}

.expert-card__name small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #6B7A90;
  margin-top: 2px;
}

.expert-card__desc {
  font-size: 12px;
  color: #6B7A90;
  line-height: 1.7;
  margin: 0;
}

/* --- Interview banners (2-column) --- */
.sec-interviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.sec-interviews__label {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1A56DB;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-interviews__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.5;
  margin: 0 0 32px;
}

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

.interview-banner {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff!important;
  aspect-ratio: 16 / 9;
}

.interview-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background 0.3s ease;
}

.interview-banner:hover::after {
  background: linear-gradient(0deg, rgba(26,86,219,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.interview-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.interview-banner__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.interview-banner__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.interview-banner__names {
  font-size: 11px;
  opacity: 0.85;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .expert-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sec-experts {
    padding: 60px 16px 0;
  }

  .sec-experts__heading {
    font-size: 20px;
  }

  .expert-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .expert-card__body {
    padding: 16px;
  }

  .expert-card__name {
    font-size: 15px;
  }

  .sec-interviews {
    padding: 0 16px 60px;
  }

  .sec-interviews__heading {
    font-size: 18px;
  }

  .interview-banners {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .interview-banner {
    aspect-ratio: 2 / 1;
  }

  .interview-banner__content {
    padding: 16px;
  }

  .interview-banner__title {
    font-size: 14px;
  }
}
