/* Profile Page Specific Stylesheet */

.profile-page-wrapper {
  min-height: 100vh;
  height: auto !important;
  overflow-y: auto !important;
}

/* Main Profile Content Layout */
.profile-content {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-top: 44px;
  margin-bottom: 80px;
}

/* SECTION 1: HERO & PORTRAIT (9 Columns) */
.profile-hero-section {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: var(--grid-gutter);
  align-items: start;
}

.hero-text-col {
  grid-column: 1 / 4;
}

.profile-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.hero-photo-col {
  grid-column: 4 / 7;
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #000000;
  position: relative;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.portrait-frame:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.hero-bio-col {
  grid-column: 7 / 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 40px;
  gap: 14px;
}

.founder-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}

.founder-bio {
  font-size: 11.5px;
  font-weight: 400;
  color: #555555;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.founder-bio strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* SECTION 2: SELECTED CLIENTS AND BROADCASTERS (9 Columns) */
.profile-section {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: var(--grid-gutter);
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.section-label-col {
  grid-column: 1 / 4;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-content-col {
  grid-column: 4 / 10;
  display: flex;
  flex-direction: column;
}

.clients-list-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.8;
  letter-spacing: 0.02em;
  max-width: 95%;
}

.cta-link-wrapper {
  margin-top: 36px;
}

.profile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.profile-cta-btn:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.cta-arrow {
  font-size: 18px;
  line-height: 1;
}

/* Mobile & Tablet Responsive Rules */
@media (max-width: 991px) {
  .profile-content {
    gap: 50px;
    padding-top: 24px;
  }

  .profile-hero-section,
  .profile-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 28px;
  }

  .hero-text-col,
  .hero-photo-col,
  .hero-bio-col,
  .section-label-col,
  .section-content-col {
    width: 100%;
  }

  .hero-bio-col {
    padding-top: 0;
  }

  .profile-title {
    font-size: 36px;
  }

  .clients-list-text {
    font-size: 13px;
  }
}
