.container,
.cp-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}
.utility-bar {
    background: #12314a;
    color: #eaf2fa;
    font-size: 0.86rem;
    border-bottom: 1px solid #ff1493;
}
.utility-inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: center;
    min-height: 40px;
    padding: 0;
}
.utility-actions,
.utility-status {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.main-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rw-line);
}
.main-header-inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 108px;
    padding: 0;
}
.breadcrumbs {
    margin: 1rem 0 1.25rem;
    font-size: 0.92rem;
    color: var(--rw-muted);
}
.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumbs-item + .breadcrumbs-item::before {
    content: '/';
    margin-right: 0.5rem;
    color: #91a0b2;
}
.cp-shell {
    padding: 1.25rem 0 2rem;
}
.cp-topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--rw-line);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}
.cp-topbar code { font-size: 0.95rem; }
.cp-grid { display: grid; gap: 1rem; }
.cp-grid--homepage {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 1rem;
}
.site-footer {
    margin-top: 2rem;
    background: #102038;
    color: #edf4ff;
}
.site-footer a { color: #b8d7ff; }
.site-footer-top-inner,
.site-footer-bottom-inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.25rem 0;
}
.site-footer-top-inner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.site-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.92rem;
}
.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}
@media (max-width: 767.98px) {
    .utility-inner,
    .main-header-inner {
        align-items: center;
    }
    .utility-inner {
        min-height: 36px;
    }
    .utility-status {
        font-size: 0.8rem;
    }
    .main-header-inner {
        flex-direction: column;
        gap: 0.45rem;
        padding: 0.35rem 0;
        min-height: 0;
    }
}
@media (max-width: 575px) {
    .cp-shell {
        width: min(100%, calc(100% - 1rem));
    }
}
