/* ============================================
   Dropdown-uri mai late
   ============================================ */
@media (min-width: 992px) {
    .navbar .navbar-nav .nav-item .dropdown-menu {
        width: 340px;
    }
}

/* ============================================
   Titluri - stil românesc (fără capitalize)
   ============================================ */
* {
    text-transform: none !important;
}

/* ============================================
   Banner uniform - silueta clădirilor pe toate paginile
   ============================================ */
body:not(.home) .page-banner-area {
    position: relative;
}
body:not(.home) .page-banner-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../devlet/assets/images/page-bg-shape.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
}
body:not(.home) .page-banner-area::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background-image: url('../devlet/assets/images/banner-shape2.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 2;
}
body:not(.home) .page-banner-area .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Sidebar ascuns - conținut full width
   ============================================ */
.col-xl-8.col-lg-8.col-md-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}
.col-lg-4.col-md-12 #secondary,
#secondary.sidebar {
    display: none !important;
}
.col-lg-4.col-md-12:has(#secondary) {
    display: none !important;
}
/* Fallback fără :has - ascundem orice col-lg-4 vecin cu col-lg-8 în layout blog */
.blog-details-content + .col-lg-4,
.row > .col-lg-4.col-md-12:last-child {
    display: none !important;
}
