.map-wide {
    width: 100%;
    height: 500px;
}

.immortals-map {
    margin-bottom: 48px;
}

.immortals-map > p {
    margin: 9px 0 0;
    color: var(--muted);
}

.slate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.record.slate {
    position: relative;
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 152px;
    padding: 20px;
    color: #f0e5cc;
    background: linear-gradient(145deg, #283331, #17201f);
    border: 7px solid #765431;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #b28a55, inset 0 0 26px #0009, 3px 5px 10px #38271855;
    transition: transform .2s ease, box-shadow .2s ease;
}

.record.slate::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid #d9c69b22;
    pointer-events: none;
}

.record.slate:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 1px #c29a61, inset 0 0 26px #0009, 5px 9px 14px #38271866;
}

.slate .portrait {
    width: 82px;
    height: 104px;
    border: 1px solid #aa936a;
    filter: sepia(.55) contrast(.9);
}

.slate-body {
    min-width: 0;
}

.slate h3 {
    color: #f4e8c9;
    font-size: 17px;
    line-height: 1.25;
}

.slate p {
    color: #c7bba1;
    font-size: 16px;
    line-height: 1.2;
}

.slate .weapon {
    color: #dec892;
    font-style: italic;
    margin-bottom: 0;
}

.slate .badge {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: #d8c69f;
    border-color: #88765b;
    background: #111817aa;
}

.record.slate[hidden] {
    display: none !important;
}

.slate .status-badge {
    display: none;
}

.slate-grid.status-revealed .status-badge {
    display: inline-block;
}

.slate-grid.status-revealed .weapon {
    padding-bottom: 28px;
}

@media (max-width: 1000px) {
    .slate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .map-wide { height: 400px; }
}

@media (max-width: 590px) {
    .slate-grid { grid-template-columns: 1fr; }
    .record.slate { min-height: 140px; }
    .map-wide { height: 350px; }
}
