/* 
 * PORT CLINTON SPONSOR SECTIONS - REMAINING (FOOTPRINT, ETC)
 * Focus: Premium Broadcast Aesthetics & Robust Responsiveness
 */

body.pc-portal .pc-sponsor-sections {
  /* --- Section Variables --- */
  --pc-red: #ef4444;
  --pc-red-bright: #ff3b3b;
  --pc-red-glow: rgba(239, 68, 68, 0.4);
  --pc-edge-glow: rgba(239, 68, 68, 0.08); 
  --glass-bg: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-muted: #94a3b8;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  color: #fff;
  overflow: hidden;
  background-color: transparent;
}

/* --- Shared Section Components --- */
body.pc-portal .pc-sponsor-sections .title-accent {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

body.pc-portal .pc-sponsor-sections .subtitle-accent {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Utility: Vertical Edge Glow Container */
body.pc-portal .pc-sponsor-sections .edge-glow-container {
  position: relative;
}
body.pc-portal .pc-sponsor-sections .edge-glow-container::before,
body.pc-portal .pc-sponsor-sections .edge-glow-container::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--pc-red), transparent);
  box-shadow: 0 0 12px var(--pc-red-glow);
  opacity: 0.12; /* Premium subtle glow */
  z-index: 1;
  pointer-events: none;
}
body.pc-portal .pc-sponsor-sections .edge-glow-container::before { left: 0; }
body.pc-portal .pc-sponsor-sections .edge-glow-container::after { right: 0; }

/* --- FOOTPRINT SECTION --- */
body.pc-portal .pc-sponsor-sections .section-footprint {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

body.pc-portal .pc-sponsor-sections .footprint-bg-accent {
  position: absolute;
  top: 50%; left: 50%; width: 100%; height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

body.pc-portal .pc-sponsor-sections .footprint-header {
  margin-bottom: 2rem;
}

body.pc-portal .pc-sponsor-sections .footprint-narrative {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

body.pc-portal .pc-sponsor-sections .chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

body.pc-portal .pc-sponsor-sections .venue-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.9rem 2.25rem;
  border-radius: 99px;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-premium);
}

body.pc-portal .pc-sponsor-sections .venue-chip:hover {
  border-color: var(--pc-red);
  transform: translateY(-4px) scale(1.05);
  background: rgba(239, 68, 68, 0.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (max-width: 640px) {
  body.pc-portal .pc-sponsor-sections .edge-glow-container::before,
  body.pc-portal .pc-sponsor-sections .edge-glow-container::after {
    display: none; /* Hide edge glows on small mobile to prevent clipping */
  }
}
