/* NJSP Guardian Network - Dashboard Styles */
:root {
    --navy: #0a1628;
    --navy-mid: #132743;
    --navy-light: #1a3a6b;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --white: #f8fafc;
    --muted: #94a3b8;
    --border: rgba(255,255,255,0.08);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --critical: #dc2626;
    --sidebar-w: 260px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.5;
}

.hidden { display: none !important; }

/* Login */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at top, var(--navy-light) 0%, var(--navy) 60%);
    padding: 2rem;
}
.login-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.login-logo { width: 120px; height: 120px; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 1.5rem; }
.login-card h1 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.login-card h1 span { color: var(--gold); display: block; font-size: 0.95rem; font-weight: 600; margin-top: 0.25rem; }
.login-card .subtitle { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }

/* Layout */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: var(--sidebar-w);
    background: var(--navy-mid);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
}
.sidebar-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sidebar-header img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); }
.sidebar-header .brand { font-size: 0.75rem; font-weight: 700; line-height: 1.3; }
.sidebar-header .brand span { color: var(--gold); }
.nav { flex: 1; padding: 1rem 0.75rem; }
.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.nav-item.active { background: rgba(201,162,39,0.15); color: var(--gold); }
.nav-item .badge {
    margin-left: auto;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
}
.sidebar-footer { padding: 1rem; border-top: 1px solid var(--border); }
.user-info { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.user-info strong { color: var(--white); display: block; }

.main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(19,39,67,0.5);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
}
.topbar h2 { font-size: 1.25rem; font-weight: 700; }
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.global-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.35rem 0.5rem 0.35rem 0.85rem;
    min-width: 280px;
}
.global-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    min-width: 160px;
}
.global-search input::placeholder { color: var(--muted); }
.content { padding: 2rem; flex: 1; }

