/*
Theme Name: PaperStreet Child
Theme URI: https://www.parkerandparkerattorneys.com
Description: Parker & Parker child theme — breadcrumbs, label overrides, legacy suppression
Author: Parker & Parker
Template: paperstreet
Version: 2.0
*/

/* === Breadcrumb Bar === */
.pp-breadcrumbs {
    background: #f5f5f5;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}
.pp-breadcrumbs a {
    color: #1a5276;
    text-decoration: none;
}
.pp-breadcrumbs a:hover {
    text-decoration: underline;
}
.pp-breadcrumbs .separator {
    margin: 0 4px;
    color: #999;
}
/* Hide breadcrumbs on homepage */
.home .pp-breadcrumbs {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .pp-breadcrumbs {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* === Legacy Breadcrumb Suppression === */
/* Hide inline breadcrumb text embedded in blog post content */
.post-body p:first-child a[href="/"],
.post-body-excerpt p:first-child a[href="/"] {
    display: none;
}