/*
Theme Name: Astra Child
Theme URI: https://hrbypass.com
Author: Chidubem Shalom Oluebubechukwu
Author URI: https://hostcleverly.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* =============================================================================
   FIX: Astra Theme Content Clipping on Provider Profile Page
   =============================================================================
   Ensures the provider profile page scrolls naturally without cutting off
   content below the Skills & Expertise section.
   ============================================================================= */

/* Fix 1: Force the Astra content wrapper to expand to contain all children */
#content,
.site-content {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

/* Fix 2: Ensure the entry content doesn't clip */
.entry-content,
.post-content,
.page-content {
    overflow: visible !important;
    height: auto !important;
}

/* Fix 3: Ensure the profile container passes through its natural height */
.hrbypass-public-profile {
    overflow: visible !important;
    height: auto !important;
}

/* Fix 4: If the page uses Flexbox layout, fix the flex child constraint */
.site-primary,
.content-area {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}
