/* ==========================================================================
   LIMERICK SPORT EAGLES — page-specific styles
   For the standalone content & holding pages (sponsorship, about, contact,
   game night, legal, pathway etc.). Extends css/eagles.css — same brand world.
   Blue lifts. Navy anchors. White breathes. No orange. Anywhere.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page hero — compact navy band under the header
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: calc(var(--header-h) + 90px) 0 70px;
  border-bottom: 4px solid var(--eagles-blue);
}
.page-hero .wrap { max-width: 860px; }
.page-hero .eyebrow { color: var(--light-blue); }
.page-hero h1 { color: var(--white); }
.page-hero .page-hero-sub {
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: var(--light-blue);
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   Generic page body
   -------------------------------------------------------------------------- */
.page-body { padding: 70px 0 90px; background: var(--white); }
.page-body .wrap { max-width: 860px; }

.page-body .lede {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 28px;
}
.page-body p {
  color: var(--grey-body);
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.65;
}
.page-body p strong { color: var(--navy-deep); }
.page-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  margin: 44px 0 18px;
}
.page-body h2:first-child { margin-top: 0; }
.page-body a:not(.btn) { color: var(--eagles-blue); font-weight: 600; }
.page-body a:not(.btn):hover { text-decoration: underline; }
/* Buttons keep their own colours inside page bodies (don't inherit the link blue,
   which previously rendered blue text on a blue button until hover). */
.page-body .btn--blue { color: var(--white); }
.page-body .btn--navy { color: var(--white); }
.page-body .btn--ghost { color: var(--white); }

.page-body ul.bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.page-body ul.bullets li {
  position: relative;
  padding: 0 0 12px 28px;
  color: var(--grey-body);
  font-size: 17px;
  line-height: 1.6;
}
.page-body ul.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--eagles-blue);
}
.page-body ul.bullets li strong { color: var(--navy-deep); }

/* Coming-soon flag */
.coming-soon {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eagles-blue);
  border: 2px solid var(--eagles-blue);
  padding: 9px 18px;
  margin-bottom: 28px;
}

.page-ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Sponsorship — tiers
   -------------------------------------------------------------------------- */
.sponsor-tiers { padding: 80px 0; background: var(--navy-deep); }
.sponsor-tier { margin-bottom: 56px; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier .tier-label {
  display: block;
  margin-bottom: 22px;
  color: var(--light-blue);
}
.sponsor-tier h2 { color: var(--white); margin-bottom: 22px; }

.tier-grid {
  display: grid;
  gap: 16px;
}
.tier-grid--main { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tier-grid--game { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.tier-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-soft);
  padding: 30px 24px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tier-card:hover { background: var(--navy-soft); transform: translateY(-3px); }
.tier-card .tier-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--white);
  line-height: 1.1;
}
.tier-card--game .tier-name { font-size: 17px; }
.tier-card .tier-tag {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-blue);
}
.sponsor-tiers .tiers-note {
  margin-top: 40px;
  color: var(--navy-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Info / contact cards
   -------------------------------------------------------------------------- */
.info-cards { padding: 80px 0; background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.info-card {
  border: 1px solid var(--grey-line);
  border-top: 4px solid var(--eagles-blue);
  padding: 30px 26px;
  background: var(--white);
}
.info-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.info-card p { color: var(--grey-body); font-size: 16px; line-height: 1.6; margin: 0; }
.info-card a { color: var(--eagles-blue); font-weight: 600; word-break: break-word; }
.info-card a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Feature row (re-usable simple cards on navy)
   -------------------------------------------------------------------------- */
.simple-features { padding: 80px 0; background: var(--navy-deep); }
.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.simple-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-soft);
  padding: 32px 28px;
}
.simple-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.05;
}
.simple-card p { color: var(--light-blue); font-size: 16px; line-height: 1.6; margin: 0; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal-body { padding: 60px 0 90px; background: var(--white); }
.legal-body .wrap { max-width: 760px; }
.legal-note {
  background: #F4F6FB;
  border-left: 4px solid var(--eagles-blue);
  padding: 18px 22px;
  margin-bottom: 32px;
  color: var(--grey-body);
  font-size: 15px;
  line-height: 1.6;
}
.legal-body h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 34px 0 12px;
}
.legal-body p { color: var(--grey-body); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.legal-body a { color: var(--eagles-blue); font-weight: 600; }
.legal-updated { margin-top: 40px; font-size: 14px; color: var(--navy-soft); }
