/* Public portal branding lives outside the authenticated Entries iframe. */
.fasa-portal-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: left;
}
.fasa-portal-brand img {
  width: 108px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}
.fasa-portal-brand h1 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.25rem, 2.7vw, 1.8rem);
  line-height: 1.25;
}
.fasa-portal-resource-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  font-weight: 600;
}
@media (max-width: 480px) {
  .fasa-portal-brand { gap: 0.75rem; }
  .fasa-portal-brand img { width: 72px; }
}

.fasa-portal-description {
  max-width: 650px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  line-height: 1.6;
}

.fasa-online-guide-page.fasa-online-entries > .fasa-online-guide-hero {
  max-width: 520px;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid rgb(61, 106, 153);
  border-radius: 7px;
  background-color: #edf3f7;
  background-image: linear-gradient(rgba(241, 249, 255, .46), rgba(241, 249, 255, .46)), url("../../images/silver-card-soft-satin.png?v=20260821-satin-light");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 18px rgba(16, 34, 53, .1);
}
.fasa-online-entries > .fasa-online-guide-hero[hidden] { display: none; }
.fasa-online-entries .fasa-portal-brand { gap: 1rem; }
.fasa-online-entries .fasa-portal-brand h1 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

.fasa-entries-checkout {
  max-width: 760px;
  margin: 0 auto 1rem;
  padding: 1rem;
  border: 1px solid rgb(61, 106, 153);
  border-radius: 7px;
  background: #f4f8fc;
  box-shadow: 0 8px 18px rgba(16, 34, 53, .1);
}
.fasa-entries-checkout[hidden] { display: none; }
.fasa-entries-checkout p:empty { display: none; }
.fasa-entries-checkout-button {
  display: inline-block;
  margin: 0.25rem 0 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid #174d78;
  border-radius: 4px;
  background: #174d78;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.fasa-entries-checkout-button:hover:not(:disabled) { background: #0e3859; }
.fasa-entries-checkout-button:disabled { cursor: wait; opacity: 0.7; }
