/* Cookie banner — Paper Potion (AdSense-ready consent) */
.pp-cookie-banner {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  pointer-events: none;
  background: transparent;
}
.pp-cookie-banner[hidden] {
  display: none !important;
}
.pp-cookie-banner-inner {
  pointer-events: auto;
  box-sizing: border-box;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid #d9e0e5;
  border-radius: 14px 14px 0 0;
  background: #ffffff;
  color: #10202b;
  box-shadow: 0 -8px 32px rgba(17, 32, 45, 0.18);
  font-family: "Manrope Variable", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
.pp-cookie-banner-inner p {
  margin: 0 0 12px;
}
.pp-cookie-banner-inner a {
  color: #1a4a6e !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pp-cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.pp-cookie-btn {
  appearance: none;
  border-radius: 999px;
  padding: 10px 18px;
  font: 700 13px/1 "Manrope Variable", sans-serif;
  cursor: pointer;
  border: 1px solid #1a4a6e;
}
.pp-cookie-btn-reject {
  background: #ffffff;
  color: #102d42;
}
.pp-cookie-btn-accept {
  background: #1a4a6e;
  color: #ffffff;
  border-color: #1a4a6e;
}
.pp-cookie-btn:focus-visible {
  outline: 2px solid #1a4a6e;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .pp-cookie-banner {
    padding: 8px;
  }
  .pp-cookie-banner-inner {
    width: 100%;
    max-height: 42vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 28px rgba(17, 32, 45, 0.2);
  }
  .pp-cookie-banner-actions {
    justify-content: stretch;
  }
  .pp-cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
