/* ============================================================
   Edu2Future LLC — University Pathway Programs
   Extends "Editorial Prestige" (study-usa.css).
   Page-specific components, .pw- prefixed.
   ============================================================ */

.pw-hero {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.pw-hero .su-display {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  margin: 22px 0 24px;
}
.pw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ============================================================
   WHAT IS A PATHWAY — benefits
   ============================================================ */
.pw-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pw-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--su-line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pw-benefit:hover { transform: translateY(-4px); box-shadow: 0 26px 54px -32px rgba(11,31,58,.3); }
.pw-benefit-ico {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #0d2444, var(--su-ink));
  color: var(--su-gold);
}
.pw-benefit-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pw-benefit b { display: block; font-size: 1.05rem; color: var(--su-ink); margin-bottom: 3px; }
.pw-benefit span { font-size: .92rem; line-height: 1.5; color: var(--color-paragraph); }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.pw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pw-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--su-line);
  border-radius: 18px;
  padding: 34px 28px 30px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.pw-step:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11,31,58,.3); }
.pw-step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--su-serif);
  font-size: 1.4rem;
  color: var(--su-gold);
  background: linear-gradient(160deg, #0d2444, var(--su-ink));
  margin-bottom: 20px;
}
.pw-step h3 {
  font-family: var(--su-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--su-ink);
  margin-bottom: 10px;
}
.pw-step p { font-size: .92rem; line-height: 1.6; color: var(--color-paragraph); }

/* ============================================================
   PARTNER PROVIDERS — placeholder slots (content to follow)
   ============================================================ */
.pw-providers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pw-provider-slot {
  display: grid;
  place-items: center;
  height: 96px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.22);
  transition: background .3s ease, border-color .3s ease;
}
.pw-provider-slot:hover { background: rgba(212,175,55,.06); border-color: rgba(212,175,55,.4); }
.pw-provider-slot span {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6E8099;
}
.pw-providers-note {
  margin-top: 26px;
  text-align: center;
  font-size: .82rem;
  font-style: italic;
  color: #8DA0B6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .pw-steps { grid-template-columns: repeat(2, 1fr); }
  .pw-providers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pw-benefits { grid-template-columns: 1fr; }
  .pw-steps { grid-template-columns: 1fr; }
  .pw-providers { grid-template-columns: 1fr; }
}
