.meowl-pet {
    margin: 30px 0 10px;
}

.meowl-pet__stage {
    display: grid;
    justify-items: start;
    gap: 7px;
}

.meowl-pet__image {
    display: block;
    width: 88px;
    height: 88px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}

.meowl-pet__button {
    width: 88px;
    height: 31px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: url("/images/hold-to-pet-reference.webp") center / 88px 31px no-repeat;
    color: transparent;
    font: inherit;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.meowl-pet__button:hover,
.meowl-pet__button:focus-visible {
    filter: brightness(1.08);
}

.meowl-pet__button.is-petting {
    transform: translateY(1px);
    filter: brightness(.92);
}

.meowl-pet__status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 560px) {
    .meowl-pet {
        margin-top: 22px;
    }
}
