:root {
  --wiah-navy: #17324d;
  --wiah-orange: #f4a621;
  --wiah-teal: #287f86;
  --wiah-ink: #20252a;
  --wiah-muted: #65717a;
  --wiah-border: #e6e0d7;
  --wiah-surface: #fff;
}

.wiah-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.wiah-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--wiah-border);
  border-radius: 18px;
  background: var(--wiah-surface);
  color: var(--wiah-ink);
}

.wiah-card__photo {
  position: relative;
  display: grid;
  height: 300px;
  margin: 16px 16px 0;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: #edf1f1;
  isolation: isolate;
}

.wiah-card__photo::before {
  position: absolute;
  inset: -24px;
  z-index: -1;
  background-image: linear-gradient(rgba(23, 50, 77, .25), rgba(23, 50, 77, .25)), var(--wiah-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(16px);
  transform: scale(1.1);
}

.wiah-card .wiah-card__photo img {
  display: block !important;
  width: 100%;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.wiah-card__photo--empty::before { display: none; }

.wiah-card__portrait {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wiah-status {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--wiah-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.wiah-status--reserved { background: #846a1b; }
.wiah-status--sponsored { background: var(--wiah-navy); }
.wiah-status--inactive { background: #666; }

.wiah-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 24px 24px;
}

.wiah-card h3 {
  margin: 0 0 6px;
  color: var(--wiah-navy);
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.1;
}

.wiah-card__facts {
  margin: 0 0 24px;
  color: var(--wiah-muted);
  font-weight: 700;
}

.wiah-card__facts span { padding: 0 8px; }
.wiah-card__intro { margin: 0 0 18px; line-height: 1.55; }
.wiah-card__detail { display: flex; gap: 10px; margin: 0 0 10px; color: var(--wiah-muted); line-height: 1.45; }
.wiah-card__detail span { flex: 0 0 9px; width: 9px; height: 9px; margin-top: .45em; border-radius: 50%; background: var(--wiah-orange); }
.wiah-card__detail .wiah-card__detail-text { flex: 1 1 auto; width: auto; height: auto; margin: 0; border-radius: 0; background: none; }
.wiah-card__detail-text strong { color: var(--wiah-navy); }

.wiah-card__button,
.wiah-profile__sponsor {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 15px 18px;
  border: 0;
  border-radius: 9px;
  background: var(--wiah-orange);
  color: var(--wiah-navy);
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.wiah-card__button:hover,
.wiah-card__button:focus-visible { color: var(--wiah-navy); filter: brightness(.96); transform: translateY(-1px); }

.wiah-profile {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  max-width: 1080px;
  margin: 60px auto;
  padding: 0 24px;
  color: var(--wiah-ink);
}

.wiah-student-page { width: 100%; max-width: none; margin: 0; padding: 1px 0; background: #fff; }
.wiah-profile__photo { align-self: start; overflow: hidden; border-radius: 20px; background: #edf1f1; box-shadow: 0 14px 38px rgba(23, 50, 77, .10); }
.wiah-profile__photo img { display: block; width: 100%; height: auto; max-height: 600px; margin: 0; border-radius: 20px; object-fit: contain; }
.wiah-profile__content { align-self: center; }
.wiah-profile__status { display: inline-block; margin-bottom: 20px; padding: 7px 12px; border-radius: 999px; background: var(--wiah-teal); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.wiah-profile__eyebrow { margin: 0; color: var(--wiah-teal); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.wiah-profile h1 { margin: 4px 0 8px; color: var(--wiah-navy); font-size: clamp(42px, 6vw, 64px); }
.wiah-profile__story { font-size: 18px; line-height: 1.7; }
.wiah-profile__action { margin-top: 30px; padding: 24px; border: 1px solid var(--wiah-border); border-radius: 16px; background: #fffaf1; }
.wiah-profile__action-title { margin: 0 0 6px; color: var(--wiah-navy); font-size: 21px; font-weight: 800; }
.wiah-profile__action-copy { margin: 0; color: var(--wiah-muted); line-height: 1.55; }
.wiah-profile__sponsor { margin-top: 20px; }
.wiah-profile__sponsor:disabled { cursor: not-allowed; opacity: .7; }
.wiah-payment-note { color: var(--wiah-muted); font-size: 13px; }
.wiah-profile__back { display: inline-block; margin-top: 28px; color: var(--wiah-teal); font-weight: 700; text-decoration: none; }
.wiah-profile__back:hover,
.wiah-profile__back:focus-visible { color: var(--wiah-navy); text-decoration: underline; }

.wiah-student-profile-page .post-navigation,
.wiah-student-profile-page .comments-area,
.wiah-student-profile-page .widget-area,
.wiah-student-profile-page aside.sidebar { display: none !important; }

@media (max-width: 900px) {
  .wiah-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wiah-card__photo { height: 280px; }
}

@media (max-width: 620px) {
  .wiah-directory { grid-template-columns: 1fr; }
  .wiah-card__photo { height: min(105vw, 420px); }
  .wiah-profile { grid-template-columns: 1fr; margin-top: 30px; }
  .wiah-profile__photo { max-width: 420px; margin: 0 auto; }
}

.wiah-gate{max-width:880px;margin:30px auto;padding:clamp(26px,5vw,56px);border:1px solid #e8dfd3;border-radius:24px;background:#fffaf2;box-shadow:0 18px 45px rgba(23,50,77,.08)}
.wiah-gate__eyebrow{display:inline-block;margin-bottom:8px;color:#287f86;font-size:14px;font-weight:800;letter-spacing:.08em}
.wiah-gate h2{margin:0 0 12px;color:#17324d;font-size:clamp(30px,5vw,48px);line-height:1.08}
.wiah-gate__intro p{max-width:700px;margin:0 0 28px;color:#526579;font-size:18px;line-height:1.6}
.wiah-gate__form{display:grid;grid-template-columns:1fr 1fr;gap:18px 22px}
.wiah-gate__form p{margin:0}.wiah-gate__form label{display:block;color:#17324d;font-weight:700}
.wiah-gate__form input[type="text"],.wiah-gate__form input[type="email"]{width:100%;margin-top:7px;padding:13px 15px;border:1px solid #b8c2cc;border-radius:9px;background:#fff;font:inherit}
.wiah-gate__check,.wiah-gate__button,.wiah-gate__note,.wiah-gate__error{grid-column:1/-1}.wiah-gate__check label{font-weight:400;line-height:1.45}.wiah-gate__check input{margin-right:8px}
.wiah-gate__button{padding:15px 24px;border:0;border-radius:10px;background:#f4a621;color:#17324d;font-size:17px;font-weight:800;cursor:pointer}.wiah-gate__button:hover{background:#e9990f}
.wiah-gate__note{color:#607080;font-size:14px;line-height:1.5}.wiah-gate__error{padding:12px 14px;border-left:4px solid #b42318;background:#fff;color:#7a271a}
.wiah-gate__hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media(max-width:700px){.wiah-gate__form{grid-template-columns:1fr}.wiah-gate{border-radius:16px}.wiah-gate__intro p{font-size:16px}}

.wiah-checkout{margin-top:22px}.wiah-checkout__choices{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 0 18px;padding:0;border:0}.wiah-checkout__choices legend{grid-column:1/-1;margin-bottom:9px;color:var(--wiah-navy);font-size:17px;font-weight:800}.wiah-checkout__choices label{display:flex;gap:10px;align-items:flex-start;padding:14px;border:1px solid #d8cdbf;border-radius:10px;background:#fff;cursor:pointer}.wiah-checkout__choices input{margin-top:4px}.wiah-checkout__choices span{display:flex;flex-direction:column}.wiah-checkout__choices small{margin-top:3px;color:#607080;line-height:1.35}.wiah-paypal-buttons{min-height:48px}.wiah-checkout__status{margin:10px 0 0;color:#526579;font-size:14px;line-height:1.45}.wiah-checkout--complete{padding:18px;border:1px solid #83c69b;border-radius:12px;background:#f0faf3}.wiah-profile-access{max-width:700px;margin:60px auto;padding:32px;border:1px solid #e8dfd3;border-radius:18px;background:#fffaf2;text-align:center}.wiah-profile-access .wiah-card__button{display:inline-block;margin-top:10px}
@media(max-width:620px){.wiah-checkout__choices{grid-template-columns:1fr}}
