/* Design Tokens & Reset */
:root {
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --neon-lime: #a6ff00; /* Accurate matching vibrant neon green */
  x--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.manager-profile-section {
  background-color: var(--brand-black);
  padding: 80px 40px;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.profile-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 56px;
  align-items: center;
}

/* Media Card Styling */
.profile-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.8; /* Replicates the exact image frame ratio */
  border-radius: 20px;
  overflow: hidden;
  background-color: #1a1a1a; /* Placeholder while image loads */
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Play Button Over the Chest Area */
.video-play-btn {
  position: absolute;
  bottom: 32%; /* Positioned lower center exactly like the mockup */
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: var(--neon-lime);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-btn:hover {
  transform: translateX(-50%) scale(1.08);
  background-color: #b3ff1a;
}

.play-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-white);
  margin-left: 4px; /* Slight offset to perfectly balance triangle geometry */
}

/* Typography Styling */
.profile-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-heading {
  color: var(--brand-white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 36px 0;
}

.profile-heading .sub-heading {
  display: inline-block;
  margin-top: 4px;
}

/* Pill CTA Button Styling */
.cta-pill-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--neon-lime);
  color: var(--brand-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}

.cta-pill-button:hover {
  opacity: 0.9;
}

.cta-pill-button .arrow {
  font-family: monospace; /* Guarantees standard width/height scaling for the arrow indicator */
  font-size: 14px;
}

/* Responsive Fluid Layout Breakpoint */
@media (max-width: 868px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .profile-media-card {
    max-width: 380px;
  }

  .profile-content {
    align-items: center;
    text-align: center;
  }

  .profile-heading {
    font-size: 38px;
  }
}