/* Structure only — the placeholder tint uses a design token so it re-skins per
   brand. The MLB logo art carries its own greys. */
.ads {
  display: flex;
  justify-content: center;
}

.ads .ads-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  padding: 24px;
  background: var(--light-color);
}

.ads .ads-logo {
  display: inline-flex;
  width: 60px;
}

.ads .ads-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Header leaderboard variant — fixed-height full-bleed slot above the header.
   The placeholder is locked to the exact reserved height (66px mobile / 106px
   up), matching .header-ads-container, so it fills the pre-reserved space with
   zero growth = no CLS. The logo is capped to the box height. */
.ads.header-ads {
  margin: 0;
}

.ads.header-ads .ads-placeholder {
  box-sizing: border-box;
  min-height: 0;
  height: 66px;
  padding: 8px 16px;
}

.ads.header-ads .ads-logo {
  width: auto;
  height: 40px;
}

.ads.header-ads .ads-logo svg {
  width: auto;
  height: 100%;
}

@media (width >= 768px) {
  .ads.header-ads .ads-placeholder {
    height: 106px;
  }

  .ads.header-ads .ads-logo {
    height: 56px;
  }
}
