/* Partner pages — archive + single
   Font: Nunito throughout
   Palette: white base, #23555a teal, #4fc0cf accent, #f5fffe light tint */

/* ════════════════════════════════════════════════════════════════════════════
   SHARED UTILITY
   ════════════════════════════════════════════════════════════════════════════ */

.archive-partner #main,
.archive-partner #main *,
.single-partner #main,
.single-partner #main * {
  font-family: 'Nunito', sans-serif;
}

/* ════════════════════════════════════════════════════════════════════════════
   ARCHIVE — /partnerships/
   ════════════════════════════════════════════════════════════════════════════ */

.pship-hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e8eeee;
}

.pship-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;


  color: #23555a;
  background: #e8f7f8;
  border-radius: 2rem;
  padding: 0.25rem 0.875rem;
  margin: 0 0 1.25rem;
}

.archive-partner .pship-hero__title {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  color: #1a2e2f !important;
  margin: 0 0 1.125rem !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
}

.pship-hero__sub {
  font-size: 1.0625rem;
  color: #5a7070;
  max-width: 34rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 500;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */

.pship-grid-section {
  padding: 3.5rem 0 5rem;
  background: #f5fffe;
}

.pship-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .pship-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .pship-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .pship-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Card ─────────────────────────────────────────────────────────────────── */

.pship-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #ddeced;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: #1a2e2f;
  transition: box-shadow 0.2s, transform 0.18s, border-color 0.2s;
}

.pship-card:hover {
  text-decoration: none;
  color: #1a2e2f;
  border-color: #4fc0cf;
  box-shadow: 0 12px 40px rgba(35, 85, 90, 0.13);
  transform: translateY(-4px);
}

.pship-card__logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1.5px solid #ddeced;
  padding: 2.25rem 2rem;
  min-height: 8rem;
}

.pship-card__logo {
  max-width: 100%;
  max-height: 3.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pship-card__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.875rem;
  background: #23555a;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;

}

.pship-card__body {
  padding: 1.25rem 1.375rem 1rem;
  flex: 1;
}

.archive-partner .pship-card__name {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  margin: 0 0 0.3rem !important;
  color: #1a2e2f !important;
  line-height: 1.3 !important;
}

.pship-card__tagline {
  font-size: 0.8125rem;
  color: #5a7070;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.pship-card__cat {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;


  color: #23555a;
  padding: 0.625rem 1.375rem 1.125rem;
}

/* ── Archive CTA strip ────────────────────────────────────────────────────── */

.pship-cta-strip {
  background: #23555a;
  padding: 2.75rem 0;
}

.pship-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pship-cta-strip__text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

.pship-empty {
  text-align: center;
  color: #5a7070;
  padding: 4rem 0;
  font-family: 'Nunito', sans-serif;
}

/* ════════════════════════════════════════════════════════════════════════════
   SINGLE — /partnerships/{slug}/
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Back bar ───────────────────────────────────────────────────────────── */

.pship-back-bar {
  background: #fff;
  border-bottom: 1px solid #e8eeee;
  padding: 0.875rem 0;
}

.pship-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5a7070;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
}

.pship-back:hover {
  color: #23555a;
  text-decoration: none;
}

/* ── Co-brand logo bar ──────────────────────────────────────────────────── */

.pship-logo-bar {
  background: #fff;
  border-bottom: 1px solid #e8eeee;
  padding: 1.5rem 0;
}

.pship-logo-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pship-logo-bar__partner-logo {
  max-height: 2.5rem;
  max-width: 10rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pship-logo-bar__divider {
  font-size: 1.5rem;
  font-weight: 300;
  color: #c5d8d8;
  line-height: 1;
}

.pship-logo-bar__gotu img,
.pship-logo-bar__gotu a {
  display: block;
  line-height: 0;
}

.pship-logo-bar__gotu img {
  max-height: 2.25rem;
  width: auto;
  object-fit: contain;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.pship-hero-split {
  padding: 5rem 0 4rem;
  background: #fff;
  border-bottom: 1px solid #e8eeee;
}

.pship-hero-split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pship-hero-split__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

.pship-hero-split__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;


  color: #23555a;
  background: #e8f7f8;
  border-radius: 2rem;
  padding: 0.25rem 0.875rem;
  margin: 0 0 1.5rem;
  font-family: 'Nunito', sans-serif;
}

.single-partner .pship-hero-split__headline {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(2rem, 3.75vw, 3rem) !important;
  font-weight: 900 !important;
  color: #1a2e2f !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 1.375rem !important;
}

.pship-hero-split__desc {
  font-size: 1.0625rem;
  color: #5a7070;
  line-height: 1.8;
  margin: 0 0 2rem;
  font-weight: 500;
}

.pship-hero-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.pship-hero-split__media {
  border-radius: 1.25rem;
  overflow: hidden;
}

.pship-hero-split__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.pship-hero-split__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eef6f6;
  border-radius: 1.25rem;
  border: 2px dashed #c5d8d8;
}

