.mugshot-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 6px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .5rem;
}

.sidebar {
    display: none;
}

@media (min-width: 992px) {
    .sidebar {
        display: block;
    }
}

.back-btn {
    background: transparent;
    padding: 10px 35px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.35s ease-in-out;
    color: #232323;
    border: 2px solid #0cb8b6;
    background: transparent;
}

.back-link {
    padding: 10px 35px;
    border: 2px solid #0cb8b6;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    text-decoration: none;
}

.back-arrow {
    flex-shrink: 0;
}

.summary {
    margin-bottom: 25px;
    color: #666666;
    font-weight: 500;
}

.views {
    padding: 2px 15px;
    border-radius: 30px;
    white-space: nowrap;
    float: right;
    border: 2px solid #0cb8b6;
}

.charges {
    padding: 30px;
    background: #ffffff;
   /* border: 1px solid #e7e7e7;*/
    width: 100%;
}

.chg-title {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.charge-list {
    margin: 0;
    list-style-type: none;
}

.charge-list li {
    padding: 15px;
    /*text-transform: uppercase;*/
}

.charge-list li:nth-child(2n) {
    background: #f1f1f1;
    margin: 10px 0;
}

.share {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.share a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.share a svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex-shrink: 0;
}


.results-summary {
    font-size: 0.95rem;
    color: #555;
}

.results-summary strong {
    color: #000;
}

.results-summary .time-window {
    color: #666;
    font-weight: 500;
    margin-left: 6px;
}

.x-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 6px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.x-share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.x-share-btn:hover {
    background-color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #fff;
}

.x-share-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.x-share-btn:focus-visible {
    outline: 2px solid #1d9bf0;
    outline-offset: 2px;
}




