/* Public Self-Disclosure — card & pill layout (SVGU brand) */

.psd-page {
  background: #fff;
}

.psd-band {
  padding: 2.75rem 0;
}

.psd-band--alt {
  background: var(--bg-soft);
}

.psd-band--intro {
  padding-top: 2.25rem;
  padding-bottom: 1.5rem;
}

.psd-band--docs {
  padding-top: 0;
  padding-bottom: 2rem;
}

.psd-doc-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}

.psd-doc-list li + li {
  margin-top: 0.75rem;
}

.psd-doc-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.psd-doc-list a:hover {
  border-color: rgba(23, 48, 88, 0.22);
  box-shadow: var(--shadow-md);
  color: var(--brand-accent);
}

.psd-doc-list i {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.psd-band--cta {
  padding-bottom: 3.5rem;
}

.psd-intro {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
}

.psd-heading {
  margin: 0 0 0.35rem;
  text-align: center;
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.psd-heading__lead {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.psd-heading--section {
  margin: 0;
  text-align: left;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.25rem);
}

/* Pill quick links */
.psd-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.psd-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.psd-pill:hover {
  border-color: rgba(23, 48, 88, 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.psd-pill__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-primary), #254a7f);
  color: #fff;
  font-size: 1.15rem;
}

.psd-pill__text {
  color: var(--brand-primary);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Section blocks */
.psd-section__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgba(23, 48, 88, 0.1);
}

.psd-section__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(170, 34, 46, 0.1);
  color: var(--brand-accent);
  font-size: 1.1rem;
}

/* Link cards grid */
.psd-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.psd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 1rem 1rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(23, 48, 88, 0.06);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.psd-band--alt .psd-card {
  background: #fff;
}

.psd-card:hover {
  border-color: rgba(23, 48, 88, 0.2);
  box-shadow: 0 8px 22px rgba(23, 48, 88, 0.12);
  transform: translateY(-3px);
}

.psd-card__label {
  display: block;
  padding-right: 1.5rem;
  color: var(--brand-primary);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.psd-card__action {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--brand-accent);
  font-size: 0.85rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.psd-card:hover .psd-card__action {
  background: var(--brand-primary);
  color: #fff;
}

/* Bottom CTA band */
.psd-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1e3d6b 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.psd-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.psd-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.psd-cta .btn-brand {
  background: #fff;
  border-color: #fff;
  color: var(--brand-primary);
  white-space: nowrap;
}

.psd-cta .btn-brand:hover {
  background: var(--bg-soft);
  border-color: var(--bg-soft);
  color: var(--brand-primary);
}

@media (max-width: 1199.98px) {
  .psd-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psd-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .psd-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .psd-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.85rem 0.95rem;
  }

  .psd-card__label {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
  }

  .psd-card__action {
    align-self: center;
    flex: 0 0 auto;
  }
}

@media (max-width: 575.98px) {
  .psd-band {
    padding: 2rem 0;
  }

  .psd-pills {
    grid-template-columns: 1fr;
  }

  .psd-pill__icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .psd-cards {
    grid-template-columns: 1fr;
  }

  .psd-section__head {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.7rem;
  }

  .psd-heading--section {
    flex: 1 1 auto;
    font-size: 1.05rem;
  }

  .psd-cta {
    padding: 1.15rem;
  }

  .psd-cta .btn-brand {
    width: 100%;
  }
}
