.hero-meta-content__heading.hero-meta-content__text {
    font-size: 1.75rem !important; /* Adjust this (e.g., 1.5rem) to make it even smaller */
    line-height: 1.3 !important;
    max-width: 800px !important;    /* Makes the text block "narrower" */
    margin-left: auto !important;   /* Centers the narrow block */
    margin-right: auto !important;  /* Centers the narrow block */
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;  /* Optional: keeps it balanced if narrow */
}

/* Optional: Ensure the parent container doesn't restrict the height too much */
.hero-meta-content {
    padding: 20px !important;
    z-index: 2; /* Keeps text above the black overlay we made earlier */
}

/* The Clickable "Info" Button */
.disclosure-info-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5; /* Light Gray */
    color: #7a7a7a;           /* Darker Gray text */
    padding: 5px 12px;
    border-radius: 20px;       /* Rounded pill shape */
    font-size: 0.75rem;
    cursor: pointer;
    border: 1px solid #dbdbdb;
    transition: all 0.2s ease;
    user-select: none;
}

.disclosure-info-btn:hover {
    background-color: #eeeeee;
    color: #363636;
    border-color: #b5b5b5;
}

.disclosure-info-btn i {
    margin-right: 6px;
    font-size: 0.85rem;
}

/* The Expanded Information Box */
.disclosure-box {
    background-color: #fafafa;
    border: 1px dashed #dbdbdb; /* Dashed border for a "legal" feel */
    padding: 15px;
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    border-radius: 6px;
    text-align: left;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.header-disclosure {
    background-color: #112A47 !important; /* Change this to your preferred hex code */
    border-bottom: 1px solid #eeeeee !important; /* Optional: adds a subtle line at the bottom */
    width: 100% !important;
    display: block !important;
}

/* Container to ensure the logo has room to grow */
.header-disclosure__wrapper {
    display: flex !important;
    justify-content: center !important; /* Pins logo to the left */
    align-items: center !important;
    padding: 15px 20px !important;
    max-width: 1200px !important; /* Keeps it aligned with site content */
    margin: 0 auto !important;
}

/* The Logo - Responsive & Larger */
.header-disclosure__logo {
    /* Reset fixed attributes */
    width: auto !important; 
    height: auto !important;
    
    /* New Size Specs */
    max-width: 200px !important; /* Increased from the "small" look */
    min-width: 100px !important; /* Prevents it from getting too tiny */
    
    /* Responsiveness */
    display: block !important;
    transition: max-width 0.3s ease !important;
}

.footer--menu__logo img {
    /* Critical: This stops the stretching */
    height: auto !important; 
    width: 100% !important;
    
    /* Size Control: Adjust these to fit your footer design */
    max-width: 120px !important; 
    display: block !important;
    
    /* Optional: Center it if the footer is narrow */
    margin: 0 auto !important; 
}

/* Layout for the review content */
.review-content-wrapper {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important; /* Space between image and text */
}

/* Force all images to be the exact same size */
.review-left-img {
    width: 200px !important;  /* Adjust this to make image bigger/smaller */
    height: 200px !important; /* Must match width for a square look */
    object-fit: cover !important; /* Prevents stretching */
    border-radius: 8px !important;
    flex-shrink: 0 !important; /* Prevents the image from getting squashed */
}

/* Mobile Tweak: Stack them vertically if the screen is too small */
@media screen and (max-width: 600px) {
    .review-container {
        /* This forces the padding to be even and overrides theme defaults */
        padding-left: 0px !important; 
        padding-right: 0px !important;
        
        /* Ensure the container itself isn't being pushed by a margin */
        margin-left: 0 !important;
        margin-right: 0 !important;
        
        /* Make sure it takes up the full width of the parent */
        width: 100% !important; 
        box-sizing: border-box !important;
    }
    /* 1. Fix the Parent Wrapper */
    .article-container__wrapper {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
    }

    /* 2. Fix the Review Container */
    .review-container {
        padding: 20px 0px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. Center the Image Wrapper & Image */
    .review-content-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important; /* Forces text content to center */
        width: 100% !important;
    }

    .review-left-img {
        display: block !important;
        margin: 0 auto 15px auto !important; /* Explicit auto margins for centering */
        width: 150px !important; 
        height: 150px !important;
        max-width: 180px !important;
    }

    /* 4. Fix the <q> tag (The Quote) */
    .review-text-column q {
        display: block !important;    /* Change from inline to block for centering */
        text-align: center !important;
        width: 100% !important;
        quotes: none !important;      /* Removes browser-added quote marks if they're causing gaps */
    }

    /* 5. Center the Stars & Author */
    .review-media-item {
        margin: 15px auto !important; 
        display: block !important;
        float: none !important;       /* Removes any legacy floats from WP */
    }

    .review-text-column p {
        text-align: center !important;
        margin: 10px auto !important;
    }
}
/* Mobile Tweak */
@media screen and (max-width: 600px) {
    .footer--menu__logo img {
        max-width: 140px !important;
    }
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .header-disclosure__logo {
        max-width: 200px !important; /* Slightly smaller for mobile phones */
    }
    .header-disclosure__wrapper {
        padding: 10px 15px !important;
        justify-content: center !important; /* Optional: centers logo on mobile */
    }
}