/* Sponsorship Page Styles
 * Extracted from style.css for conditional loading
 * Loaded on: sponsorship page only
 */

/* ========================================
   SPONSORSHIP PAGE STYLES
   ======================================== */
.sponsorship-page {
  background: var(--wp--preset--color--rich-black);
}

/* Hero Section */
.sponsorship-hero {
  position: relative;
}

.sponsorship-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      2px 2px at 20% 30%,
      rgba(255, 215, 0, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 80% 20%,
      rgba(255, 215, 0, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 40% 70%,
      rgba(255, 215, 0, 0.35) 0%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

/* Stats Section */
.sponsorship-stats .wp-block-column {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.sponsorship-stats .wp-block-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

/* Stats card styling -- bordered with gold glow on hover */
.sponsorship-page .sponsorship-stats .wp-block-column {
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Benefits Card */
.benefits-card {
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefits-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.3);
}

.sponsorship-benefits-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsorship-benefits-list li:last-child {
  border-bottom: none;
}

/* Demographics Cards */
.demo-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(184, 134, 11, 0.3);
}

/* Package Cards */
.package-card {
  background: var(--wp--preset--color--dark-charcoal);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
}

/* Featured Package (Gold tier) */
.package-card-featured {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 1) 0%,
    rgba(26, 26, 26, 1) 100%
  );
  box-shadow:
    0 15px 50px rgba(255, 215, 0, 0.2),
    0 0 0 1px rgba(255, 215, 0, 0.3);
  position: relative;
}

.package-card-featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--wp--preset--color--primary), var(--wp--preset--color--gold-deep), var(--wp--preset--color--primary));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.6;
}

.package-card-featured:hover {
  box-shadow:
    0 20px 60px rgba(255, 215, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.5);
}

/* Package Lists */
.package-card ul {
  padding-left: 20px;
  margin-top: 20px;
}

.package-card ul li {
  padding: 6px 0;
}

/* Sponsorship Form Section - Side by Side Layout */
.sponsorship-form-section {
  position: relative;
}

.sponsorship-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      2px 2px at 20% 30%,
      rgba(255, 215, 0, 0.15) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 80% 20%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 40% 70%,
      rgba(255, 215, 0, 0.12) 0%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
}

.sponsorship-image-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.sponsorship-image-wrapper {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sponsorship-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(255, 215, 0, 0.4);
}

.sponsorship-cta-image {
  flex: 1;
  margin: 0;
}

