.tp-no-photo{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6;
  overflow:hidden;
}

.tp-no-photo__label{
  display:block;
  padding:0;
  margin:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;

  color:#9ca3af;
  font-size:clamp(14px, 2vw, 22px);
  line-height:1.2;
  font-weight:700;
  text-align:center;
}
/* ===== FINAL FIX: no-photo label has no chip in dark theme ===== */
html[data-tp-theme="dark"] .tp-no-photo__label{
  display:inline !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  color:var(--tp-dark-muted, #aeb8ca) !important;
}

/* ===== FINAL NO-PHOTO CHIP REMOVAL ===== */
html[data-tp-theme="dark"] body :is(.tp-no-photo__label,.offer-image-empty-label){
  display:inline !important;
  min-width:0 !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  color:#aeb8ca !important;
}


/* Keep vertical stories and square creatives readable instead of hard-cropping them. */
:is(.tp-gallery__slide,.image-preview)[data-tp-image-aspect="portrait"],
:is(.tp-gallery__slide,.image-preview)[data-tp-image-aspect="square"]{
  background:#eef2f7;
}

html[data-tp-theme="dark"] :is(.tp-gallery__slide,.image-preview)[data-tp-image-aspect="portrait"],
html[data-tp-theme="dark"] :is(.tp-gallery__slide,.image-preview)[data-tp-image-aspect="square"]{
  background:#111827;
}

:is(.tp-gallery__slide,.image-preview) img[data-tp-image-aspect="portrait"],
:is(.tp-gallery__slide,.image-preview) img[data-tp-image-aspect="square"]{
  object-fit:contain !important;
  object-position:center center;
}
