/* WellnessCompass Ads — Frontend v3 */

/* ── Label ── */
.wcads-label {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6E8070;
  margin-bottom: 6px;
}

/* ── Unit ── */
.wcads-unit {
  line-height: 0;
}

/* ── Link — URL always hidden ── */
.wcads-link {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  text-decoration: none !important;
}
.wcads-link img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.2s;
}
.wcads-link:hover img { opacity: 0.92; }

/* ── Zones ── */
.wcads-zone {
  text-align: center;
  padding: 16px 0;
}
.wcads-zone-header,
.wcads-zone-footer {
  background: #F2EDE4;
  border-top: 1px solid #DDE8E0;
  border-bottom: 1px solid #DDE8E0;
  padding: 12px 0;
}
.wcads-zone-footer { border-top: 1px solid #DDE8E0; border-bottom: none; }
.wcads-zone-inner  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── In-content & after-content: shrink-wrap to ad size ── */
.wcads-zone-in-content,
.wcads-zone-after-content {
  background: #EAF3ED;
  border-radius: 8px;
  padding: 20px;
  margin: 32px auto;
  border: 1px solid #DDE8E0;

  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.wcads-zone-sidebar {
  margin-bottom: 24px;
}

/* ── Group container ── */
.wcads-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.wcads-group-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

/* When group is inside a zone, the zone still shrink-wraps */
.wcads-zone-in-content .wcads-group,
.wcads-zone-after-content .wcads-group {
  width: auto;
}

/* ── Responsive: scale down large banners on small screens ── */
@media (max-width: 768px) {
  .wcads-size-728x90 .wcads-link,
  .wcads-size-728x90 .wcads-html {
    width: 100% !important;
  }
  .wcads-size-728x90 img {
    width: 100% !important;
    height: auto !important;
  }
  .wcads-size-160x600 .wcads-link { display: none; }

  /* On mobile, group switches to column */
  .wcads-group-inner {
    flex-direction: column !important;
    align-items: center;
  }
}