.sponsorship-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Telly Awards constrained image */
.sponsorship-telly-img img {
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.sponsorship-form-column {
  position: relative;
  z-index: 1;
}

/* Sponsorship Form Container - Dark Theme */
.sponsorship-form-container {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.sponsorship-form-container input[type="text"],
.sponsorship-form-container input[type="email"],
.sponsorship-form-container input[type="tel"],
.sponsorship-form-container textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  color: var(--wp--preset--color--white);
}

.sponsorship-form-container input[type="text"]::placeholder,
.sponsorship-form-container input[type="email"]::placeholder,
.sponsorship-form-container input[type="tel"]::placeholder,
.sponsorship-form-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sponsorship-form-container input[type="text"]:focus,
.sponsorship-form-container input[type="email"]:focus,
.sponsorship-form-container input[type="tel"]:focus,
.sponsorship-form-container textarea:focus {
  border-color: var(--wp--preset--color--gold-bright);
  outline: 2px solid var(--wp--preset--color--gold-bright);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.sponsorship-form-container input[type="submit"],
.sponsorship-form-container button[type="submit"] {
  box-sizing: border-box;
  width: 100%;
  background: var(--gold-luxury-gradient);
  color: var(--wp--preset--color--black);
  padding: 16px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.sponsorship-form-container input[type="submit"]:hover,
.sponsorship-form-container button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Form Labels - Dark Theme */
.sponsorship-form-container label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* Responsive Styles for Sponsorship Form Section */
@media (max-width: 1023px) {
  .sponsorship-form-section .wp-block-columns {
    flex-direction: column;
    gap: 30px;
  }

  .sponsorship-form-section .sponsorship-image-column,
  .sponsorship-form-section .sponsorship-form-column {
    flex-basis: 100%;
  }

  .sponsorship-image-column {
    max-width: 500px;
    margin: 0 auto;
  }

  .sponsorship-image-wrapper {
    flex: unset;
  }

  .sponsorship-cta-image {
    flex: unset;
  }

  .sponsorship-cta-image img {
    height: auto;
    object-fit: initial;
  }
}

@media (max-width: 782px) {
  .sponsorship-hero.sponsorship-hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .sponsorship-hero.sponsorship-hero h1 {
    font-size: 2.2rem;
  }

  .sponsorship-stats .wp-block-columns {
    flex-direction: column;
    gap: 20px;
  }

  .sponsorship-stats .wp-block-column {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 25px;
  }

  .sponsorship-stats .wp-block-column:last-child {
    border-bottom: none;
  }

  .why-sponsor-section .wp-block-columns,
  .packages-section .wp-block-columns {
    flex-direction: column;
    gap: 30px;
  }

  .package-card-featured {
    order: -1;
  }

  .audience-section .wp-block-columns {
    flex-direction: column;
    gap: 20px;
  }

  .sponsorship-form-container.sponsorship-form-container {
    padding: 25px 20px;
  }

  .sponsorship-form-section.sponsorship-form-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Fix 1: Stats numbers BIGGER on mobile */
  .sponsorship-page.sponsorship-page p[style*="3rem"].has-gold-bright-color {
    font-size: 3.5rem;
  }

  /* Fix 2: Form labels BIGGER on mobile for accessibility */
  .sponsorship-form-container.sponsorship-form-container label,
  .sponsorship-form-container.sponsorship-form-container .wpcf7-form .form-field label,
  .sponsorship-form-wrapper.sponsorship-form-wrapper .mc4wp-form label {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  /* Fix 4: Reduce space between hero/benefits and Award-Winning section */
  /* Hero section bottom padding: 80px → 30px */
  .sponsorship-page.sponsorship-page > .wp-block-group:first-child > .wp-block-group.alignfull:first-child {
    padding-bottom: 30px;
  }

  /* Telly Awards section: 60px top → 30px */
  .sponsorship-page.sponsorship-page .alignfull.has-dark-charcoal-background-color {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* Stats strip section: 50px → 25px */
  .sponsorship-page.sponsorship-page .alignfull.has-dark-charcoal-background-color + .alignfull.has-dark-charcoal-background-color {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  /* Fix 5: Reduce space between quote and benefits card when columns stack */
  /* Reduce hero section top padding on mobile */
  .sponsorship-page.sponsorship-page > .wp-block-group:first-child > .wp-block-group.alignfull:first-child {
    padding-top: 100px;
  }

  /* Reduce column gap when stacked */
  .sponsorship-page.sponsorship-page .wp-block-columns.are-vertically-aligned-top {
    gap: 20px;
  }

  /* Reduce benefits card margin on mobile */
  .sponsorship-benefits-card.sponsorship-benefits-card {
    margin-top: 10px;
  }

  /* Prominent quote section: reduce padding */
  .sponsorship-page.sponsorship-page > .wp-block-group:first-child > .alignfull.has-rich-black-background-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Quote left-border block: tighten padding */
  .sponsorship-page.sponsorship-page [style*="border-left-color"] {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  /* Even tighter hero padding on small phones */
  .sponsorship-page.sponsorship-page > .wp-block-group:first-child > .wp-block-group.alignfull:first-child {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  /* Reduce form section padding */
  .sponsorship-form-section.sponsorship-form-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/* ========================================
   CONTACT FORM 7 - SPONSORSHIP FORM STYLES
   ======================================== */

/* Form Grid Layout */
.sponsorship-form-container .wpcf7-form .sponsorship-form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sponsorship-form-container .wpcf7-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sponsorship-form-container .wpcf7-form .form-row.two-col {
  flex-direction: row;
  gap: 15px;
}

.sponsorship-form-container .wpcf7-form .form-row.two-col .form-field {
  flex: 1;
}

.sponsorship-form-container .wpcf7-form .form-field {
  display: flex;
  flex-direction: column;
}

.sponsorship-form-container .wpcf7-form .form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Input Fields - Dark Theme */
.sponsorship-form-container .wpcf7-form input[type="text"],
.sponsorship-form-container .wpcf7-form input[type="email"],
.sponsorship-form-container .wpcf7-form input[type="tel"],
.sponsorship-form-container .wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--wp--preset--font-family--body);
  color: var(--wp--preset--color--white);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.sponsorship-form-container .wpcf7-form input[type="text"]:focus,
.sponsorship-form-container .wpcf7-form input[type="email"]:focus,
.sponsorship-form-container .wpcf7-form input[type="tel"]:focus,
.sponsorship-form-container .wpcf7-form textarea:focus {
  border-color: var(--wp--preset--color--gold-bright);
  outline: 2px solid var(--wp--preset--color--gold-bright);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.sponsorship-form-container .wpcf7-form input::placeholder,
.sponsorship-form-container .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Textarea */
.sponsorship-form-container .wpcf7-form textarea {
  min-height: 80px;
  resize: vertical;
}

/* Submit Button - Gold Theme */
.sponsorship-form-container .wpcf7-form .submit-row {
  margin-top: 10px;
}

.sponsorship-form-container .wpcf7-form input[type="submit"],
.sponsorship-form-container .wpcf7-form .sponsor-submit-btn {
  width: 100%;
  background: var(--gold-luxury-gradient);
  color: var(--wp--preset--color--black);
  padding: 16px 30px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sponsorship-form-container .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Validation Messages */
.sponsorship-form-container .wpcf7-not-valid-tip {
  color: var(--pl-color-error-alt);
  font-size: 0.8rem;
  margin-top: 5px;
}

.sponsorship-form-container .wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.sponsorship-form-container .wpcf7-mail-sent-ok {
  background: var(--pl-color-success-bg);
  border: 1px solid var(--pl-color-success-alt);
  color: var(--pl-color-success-dark);
}

.sponsorship-form-container .wpcf7-validation-errors {
  background: var(--pl-color-error-bg);
  border: 1px solid var(--pl-color-error-border);
  color: var(--pl-color-error-alt);
}

/* Responsive */
@media (max-width: 599px) {
  .sponsorship-form-container .wpcf7-form .form-row.two-col {
    flex-direction: column;
  }
}

/* Sponsorship Benefits Card - New Compact Layout */
.sponsorship-benefits-card.sponsorship-benefits-card {
  margin-top: 75px; /* CSS fallback; JS (sponsorship-alignment.js) sets exact value dynamically */
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sponsorship-benefits-card.sponsorship-benefits-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.25);
}

/* Gold Bullet Styling - Replace emoji with CSS */
.sponsorship-benefits-card .wp-block-group[style*="flex"] > p:first-child {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--wp--preset--color--gold-shimmer);
  border-radius: 50%;
  font-size: 0;
  margin-top: 5px;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Sponsor CTA Button */
.sponsor-cta-button .wp-block-button__link {
  background: var(--wp--preset--color--gold-shimmer) !important;
  color: var(--wp--preset--color--rich-black) !important;
  padding: 16px 32px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sponsor-cta-button .wp-block-button__link:hover {
  background: var(--wp--preset--color--gold-shimmer) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Sponsor Video Wrapper */
.sponsor-video-wrapper {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.sponsor-video-wrapper:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Responsive - Sponsorship Page Compact Layout */
@media (max-width: 1023px) {
  .sponsorship-page .wp-block-columns.are-vertically-aligned-top {
    flex-direction: column;
  }

  .sponsorship-page.sponsorship-page
    .wp-block-columns.are-vertically-aligned-top
    > .wp-block-column {
    flex-basis: 100%;
    max-width: 100%;
  }

  .sponsorship-benefits-card.sponsorship-benefits-card {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .sponsorship-page.sponsorship-page h1.wp-block-heading {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .sponsorship-benefits-card.sponsorship-benefits-card {
    padding: 25px;
  }

  .sponsorship-benefits-card.sponsorship-benefits-card h4 {
    font-size: 1rem;
  }
}

/* ========================================
   AUDIENCE ANALYTICS SECTION STYLES
   ======================================== */

.audience-analytics-section {
  position: relative;
}

/* Lifestyle & Products Table */
.lifestyle-table-container {
  overflow-x: auto;
}

.audience-lifestyle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--wp--preset--color--white);
}

.audience-lifestyle-table thead {
  border-bottom: 2px solid var(--burgundy);
}

.audience-lifestyle-table th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--burgundy);
}

.audience-lifestyle-table th.lifestyle-header {
  text-align: left;
  color: var(--burgundy);
}

.audience-lifestyle-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-lifestyle-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.audience-lifestyle-table td.highlight {
  color: var(--burgundy);
  font-weight: 600;
}

.audience-lifestyle-table td.index {
  color: var(--wp--preset--color--gold-bright);
  font-weight: 700;
}

.audience-lifestyle-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.table-footnote {
  margin-top: 15px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Stats Sidebar */
.stats-sidebar {
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(128, 0, 32, 0.3);
}

.stat-block {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-block p {
  margin: 0 0 4px 0;
}

/* Gender Pie Chart Styles */
.gender-pie-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.pie-chart {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.gender-pie {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gender-pie circle {
  fill: none;
  stroke-width: 20;
}

.pie-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.pie-women {
  stroke: var(--burgundy);
}

.pie-men {
  stroke: var(--wp--preset--color--gold-bright);
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.women {
  background: var(--burgundy);
}

.legend-dot.men {
  background: var(--wp--preset--color--gold-bright);
}

/* Responsive Styles for Audience Analytics */
@media (max-width: 1023px) {
  .audience-analytics-section .wp-block-columns {
    flex-direction: column;
    gap: 40px;
  }

  .audience-analytics-section.audience-analytics-section .wp-block-column {
    flex-basis: 100%;
  }

  .stats-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-block {
    padding-bottom: 0;
    border-bottom: none;
  }

  .gender-chart-block {
    grid-column: span 2;
  }
}

@media (max-width: 599px) {
  .audience-lifestyle-table {
    font-size: 0.8rem;
  }

  .audience-lifestyle-table th,
  .audience-lifestyle-table td {
    padding: 8px 5px;
  }

  .stats-sidebar {
    grid-template-columns: 1fr;
  }

  .gender-chart-block {
    grid-column: span 1;
  }

  .gender-pie-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MC4WP form styling — extracted from templates/page-sponsorship.html inline <style> (T12) */
.sponsorship-form-wrapper .mc4wp-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sponsorship-form-wrapper .mc4wp-form p {
  margin: 0;
}
/* Collapse empty <p> wrappers injected by MC4WP (script tag, honeypot, closing comment) */
.sponsorship-form-wrapper > p,
.sponsorship-form-wrapper .mc4wp-form > p:empty,
.sponsorship-form-wrapper .mc4wp-form > p:has(label[style*="display: none"]) {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
/* Remove <br> gap between label and input */
.sponsorship-form-wrapper .mc4wp-form .form-field label br {
  display: none;
}
.sponsorship-form-wrapper .mc4wp-form label {
  display: block;
  color: var(--wp--preset--color--champagne, #F5E6D3);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}
.sponsorship-form-wrapper .mc4wp-form .optional {
  color: var(--pl-color-text-muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
  margin-left: 6px;
}
.sponsorship-form-wrapper .mc4wp-form .required {
  color: var(--wp--preset--color--gold-metallic);
}
.sponsorship-form-wrapper .mc4wp-form input[type="text"],
.sponsorship-form-wrapper .mc4wp-form input[type="email"],
.sponsorship-form-wrapper .mc4wp-form input[type="tel"],
.sponsorship-form-wrapper .mc4wp-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  color: var(--wp--preset--color--white);
  font-size: 1.25rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.sponsorship-form-wrapper .mc4wp-form input:focus,
.sponsorship-form-wrapper .mc4wp-form textarea:focus {
  outline: 2px solid var(--wp--preset--color--gold-bright);
  outline-offset: 2px;
  border-color: var(--wp--preset--color--gold-bright, #D4AF37);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.sponsorship-form-wrapper .mc4wp-form input::placeholder,
.sponsorship-form-wrapper .mc4wp-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.sponsorship-form-wrapper .mc4wp-form textarea {
  min-height: 120px;
  resize: vertical;
}
.sponsorship-form-wrapper .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
}
.sponsorship-form-wrapper .form-field {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .sponsorship-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }
}
.sponsorship-form-wrapper .mc4wp-form input[type="submit"] {
  background: linear-gradient(135deg, var(--wp--preset--color--gold-deep) 0%, var(--wp--preset--color--primary) 50%, var(--wp--preset--color--gold-shimmer) 100%);
  color: var(--wp--preset--color--rich-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
  width: 100%;
}
.sponsorship-form-wrapper .mc4wp-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.sponsorship-form-wrapper .mc4wp-response {
  border-radius: 8px;
}
.sponsorship-form-wrapper .mc4wp-response:not(:empty) {
  padding: 16px;
  margin-top: 16px;
}
.sponsorship-form-wrapper .mc4wp-success {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.5);
  color: var(--pl-color-success-light);
}
.sponsorship-form-wrapper .mc4wp-error {
  background: rgba(198, 40, 40, 0.2);
  border: 1px solid rgba(198, 40, 40, 0.5);
  color: var(--pl-color-error-light);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .sponsorship-form-container *,
  .sponsorship-form-wrapper * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

