/* Custom Failsafe Footer Injection and Site Footer Cleanup */
body:after {
    /* Your Custom Text is injected here: */
    content: "Copyright © 2025 Beats in Brief. All Rights Reserved.";
    /* Style to ensure visibility and placement */
    display: block;
    position: relative;
    clear: both;
    text-align: center;
    padding: 20px 0;
    margin-top: 0 !important;
    border-top: none !important;
    font-size: 14px;
    background-color: #000000;
    color: #a7aaad;
    z-index: 99999;
}

/* Remove bottom spacing/border from the element above the injected text */
.site-footer {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* Hide all known theme credit/info/page elements that are unwanted */
.site-info,
.af-footer-bottom-credit,
.copyright-text,
#aft-main-banner-latest-trending-popular-update-tab, /* Hides the specific tab element */
.page_item, /* Hides all page links */
.sd-sharing, /* Hides Sharedaddy/Jetpack sharing block */
.aft-social-share { /* Hides general social share containers */
    display: none !important;
}

/* Optimized Category List Layout and Styling Cleanup */
.wp-block-categories-list.wp-block-categories {
    /* Grid Layout & Spacing */
    margin-top: 1.5rem; /* New gap above the list */
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: grid;
    /* Default: 3 columns on small screens */
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
}

/* Remove background/border from list items for cleaner look */
.wp-block-categories-list.wp-block-categories li {
    background: none;
    border: none;
    box-shadow: none;
}

/* Base font size for category links (small screens) */
.wp-block-categories-list.wp-block-categories li a {
    font-size: 0.875rem; /* Slightly smaller font for better fit */
    line-height: 1.5;
    display: block;
}

/* Desktop Breakpoint: Keep 3 columns, or change to 4 if needed (Original was )3 */
@media (min-width: 768px) {
    .wp-block-categories-list.wp-block-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Increase font size slightly on desktop if necessary, otherwise remove this section */
    /* .wp-block-categories-list.wp-block-categories li a { font-size: 1rem; } */
}

/* Mobile Tweak: Apply a very small font size for narrow screens to prevent text overlap */
@media (max-width: 767px) {
    .wp-block-categories-list.wp-block-categories li a {
        font-size: 0.6rem !important; /* Adjusted slightly from 0.6rem for readability */
    }
}

/* Cleanup for General Blocks (Social, Widgets, Groups) */
/* Targets social icon links and their containers to remove backgrounds/shadows */
.wp-block-wpzoom-blocks-social-icons .social-icon-link,
.wp-block-wpzoom-blocks-social-icons.is-style-with-canvas-round {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important; /* Specific to the link element */
}

/* Targets common wrapper blocks/widgets to explicitly remove backgrounds */
#block-24,
.widget_block,
.wp-block-group.is-layout-constrained {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}