/*
 * Yirental blog tweaks on top of the digeco theme.
 *
 * Kept separate from yirental-header-footer.css on purpose: that file is a 1:1
 * skin sync of next-web's header/footer and gets wholesale replaced on re-sync,
 * while the rules here are WordPress-only adjustments.
 */

/* Slim page banner: digeco's stock banner (padding from the Redux options
 * banner_top_padding / banner_bottom_padding, printed as inline style) fills
 * most of the first viewport, pushing the post list below the fold.
 * !important is required to beat both that inline style and digeco's own
 * `padding: 80px 0 !important` rule at <=991px. */
.entry-banner .entry-banner-content {
  padding-top: 48px !important;
  padding-bottom: 52px !important;
}
.entry-banner .entry-banner-content h1 {
  font-size: 32px;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .entry-banner .entry-banner-content {
    padding: 36px 0 40px !important;
  }
  .entry-banner .entry-banner-content h1 {
    font-size: 28px;
  }
}
