/* =============================================
   ROQUE LAW FIRM — GLOBAL THEME OVERRIDES
   ============================================= */

/* Hide top bar on all pages */
.header-top-bar,
.top-bar,
.header-top,
#header-top {
  display: none !important;
}

/* =============================================
   SINGLE POSTS: FULL-WIDTH PREMIUM LAYOUT
   ============================================= */

/* 1. Remove the theme container constraints on single posts */
body.single-post section.container.lg\:flex {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
}

/* 2. Hide sidebar on single posts */
body.single-post .widget-area.sidebar {
  display: none !important;
}

/* 3. Make post content take full width */
body.single-post .post-content.content-body {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 0 !important;
}

/* 4. Make blogpost wrapper flush */
body.single-post .blogpost.mb-10 {
  padding-bottom: 0 !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

/* 5. rq2-wrap — now that parent is 100% wide, just fill it */
body.single-post .rq2-wrap {
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  overflow: hidden;
}

/* 6. Hero: Houston skyline background + full-height */
body.single-post .rq2-hero {
  background: linear-gradient(165deg, rgba(8,18,42,0.92) 0%, rgba(15,29,61,0.80) 60%, rgba(26,45,90,0.70) 100%),
    url('https://roque-law-firm.com/wp-content/uploads/2022/03/Houston-3.jpeg') center/cover no-repeat !important;
  min-height: 88vh !important;
}

/* 7. Hide blog post title/meta/category header above premium content */
body.single-post .blogpost > .flex.flex-col-reverse {
  display: none !important;
}

/* 8. Hide social share, post nav, related posts, comments */
body.single-post .sharedaddy,
body.single-post .sd-block.sd-social,
body.single-post .social_icons.flex.items-center,
body.single-post .posts-navigation,
body.single-post .vertical-related-posts,
body.single-post .comment-respond {
  display: none !important;
}

/* 9. Prevent horizontal scrollbar */
html { overflow-x: hidden !important; }

/* =============================================
   PAGES WITH RQ2 CONTENT: SAME TREATMENT
   ============================================= */
body.page .rq2-hero {
  background: linear-gradient(165deg, rgba(8,18,42,0.92) 0%, rgba(15,29,61,0.80) 60%, rgba(26,45,90,0.70) 100%),
    url('https://roque-law-firm.com/wp-content/uploads/2022/03/Houston-3.jpeg') center/cover no-repeat !important;
  min-height: 88vh !important;
}


/* =============================================
   CRITICAL FIX: article.post_container width
   The theme keeps article at ~70% for sidebar layout.
   Force it to 100% when sidebar is hidden.
   ============================================= */
body.single-post article.post_container {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
}