/**
 * Google Ad Manager (GAM) Responsive Leaderboard Format
 * Placed below video player with fixed placeholder to prevent CLS
 */
.gam-leaderboard-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  box-sizing: border-box;
  clear: both;
}
.gam-leaderboard-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gam-leaderboard-placeholder {
  min-width: 320px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.gam-leaderboard-placeholder > div {
  display: flex;
  justify-content: center;
}
.gam-leaderboard-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


@media screen and (min-width: 728px) {
  .gam-leaderboard-wrapper {
    max-width: 728px;
  }

  .gam-leaderboard-placeholder {
    min-width: 728px;
    min-height: 90px;
  }
}
@media screen and (min-width: 970px) {
  .gam-leaderboard-wrapper {
    max-width: 970px;
  }

  .gam-leaderboard-placeholder {
    min-width: 970px;
    min-height: 90px;
  }
}
@media print {
  .gam-leaderboard-container {
    display: none !important;
  }
}
