/* ===========================
   Profile Page
=========================== */
.profile-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* ===========================
   Profile Top (基本情報)
=========================== */
.profile-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}

.profile-top__img img {
  width: 100%;
  border-radius: 4px;
}

.profile-top__label {
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.profile-top__name {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.3;
}

.profile-top__name span {
  display: block;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ===========================
   Profile Table
=========================== */
.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.profile-table th {
  width: 120px;
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
}

/* ===========================
   Profile Section Block (芸歴など)
=========================== */
.profile-section-block {
  margin-bottom: 72px;
}

.profile-section-block__title {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.profile-section-block__kamon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ===========================
   Career List
=========================== */
.career-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.career-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--color-border);
}

.career-item__label {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  padding: 16px 16px 16px 0;
}

.career-item__body {
  padding: 16px 0;
  line-height: 1.9;
}

.career-item__body p {
  font-size: 15px;
  margin-bottom: 4px;
}

/* ===========================
   Profile Gallery
=========================== */
.profile-gallery {
  margin-bottom: 40px;
}

.profile-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.profile-gallery__grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .profile-top {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .profile-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-top__img {
    max-width: 280px;
    margin: 0 auto;
  }

  .profile-top__name {
    font-size: 26px;
  }

  .career-item {
    grid-template-columns: 1fr;
  }

  .career-item__label {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .career-item__body {
    padding-top: 0;
  }

  .profile-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
