/* PSU Policy Pages - Additional Styles */

.policy-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  position: relative;
  z-index: 1;
}

.policy-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--psu-gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.8;
}

.policy-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--psu-white);
}

.policy-subtitle {
  font-size: 14px;
  color: var(--psu-gray-500);
  margin-bottom: 40px;
  font-weight: 500;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--psu-gold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.policy-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--psu-gray-300);
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.policy-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--psu-gray-300);
  margin-bottom: 10px;
}

.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--psu-gold);
  border-radius: 50%;
}

.policy-section a {
  color: var(--psu-gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.policy-section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Contact page specific */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0 48px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.contact-card:hover {
  background: rgba(212, 163, 42, 0.04);
  border-color: rgba(212, 163, 42, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(212, 163, 42, 0.12);
  border: 1px solid rgba(212, 163, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--psu-gold);
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--psu-white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.contact-card p {
  font-size: 13px;
  color: var(--psu-gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-card a {
  color: var(--psu-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  word-break: break-all;
}

.contact-card strong {
  color: var(--psu-white);
  font-weight: 700;
  display: block;
  font-size: 14px;
}

/* Logo link in header */
.logo-link {
  display: inline-block;
  text-decoration: none;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--psu-gray-500);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--psu-gold);
}

@media (max-width: 600px) {
  .policy-container {
    padding: 32px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
