/* ========================================
   SiteHub PROFILE
======================================== */

.sh-profile {
  padding: 80px 20px;

  background:
    color-mix(
      in srgb,
      var(--sh-accent, #49b6c9) 18%,
      #071018
    );

  color: #fff;
}

.sh-profile__inner {
  max-width: 1200px;
  margin: 0 auto;
}


/* 見出し */

.sh-profile__heading {
  margin-bottom: 32px;
}

.sh-profile__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
}

.sh-profile__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.sh-profile__line {
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--sh-accent, #49b6c9);
}


/* ========================================
   PROFILE CARD
======================================== */

.sh-profile__card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: center;

  padding: 32px;
  border: 1px solid #252c33;
  border-radius: 14px;

  background:
  color-mix(
    in srgb,
    var(--sh-accent, #49b6c9) 12%,
    #0b1620
  );
}


/* ========================================
   IMAGE
======================================== */

.sh-profile__visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;

  border-radius: 12px;

  background: #05090d;
}

.sh-profile__visual img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


/* 画像なし */

.sh-profile__placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(var(--sh-accent-rgb, 73,182,201), .16),
      transparent 55%
    ),
    #071018;

  color: rgba(255,255,255,.35);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}


/* ========================================
   CONTENT
======================================== */

.sh-profile__content {
  min-width: 0;
}

.sh-profile__content h3 {
  margin: 0;

  color: #fff;

  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.sh-profile__tagline {
  margin: 14px 0 0;

  color: var(--sh-accent, #49b6c9);

  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.sh-profile__bio {
  margin-top: 24px;

  max-width: 700px;

  color: rgba(255,255,255,.72);

  font-size: 15px;
  line-height: 2;
}


/* ========================================
   STREAM STYLE
======================================== */

.sh-profile__genres {
  margin-top: 32px;
}

.sh-profile__genres-title {
  display: block;

  margin-bottom: 12px;

  color: rgba(255,255,255,.45);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.sh-profile__genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sh-profile__genre-list span {
  display: inline-flex;
  align-items: center;

  min-height: 34px;

  padding: 0 14px;

  border: 1px solid #29343d;
  border-radius: 999px;

  background: rgba(255,255,255,.035);

  color: #fff;

  font-size: 13px;
  font-weight: 600;
}


/* ========================================
   Hover
======================================== */

.sh-profile__card {
  transition:
    border-color .25s ease,
    transform .25s ease;
}

.sh-profile__card:hover {
  border-color: rgba(var(--sh-accent-rgb, 73,182,201), .6);
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 900px) {

  .sh-profile__card {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }

}


/* ========================================
   Mobile
======================================== */

@media (max-width: 700px) {

  .sh-profile {
    width: 100%;
    max-width: 100%;

    padding: 55px 16px;

    box-sizing: border-box;
    overflow-x: hidden;
  }

  .sh-profile__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sh-profile__heading h2 {
    font-size: 26px;
  }

  .sh-profile__card {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    grid-template-columns: 1fr;

    gap: 24px;

    padding: 18px;

    box-sizing: border-box;
  }

  .sh-profile__visual {
    width: 100%;
    max-width: 420px;

    margin: 0 auto;

    aspect-ratio: 1 / 1;
  }

  .sh-profile__content h3 {
    font-size: 28px;
  }

  .sh-profile__tagline {
    font-size: 15px;
  }

  .sh-profile__bio {
    margin-top: 18px;

    font-size: 14px;
    line-height: 1.85;
  }

  .sh-profile__genres {
    margin-top: 24px;
  }

}

/* ========================================
   PROFILE タブレット補正
======================================== */

@media (min-width: 701px) and (max-width: 1024px) {

  .sh-profile,
  .sh-profile__inner,
  .sh-profile__card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .sh-profile {
    padding-left: 20px;
    padding-right: 20px;
    overflow-x: hidden;
  }

  .sh-profile__card {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 28px;
  }

  .sh-profile__content {
    min-width: 0;
  }

}

/* ========================================
   PROFILE 見出し線の二重表示を防止
======================================== */

.sh-profile__heading h2::before,
.sh-profile__heading h2::after {
  display: none !important;
  content: none !important;
}