/* 
 * PORT CLINTON SPONSOR - PRIMARY PLACEMENT SECTION
 * Precision Refinement for Sales-Focus & Clarity
 */

body.pc-portal .pc-sponsor-sections #placements {
  /* Sitting tighter with the hero section by removing redundant top padding */
  padding-top: 0;
  padding-bottom: clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 5;
}

body.pc-portal .pc-sponsor-sections .placement-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  /* Constrain width to 1100px to match hero content rhythm visually */
  max-width: 1100px;
  margin-inline: auto;
}

/* Mock TV Frame Refinements */
body.pc-portal .pc-sponsor-sections .mock-tv-frame {
  position: relative;
  background: #0a0a0c;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

body.pc-portal .pc-sponsor-sections .screen-surface {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.pc-portal .pc-sponsor-sections .mock-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
}

body.pc-portal .pc-sponsor-sections .example-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  color: #fff;
  opacity: 0.45;
  z-index: 15;
  text-transform: uppercase;
}

/* Content Details Column */
body.pc-portal .pc-sponsor-sections .impact-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(239, 68, 68, 0.2);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.pc-portal .pc-sponsor-sections .section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  line-height: 1;
}

body.pc-portal .pc-sponsor-sections .section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

body.pc-portal .pc-sponsor-sections .benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

body.pc-portal .pc-sponsor-sections .benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #e2e8f0;
}

body.pc-portal .pc-sponsor-sections .credibility-micro-copy {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.6;
}

/* Micro CTA Refinement */
body.pc-portal .pc-sponsor-sections .micro-cta-wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

body.pc-portal .pc-sponsor-sections .btn-micro-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem 2.5rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

body.pc-portal .pc-sponsor-sections .btn-micro-premium:hover {
  border-color: var(--pc-red);
  box-shadow: 0 10px 30px var(--pc-red-glow);
  transform: translateY(-3px);
  background: rgba(239, 68, 68, 0.08);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 960px) {
  body.pc-portal .pc-sponsor-sections #placements {
    padding-bottom: 1.5rem;
  }
  
  body.pc-portal .pc-sponsor-sections .placement-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    max-width: 600px;
  }
  
  body.pc-portal .pc-sponsor-sections .mock-tv-frame {
    max-width: 100%;
  }
  
  body.pc-portal .pc-sponsor-sections .benefit-list {
    align-items: center;
    text-align: left;
    display: inline-flex;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  body.pc-portal .pc-sponsor-sections #placements {
    padding-bottom: 1rem;
  }
  
  body.pc-portal .pc-sponsor-sections .btn-micro-premium {
    width: 100%;
    justify-content: center;
  }
}