/* ============================================================
   partners.css
   Styles for the Partners page.
   ============================================================ */

/* --- Hero --- */
.pt-hero {
  background: var(--navy);
  padding: 100px 32px 64px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.pt-hero-in {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.pt-hero-in h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--od);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 16px 0 14px;
}
.pt-hero-in p {
  font-size: 18px;
  color: var(--od-m);
  line-height: 1.65;
  max-width: 640px;
}

/* --- Body --- */
.pt-body {
  padding: 0 32px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Section group --- */
.pt-section {
  padding-top: 64px;
}
.pt-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

/* --- Partner card grid --- */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* --- Partner card --- */
.pt-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
}
.pt-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pt-card-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.pt-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.pt-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pt-card-link:hover { text-decoration: underline; }

/* --- Become a partner strip --- */
.pt-become {
  margin-top: 64px;
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pt-become h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--od);
  margin-bottom: 10px;
}
.pt-become p {
  font-size: 16px;
  color: var(--od-m);
  line-height: 1.65;
  max-width: 560px;
}
