/* Homepage layout fixes for myburnquest.com */

/*
 * Premium pricing cover (#download): the headline "Unlock Premium for Just"
 * lives at the top of premium-pricing.png. object-fit:cover + 55vh min-height
 * was cropping it off. Match the image aspect ratio and anchor to the top.
 */
.bq-premium-cover.wp-block-cover {
  min-height: unset !important;
  aspect-ratio: 3 / 2;
  height: auto !important;
  overflow: visible !important;
}

.bq-premium-cover .wp-block-cover__image-background {
  object-fit: cover !important;
  object-position: center top !important;
}

/* Empty spacer block — no overlay content, only wasted height */
.bq-premium-cover .wp-block-cover__inner-container > .wp-block-spacer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
}

@media (max-width: 782px) {
  .bq-premium-cover.wp-block-cover {
    aspect-ratio: 4 / 3;
    min-height: 280px !important;
  }
}