/* ── Benefits checklist ─────────────────────────────────────────────────── */

.pship-benefits {
  margin-bottom: 2.25rem;
}

.pship-benefits__label {
  font-size: 0.6875rem;
  font-weight: 800;


  color: #23555a;
  margin: 0 0 0.875rem;
  font-family: 'Nunito', sans-serif;
}

.pship-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pship-benefits__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #1a2e2f;
  line-height: 1.45;
  font-weight: 600;
}

.pship-benefits__item svg {
  flex-shrink: 0;
}

/* ── About section ──────────────────────────────────────────────────────── */

.pship-about {
  padding: 5rem 0;
  background: #f5fffe;
  border-bottom: 1px solid #e8eeee;
}

.pship-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .pship-about__inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.pship-about__inner--no-stats {
  grid-template-columns: 1fr !important;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.pship-about__inner--no-stats .pship-about__link {
  display: inline-flex;
  margin-top: 1.375rem;
}

.pship-about__eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;


  color: #4fc0cf;
  margin: 0 0 0.75rem;
  font-family: 'Nunito', sans-serif;
}

.single-partner .pship-about__heading {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(1.625rem, 2.5vw, 2.125rem) !important;
  font-weight: 900 !important;
  color: #1a2e2f !important;
  margin: 0 0 1.25rem !important;
  line-height: 1.2 !important;
}

.pship-about__text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5a7070;
  margin-bottom: 1rem;
  font-weight: 500;
}

.pship-about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #23555a;
  text-decoration: none;
  border: 2px solid #23555a;
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
  margin-top: 1.375rem;
  transition: background 0.15s, color 0.15s;
  font-family: 'Nunito', sans-serif;
}

.pship-about__link:hover {
  background: #23555a;
  color: #fff;
  text-decoration: none;
}

/* ── Stat cards ─────────────────────────────────────────────────────────── */

.pship-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pship-stat-card {
  background: #fff;
  border: 1.5px solid #ddeced;
  border-radius: 1rem;
  padding: 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: box-shadow 0.15s;
}

.pship-stat-card:hover {
  box-shadow: 0 4px 20px rgba(35, 85, 90, 0.08);
}

.pship-stat-card__value {
  font-family: 'Nunito', sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  color: #23555a;
  line-height: 1.15;
}

.pship-stat-card__label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #1a2e2f;
}

.pship-stat-card__desc {
  font-size: 0.8125rem;
  color: #5a7070;
  line-height: 1.55;
  margin: 0.375rem 0 0;
  font-weight: 500;
}

/* ── Shared section header ──────────────────────────────────────────────── */

.pship-section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.pship-section-header__eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;


  color: #4fc0cf;
  margin: 0 0 0.875rem;
  font-family: 'Nunito', sans-serif;
}

.single-partner .pship-section-header__heading {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(1.625rem, 2.75vw, 2.25rem) !important;
  font-weight: 900 !important;
  color: #1a2e2f !important;
  margin: 0 0 1rem !important;
  line-height: 1.2 !important;
}

.pship-section-header__sub {
  font-size: 1rem;
  color: #5a7070;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* ── Why grid ───────────────────────────────────────────────────────────── */

.pship-why {
  padding: 5rem 0;
  background: #fff;
  border-bottom: 1px solid #e8eeee;
}

.pship-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pship-why__grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
}

.pship-why-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #f5fffe;
  border: 1.5px solid #ddeced;
  border-radius: 1.25rem;
  transition: box-shadow 0.2s, transform 0.15s;
}

.pship-why-item:hover {
  box-shadow: 0 8px 28px rgba(35, 85, 90, 0.1);
  transform: translateY(-2px);
}

.pship-why-item__icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #e8f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
  color: #23555a;
}

.single-partner .pship-why-item__title {
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 800 !important;
  color: #1a2e2f !important;
  margin: 0 0 0.5rem !important;
}

.pship-why-item__desc {
  font-size: 0.875rem;
  color: #5a7070;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ── Solutions ──────────────────────────────────────────────────────────── */

.pship-solutions {
  padding: 5rem 0;
  background: #f5fffe;
  border-bottom: 1px solid #e8eeee;
}

.pship-solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 900px) {
  .pship-solutions__grid { grid-template-columns: repeat(5, 1fr); }
}

