/* ---- Card wrapper ---- */
.cat-profile-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.cat-card__inner {
    background: #fffaf6;
    border: 1.5px solid #f0dfd0;
    border-radius: 20px;
    box-shadow:
        0 4px 20px rgba(180, 120, 70, 0.12),
        0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-card__inner:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 36px rgba(180, 120, 70, 0.12),
        0 2px 8px rgba(0,0,0,0.08);
}

/* ---- Image area ---- */
.cat-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7ede0;
    overflow: hidden;
}

.cat-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cat-card__inner:hover .cat-card__image {
    transform: scale(1.04);
}

/* Fallback placeholder (no image) */
.cat-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: #f7ede0;
}

/* ---- Status badge ---- */
.cat-card__status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    line-height: 1.4;
}

.cat-card__status--available {
    background: #d4f0d4;
    color: #2d6a2d;
}
.cat-card__status--adopted {
    background: #d0e8f7;
    color: #1a4f78;
}
.cat-card__status--on-hold {
    background: #fdf0cc;
    color: #7a5a00;
}
.cat-card__status--resident {
    background: #ecddf7;
    color: #5a2d7a;
}

/* ---- Text content area ---- */
.cat-card__content {
    padding: 20px 22px 24px;
}

/* Cat name */
.cat-card__name {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3d2b1f;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Breed · Age row */
.cat-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cat-card__breed,
.cat-card__age {
    font-size: 0.8rem;
    color: #8c6a52;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cat-card__meta-divider {
    color: #f0dfd0;
    font-weight: 300;
}

/* Description */
.cat-card__description {
    margin: 0;
    font-size: 0.9rem;
    color: #8c6a52;
    line-height: 1.6;
}

@media ( min-width: 640px ) {
    .cat-profile-card.is-style-landscape {
        max-width: 560px;
    }

    .cat-profile-card.is-style-landscape .cat-card__inner {
        display: flex;
        flex-direction: row;
    }

    .cat-profile-card.is-style-landscape .cat-card__image-wrap {
        width: 200px;
        flex-shrink: 0;
        aspect-ratio: unset;
    }

    .cat-profile-card.is-style-landscape .cat-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}