/* ==========================================================================
   ITEMS — single page styles
   ========================================================================== */

/* Item photo block (in monster-title-row) */
.item-photo-wrap {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform .15s ease;
}

.item-photo-wrap:hover {
    transform: scale(1.1);
}

.item-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tag-row {
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 600px) {
    .item-photo-wrap {
        width: 88px;
        height: 88px;
    }
}
