/* =========================================================
   OUR DOGS THUMB STRIP (CLEAN)
   ========================================================= */

/* strip layout */
.dog-strip {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 18px;
    margin: 18px auto 0;
    max-width: var(--maxw);
}

/* button reset (kills the gray button UI) */
.dog-thumb {
    all: unset;
    /* key: removes browser button chrome */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* photo card wrapper */
.dog-thumb-img {
    width: 190px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
    transition: transform .18s ease, box-shadow .18s ease;
}

/* image crop + face centering */
.dog-thumb-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 25%;
}

/* caption */
.dog-thumb-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--purple);
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

/* hover polish */
.dog-thumb:hover .dog-thumb-img {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

/* accessible focus (since all: unset removes focus styles) */
.dog-thumb:focus-visible .dog-thumb-img {
    outline: 3px solid rgba(172, 151, 66, 0.55);
    outline-offset: 6px;
}

/* mobile */
@media (max-width: 768px) {
    .dog-strip {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px;
    }

    .dog-thumb-img {
        width: 160px;
    }
}