/* Crumbcast Sponsors Page Styles — standalone, no SCSS compilation needed */

/* ---- Sponsors Hero ---- */

.sponsors-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1e2a33, #141d24, #0c1318);
}
.sponsors-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(90, 125, 154, 0.3), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(90, 125, 154, 0.15), transparent 50%);
}

.sponsors-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  filter: blur(3px);
  animation: focus-pull 0.5s ease-out 0.3s forwards;
}
.sponsors-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
  filter: grayscale(1) contrast(1.4) brightness(0.7);
  mix-blend-mode: screen;
}

.sponsors-hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

/* Viewfinder corners */
.sponsors-hero::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 32px;
  bottom: 24px;
  left: 32px;
  z-index: 3;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 1.5,1.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 58.5,1.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top right no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 1.5,30.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 58.5,30.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom right no-repeat;
}

.sponsors-hero__content {
  position: relative;
  z-index: 4;
  padding: 60px;
  width: 100%;
}

.sponsors-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sage-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.sponsors-hero .sponsors-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--chalk);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Stats row — matches events-hero / news-hero pattern */
.sponsors-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.sponsors-hero__stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--chalk);
  display: block;
  line-height: 1;
}
.sponsors-hero__stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  color: var(--dust);
  opacity: 0.6;
}

/* ---- Intro / Body Copy ---- */

.sponsors-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 0;
  width: 100%;
}
.sponsors-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5a56;
  margin-bottom: 16px;
}
.sponsors-intro p:last-child {
  margin-bottom: 0;
}

/* ---- Partner Cards Grid ---- */

.sponsors-grid-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  width: 100%;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sponsors-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: box-shadow 0.3s;
}
.sponsors-card:hover {
  box-shadow: 0 6px 24px rgba(26, 26, 24, 0.1);
}

.sponsors-card__logo {
  background: var(--stone);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.sponsors-card__logo img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.sponsors-card:hover .sponsors-card__logo img {
  filter: grayscale(0);
  opacity: 1;
}

.sponsors-card__body {
  padding: 28px 32px 32px;
}

.sponsors-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}

.sponsors-card__tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 14px;
}

.sponsors-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a56;
  margin-bottom: 16px;
}
.sponsors-card__desc p {
  margin: 0 0 10px;
}
.sponsors-card__desc p:last-child {
  margin-bottom: 0;
}

.sponsors-card__link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--rust);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.sponsors-card__link:hover {
  color: var(--rust-light, #d4714a);
}

/* ---- CTA Section ---- */

.sponsors-cta {
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  padding: 72px 48px;
  width: 100%;
}

.sponsors-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.sponsors-cta__heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.25;
  margin: 0 0 16px;
}

.sponsors-cta__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 242, 237, 0.85);
  margin-bottom: 32px;
}

.sponsors-cta__btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sky);
  background: var(--chalk);
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.sponsors-cta__btn:hover {
  background: white;
  color: var(--sky);
  transform: translateY(-1px);
}

/* ---- Responsive ---- */

@media (max-width: 992px) {
  .sponsors-hero {
    height: 280px;
  }
  .sponsors-hero__content {
    padding: 40px 38px;
  }
  .sponsors-hero .sponsors-hero__title {
    font-size: 36px;
  }
  .sponsors-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .sponsors-hero::after {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
  .sponsors-hero__stats {
    gap: 20px;
    margin-top: 16px;
  }
  .sponsors-hero__stat-value {
    font-size: 20px;
  }

  .sponsors-intro {
    padding: 40px 24px 0;
  }
  .sponsors-intro p {
    font-size: 15px;
  }

  .sponsors-grid-wrap {
    padding: 40px 24px 48px;
  }
  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sponsors-cta {
    padding: 48px 24px;
  }
  .sponsors-cta__heading {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .sponsors-hero__content {
    padding: 24px 16px 24px 27px;
  }
}
