/* Pet business directory */
.pet-biz-filters {
    background: #f5f5f5;
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.pet-biz-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.pet-biz-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pet-biz-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.pet-biz-card__body {
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pet-biz-card__body h2 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.pet-biz-card__loc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pet-biz-card__text {
    font-size: 0.95rem;
    color: #444;
    flex: 1;
}

.pet-biz-nearby {
    margin-bottom: 2rem;
}

.pet-biz-map-wrap {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    min-height: 320px;
}

.pet-biz-map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

.pet-biz-gallery img {
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
