/* In-content unit: no scrollbars (clip overflow instead of scroll) */
#gg-section {
  margin: 1.25rem auto;
  max-width: 100%;
  text-align: center;
  min-height: 0;
  overflow: hidden;
  line-height: 0;
}
#gg-section .adsbygoogle {
  display: inline-block !important;
  max-width: min(100%, 600px);
  vertical-align: top;
  line-height: normal;
}

/* Skyscrapers: fixed to viewport left/right with 10px inset */
.ads-sky-wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 600px;
  z-index: 40;
  box-sizing: border-box;
  pointer-events: auto;
}
.ads-sky-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.55);
  color: #f3f4f6;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.15s ease;
}
.ads-sky-close:hover {
  background: rgba(31, 41, 55, 0.88);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transform: scale(1.05);
}
.ads-sky-close:active {
  transform: scale(0.96);
}
.ads-sky-close:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.9);
  outline-offset: 2px;
}
.ads-sky-close svg {
  flex-shrink: 0;
}
.ads-sky-left {
  left: max(10px, env(safe-area-inset-left, 0px));
  right: auto;
}
.ads-sky-right {
  right: max(10px, env(safe-area-inset-right, 0px));
  left: auto;
}
@media (max-width: 800px) {
  .ads-sky-wrap {
    display: none !important;
  }
}
