.dino-detail-identity {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.dino-portrait-frame {
    width: 112px;
    height: 112px;
    border-color: rgba(244, 197, 66, 0.45);
}
.dino-title-block h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
}
.dino-updated-tag {
    display: inline-flex;
    width: fit-content;
    margin: 10px 0 0;
    padding: 4px 7px;
    color: var(--muted);
    font-family: var(--font-code);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    background: var(--panel-deep);
    border: 1px solid var(--border);
}
.dino-metric-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dino-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    color: var(--accent);
    font-family: var(--font-code);
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(244, 197, 66, 0.08);
    border: 1px solid rgba(244, 197, 66, 0.3);
    border-radius: 0;
}
.dino-chip.is-free {
    color: #8cff9d;
    border-color: rgba(140, 255, 157, 0.35);
    background: rgba(76, 175, 80, 0.1);
}
/* Diet / group-size badges under the selected dino name. */
.dino-title-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.dino-meta-chip {
    gap: 6px;
}
.dino-meta-chip i {
    font-size: 0.82em;
    opacity: 0.85;
}
.dino-chip.is-carnivore {
    color: #ff9a8c;
    border-color: rgba(255, 122, 102, 0.4);
    background: rgba(220, 76, 60, 0.12);
}
.dino-chip.is-herbivore {
    color: #8cff9d;
    border-color: rgba(140, 255, 157, 0.35);
    background: rgba(76, 175, 80, 0.1);
}
.dino-chip.is-omnivore {
    color: #ffd27a;
    border-color: rgba(244, 197, 66, 0.4);
    background: rgba(244, 197, 66, 0.12);
}
