/* 
 * PORT CLINTON SPONSOR - FOOTPRINT SECTION REFINEMENT
 * Focus: Online-First clarity & Tighter Spacing
 */

body.pc-portal .pc-sponsor-sections .section-footprint {
  /* Reduced gap above and below the module for ultra-tight vertical rhythm */
  padding-top: 0.25rem;
  padding-bottom: clamp(1rem, 3vw, 2rem); /* Significantly reduced from 2.5rem-4rem */
  position: relative;
  z-index: 5;
}

body.pc-portal .pc-sponsor-sections .footprint-glass-panel {
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Premium subtle border */
  border-radius: 40px;
  /* Tightened internal vertical padding for a more dense, intentional feel */
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: 1100px; /* Constrained width matching placements/hero */
  margin-inline: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* Subtle vertical edge glows inside the card */
body.pc-portal .pc-sponsor-sections .footprint-glass-panel::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

body.pc-portal .pc-sponsor-sections .section-footprint .title-accent {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem; /* Tightened from 2rem */
  text-align: center;
}

/* Status Strip: Online/Local Status */
body.pc-portal .pc-sponsor-sections .footprint-status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.pc-portal .pc-sponsor-sections .status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

body.pc-portal .pc-sponsor-sections .status-item i {
  width: 22px;
  height: 22px;
  color: #fff;
  opacity: 0.25;
}

/* Primary Highlight for Online Status - Brighter Red Emphasis */
body.pc-portal .pc-sponsor-sections .status-item.primary {
  transform: scale(1.05);
}

body.pc-portal .pc-sponsor-sections .status-item.primary i {
  color: var(--pc-red);
  opacity: 1;
  filter: drop-shadow(0 0 10px var(--pc-red-glow));
}

body.pc-portal .pc-sponsor-sections .status-text {
  display: flex;
  flex-direction: column;
}

body.pc-portal .pc-sponsor-sections .s-kicker {
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

body.pc-portal .pc-sponsor-sections .s-val {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
}

body.pc-portal .pc-sponsor-sections .status-item.primary .s-val {
  color: #fff;
  font-size: 0.95rem; /* Larger type for emphasis */
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* Rollout Targets */
body.pc-portal .pc-sponsor-sections .rollout-targets-wrap {
  text-align: center;
}

body.pc-portal .pc-sponsor-sections .rollout-label {
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--pc-red);
  margin-bottom: 1rem;
  opacity: 0.9;
}

body.pc-portal .pc-sponsor-sections .chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* Slightly increased horizontal spacing */
}

body.pc-portal .pc-sponsor-sections .venue-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.pc-portal .pc-sponsor-sections .venue-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Tablet & Phone Optimization */
@media (max-width: 960px) {
  body.pc-portal .pc-sponsor-sections .footprint-status-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  
  body.pc-portal .pc-sponsor-sections .status-item.primary {
    transform: none;
  }
}

@media (max-width: 640px) {
  body.pc-portal .pc-sponsor-sections .section-footprint {
    padding-top: 0.25rem;
    padding-bottom: 2rem;
  }
  
  body.pc-portal .pc-sponsor-sections .footprint-glass-panel {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
  }

  body.pc-portal .pc-sponsor-sections .chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  body.pc-portal .pc-sponsor-sections .venue-chip {
    padding: 0.6rem 0.75rem;
    font-size: 0.7rem;
    border-radius: 10px;
    justify-content: center;
  }
}