.search-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.search-bar input[type="search"] {
    flex: 1;
    min-width: 240px;
    padding: 0.75rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
}
.search-bar select {
    padding: 0.75rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
}
.search-summary {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.search-section { margin-bottom: 1.75rem; }
.search-section h4 {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.search-result {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
.search-result:hover { border-color: rgba(201,162,39,0.35); }
.search-result-main { flex: 1; min-width: 0; }
.search-result-main strong { display: block; margin-bottom: 0.2rem; }
.search-result-meta {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}
.search-result-snippet {
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 0.35rem;
    opacity: 0.9;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}
.stat-card .label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.35rem; }
.stat-card .value { font-size: 2rem; font-weight: 800; }
.stat-card.gold .value { color: var(--gold); }
.stat-card.red .value { color: var(--danger); }
.stat-card.green .value { color: var(--success); }

/* Cards & Tables */
.card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-header h3 { font-size: 1rem; font-weight: 600; }
.card-body { padding: 1.25rem; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.85rem 1rem; text-align: left; font-size: 0.875rem; }
th { color: var(--muted); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
td { border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.badge-critical { background: rgba(220,38,38,0.2); color: #fca5a5; }
.badge-high { background: rgba(239,68,68,0.2); color: #fca5a5; }
.badge-medium { background: rgba(245,158,11,0.2); color: #fcd34d; }
.badge-low { background: rgba(34,197,94,0.2); color: #86efac; }
.badge-active { background: rgba(34,197,94,0.2); color: #86efac; }
.badge-draft { background: rgba(148,163,184,0.2); color: var(--muted); }
.badge-resolved { background: rgba(59,130,246,0.2); color: #93c5fd; }
.badge-new { background: rgba(201,162,39,0.2); color: var(--gold-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), #a8861e); color: var(--navy); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-danger { background: var(--danger); color: white; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.btn-ghost { background: none; color: var(--gold); padding: 0.4rem 0.75rem; }
.btn-ghost:hover { background: rgba(201,162,39,0.1); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}
.modal {
    background: var(--navy-mid);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 960px;
    max-height: 92vh;
    overflow-y: auto;
}
.modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--navy-mid);
    z-index: 1;
}
.modal-header h3 { font-size: 1.1rem; }
.modal-body { padding: 1.5rem; }
.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}
.close-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.close-btn:hover { color: var(--white); }

/* Map */
#map-container { height: 450px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.leaflet-container { background: var(--navy) !important; }

/* Media grid */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.media-item { border-radius: 8px; overflow: hidden; aspect-ratio: 1; background: var(--navy); }
.media-item-captioned { aspect-ratio: auto; display: flex; flex-direction: column; gap: 0.5rem; padding: 0.5rem; background: var(--navy-light); border: 1px solid var(--border); }
.media-item-captioned img, .media-item-captioned video { width: 100%; height: 120px; object-fit: cover; border-radius: 6px; }
.media-caption-input {
    width: 100%;
    padding: 0.45rem 0.6rem;
    font-size: 0.8rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--white);
}
.media-caption-label {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.media-item img, .media-item video { width: 100%; height: 100%; object-fit: cover; }

/* Tips */
.tip-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}
.tip-card .meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.tip-card .content { margin-bottom: 0.75rem; }
.tip-actions { display: flex; gap: 0.5rem; }

/* Footer */
.app-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
}
.app-footer strong { color: var(--gold); }

/* Toast */
.toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 2000; }
.toast {
    background: var(--navy-mid);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    animation: slideIn 0.3s ease;
}
.toast.error { border-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.empty-state { text-align: center; padding: 3rem; color: var(--muted); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .main { margin-left: 0; }
    .form-grid { grid-template-columns: 1fr; }
}

.section-title {
    margin: 1.5rem 0 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.person-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
.person-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}
.person-card .remove-person {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
}

.geocode-wrap { position: relative; }
.geocode-results {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-mid);
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.geocode-item {
    padding: 0.65rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.geocode-item:hover { background: rgba(201,162,39,0.1); }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 0.35rem;
    text-decoration: none;
}
.map-link:hover { text-decoration: underline; }

#alert-map-container { height: 420px; border-radius: 12px; border: 1px solid var(--border); }
.map-legend {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
}
.map-legend span { display: flex; align-items: center; gap: 0.35rem; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-beacon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}
.legend-beacon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.85);
    z-index: 1;
}
.legend-beacon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    animation: tip-beacon-pulse 2s ease-out infinite;
}

/* Sentinel tip beacons on alert maps */
.tip-beacon-marker {
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}
.tip-beacon-marker--grouped {
    width: 44px !important;
    height: 44px !important;
}
.tip-beacon {
    position: relative;
    width: 36px;
    height: 36px;
}
.tip-beacon--grouped {
    width: 44px;
    height: 44px;
}
.tip-beacon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: #ef4444;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.9);
    z-index: 2;
}
.tip-beacon-core--count {
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    border-width: 2px;
    z-index: 3;
    line-height: 1;
}
.tip-beacon--grouped .tip-beacon-pulse {
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
}
.tip-beacon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    animation: tip-beacon-pulse 2s ease-out infinite;
    z-index: 1;
    pointer-events: none;
}
.tip-beacon-pulse--delay { animation-delay: 1s; }
@keyframes tip-beacon-pulse {
    0% { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(3.5); opacity: 0; }
}
.leaflet-tooltip.tip-beacon-tooltip {
    background: var(--navy-mid);
    border: 1px solid #ef4444;
    color: var(--white);
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 260px;
    pointer-events: auto;
}
.leaflet-popup.tip-beacon-popup { margin-bottom: 6px; }
.leaflet-popup.tip-beacon-popup .leaflet-popup-content-wrapper {
    background: var(--navy-mid);
    border: 1px solid #ef4444;
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.leaflet-popup.tip-beacon-popup .leaflet-popup-content {
    margin: 0.65rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 260px;
}
.leaflet-popup.tip-beacon-popup--stacked .leaflet-popup-content {
    max-width: 300px;
}
.tip-beacon-stack {
    margin-top: 0.5rem;
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-right: 0.15rem;
}
.tip-beacon-stack-item {
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border);
}
.tip-beacon-stack-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.tip-beacon-stack-head {
    font-weight: 600;
    color: #ef4444;
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
}
.tip-beacon-stack-preview {
    color: var(--muted);
    font-size: 0.76rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}
.leaflet-popup.tip-beacon-popup .leaflet-popup-tip {
    background: var(--navy-mid);
    border: 1px solid #ef4444;
    border-top: none;
    border-left: none;
    box-shadow: none;
}
.leaflet-tooltip.tip-beacon-tooltip::before {
    border-top-color: #ef4444;
}
.tip-beacon-tooltip-title {
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 0.35rem;
}
.tip-beacon-tooltip-preview {
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tip-beacon-tooltip-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.tip-beacon-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}
.tip-beacon-link:hover { text-decoration: underline; }
.tip-card.tip-highlight {
    outline: 2px solid #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25);
    animation: tip-card-flash 2.5s ease;
}
@keyframes tip-card-flash {
    0%, 100% { background: var(--navy-mid); }
    15%, 45% { background: rgba(239, 68, 68, 0.1); }
}

@media (max-width: 900px) {
    #view-alert-detail > div[style*="grid"] { grid-template-columns: 1fr !important; }
}
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
@media (max-width: 900px) { .form-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .form-grid-3 { grid-template-columns: 1fr; } }

.detail-block { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.detail-block h4 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.detail-row { display: flex; gap: 0.5rem; margin-bottom: 0.35rem; font-size: 0.875rem; }
.detail-row .label { color: var(--muted); min-width: 110px; flex-shrink: 0; }
.activity-item { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.activity-item:last-child { border-bottom: none; }
.activity-item .time { color: var(--muted); font-size: 0.75rem; margin-top: 0.2rem; }
#alert-detail-map { height: 420px; border-radius: 12px; border: 1px solid var(--border); }

/* Image lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(5, 10, 20, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.lightbox-content {
    max-width: min(960px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 8rem);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    margin-top: 1rem;
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
    max-width: 640px;
    line-height: 1.5;
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.media-grid img,
.media-scroll img,
.tip-card img,
.home-avatar,
.profile-avatar,
.person-media-preview img {
    cursor: zoom-in;
}
