/* ================================================================
   polityka.css – style dla polityki-prywatnosci.html
   ================================================================ */

.polityka-wrap {
  min-height: 100vh;
  padding: 7rem 5% 5rem;
  background: var(--blk);
}

.polityka-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pol-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pol-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.pol-date {
  color: var(--mut);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* Treść dokumentu */
.pol-content {
  background: var(--g1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 3rem;
}

.pol-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--p2);
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.pol-content h2:first-child {
  margin-top: 0;
}

.pol-content p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.pol-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.pol-content ul li {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.pol-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--p2);
  font-weight: 700;
}

.pol-content a {
  color: var(--p2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.pol-content a:hover {
  color: var(--p3);
}

.pol-back {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .polityka-wrap {
    padding: 6rem 5% 3rem;
  }
  .pol-content {
    padding: 2rem 1.5rem;
  }
}
