/*
 Theme Name:   Newspaper Child
 Template:     Newspaper
 Description:  Staging UX: hide above-logo promo, reserve ad slot heights (CLS).
 Version:      1.0.0
 Author:       Mediawala
 Text Domain:  newspaper-child
*/

/* ---------------------------------------------------------------------------
 * Phase 1: logo/nav must not sit below a header promo banner.
 * td_ads header spot is cleared in DB; this is a CSS fallback.
 * --------------------------------------------------------------------------- */
.td-a-rec-id-header,
.td-header-sp-recs,
.td-header-rec-wrap {
	display: none !important;
}

/* ---------------------------------------------------------------------------
 * Reserve space for remaining ad slots to reduce layout shift (CLS).
 * --------------------------------------------------------------------------- */
.td-a-rec {
	min-height: 90px;
}

.td-a-rec-id-sidebar {
	min-height: 250px;
}

.td-post-content .td-a-rec,
.td-ss-main-content .td-a-rec {
	min-height: 280px;
}

@media (max-width: 767px) {
	.td-a-rec-id-sidebar {
		min-height: 250px;
	}

	.td-post-content .td-a-rec {
		min-height: 250px;
	}
}