.pship-solution-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1.5px solid #ddeced;
  border-radius: 1.25rem;
}

.pship-solution-item__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #e8f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #23555a;
}

.single-partner .pship-solution-item__title {
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 800 !important;
  color: #1a2e2f !important;
  margin: 0 0 0.375rem !important;
}

.pship-solution-item__desc {
  font-size: 0.8125rem;
  color: #5a7070;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ── Member offer ───────────────────────────────────────────────────────── */

.pship-offer {
  padding: 3.5rem 0 3.5rem;
  background: #23555a;
  border-bottom: 1px solid #1c4448;
}

.pship-offer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pship-offer__inner { grid-template-columns: 1fr auto; gap: 5rem; }
}

.pship-offer__inner--no-action {
  grid-template-columns: 1fr !important;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.pship-offer__inner--no-action .pship-offer__icon {
  margin-left: auto;
  margin-right: auto;
}

.pship-offer__inner--no-action .pship-offer__desc {
  margin: 0 auto;
}

.pship-offer__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}

.pship-offer__eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;


  color: #4fc0cf;
  margin: 0 0 0.75rem;
  font-family: 'Nunito', sans-serif;
}

.single-partner .pship-offer__heading {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(1.5rem, 2.75vw, 2rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 0.875rem !important;
  line-height: 1.2 !important;
}

.pship-offer__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
  max-width: 34rem;
  font-weight: 500;
}

.pship-offer__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-width: 15rem;
}

/* ── Promo code ─────────────────────────────────────────────────────────── */

.pship-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px dashed rgba(79, 192, 207, 0.5);
  border-radius: 0.875rem;
  padding: 1.125rem 2rem;
  background: rgba(255,255,255,0.06);
}

.pship-promo__label {
  font-size: 0.6875rem;
  font-weight: 700;


  color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem;
  font-family: 'Nunito', sans-serif;
}

.pship-promo__code {
  font-size: 1.5rem;
  font-weight: 900;

  color: #fff;
  font-family: 'Nunito', monospace;
}

.pship-offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff !important;
  color: #23555a !important;
  border-color: #fff !important;
  font-weight: 800 !important;
  font-family: 'Nunito', sans-serif !important;
}

.pship-offer__btn:hover {
  background: #e8f7f8 !important;
  color: #23555a !important;
}

/* ── Footer CTA ─────────────────────────────────────────────────────────── */

.pship-footer-cta {
  padding: 5rem 0 5.5rem;
  background: #fff;
}

.pship-footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pship-footer-cta__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.pship-footer-cta__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #e8f7f8;
  border: 1.5px solid #ddeced;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23555a;
}

.pship-footer-cta__content { flex: 1; }

.single-partner .pship-footer-cta__heading {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem) !important;
  font-weight: 900 !important;
  color: #1a2e2f !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.2 !important;
}

.pship-footer-cta__sub {
  font-size: 1rem;
  color: #5a7070;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.pship-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  flex-shrink: 0;
}

.pship-footer-cta__actions .btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

/* ── Spotlights ─────────────────────────────────────────────────────────── */

.pship-spotlights {
  padding: 5rem 0;
  background: #fff;
  border-bottom: 1px solid #e8eeee;
}

.pship-spotlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pship-spotlights__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pship-spotlights__grid { grid-template-columns: repeat(3, 1fr); }
}

.pship-spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f5fffe;
  border: 1.5px solid #ddeced;
  border-radius: 1rem;
  padding: 1.375rem 1.5rem;
  text-decoration: none;
  color: #1a2e2f;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.pship-spotlight-card:hover {
  border-color: #4fc0cf;
  box-shadow: 0 6px 24px rgba(35, 85, 90, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: #1a2e2f;
}

.pship-spotlight-card--no-link {
  cursor: default;
}

.pship-spotlight-card--no-link:hover {
  transform: none;
  box-shadow: none;
  border-color: #ddeced;
}

.pship-spotlight-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pship-spotlight-card__source {
  font-size: 0.75rem;
  font-weight: 800;
  color: #23555a;
}

.pship-spotlight-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #5a7070;
  background: #fff;
  border: 1px solid #ddeced;
  border-radius: 2rem;
  padding: 0.2rem 0.625rem;
}

.pship-spotlight-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2e2f;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.pship-spotlight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #23555a;
  margin-top: auto;
}

.pship-spotlight-card:hover .pship-spotlight-card__cta {
  color: #4fc0cf;
}
