/* Gemensam CSS för alla info-undersidor (about, policy, etc.) */

/* Hero med orange gradient */
.info-page-hero {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  background: linear-gradient(90deg, #ff3b30 0%, #ff5e13 45%, #ff8c00 100%);
  color: #111;
}

.info-page-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #000;
}

/* Glansig hjärtrytm-linje under hero */
.info-page-hero::after,
.info-page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94vw);
  pointer-events: none;
}

.info-page-hero::after {
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.55) 25%,
    rgba(255,255,255,.98) 50%,
    rgba(255,255,255,.55) 75%,
    rgba(255,255,255,0) 100%);
  box-shadow:
    0 1px 10px rgba(255,255,255,.35),
    0 0 1px rgba(255,255,255,.85) inset;
}

.info-page-hero::before {
  bottom: -6px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,255,255,.28), rgba(255,255,255,0));
  filter: blur(6px);
  opacity: .55;
}

/* Innehåll */
.info-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: white;
}

.info-content h2 {
  color: #ff5e13;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.info-content p {
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.6;
  color: #333;
}

.info-content ul,
.info-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.info-content strong {
  color: #ff5e13;
}

/* Tillbaka-knapp */
.info-back-section {
  text-align: center;
  padding: 2rem 1rem 3rem;
  background: white;
}

.info-btn-back {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(90deg, #ff3b30, #ff5e13, #ff8c00);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: opacity 0.2s;
}

.info-btn-back:hover {
  opacity: 0.9;
}

/* Footer */
.info-footer {
  text-align: center;
  padding: 1.5rem;
  background: #f5f5f5;
  color: #666;
  font-size: 0.9rem;
}
