/* 保護猫・犬紹介セクション用CSS */
.cafe-rescue {
    background: #fff6f0;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.rescue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.rescue-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px #f8b5a844;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
}

.rescue-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0.7rem;
    background: #fffaf6;
    border-radius: 50%;
    border: 2px solid #ffe4e1;
}

.rescue-card h3 {
    margin: 0.2rem 0 0.3rem 0;
    font-size: 1.15rem;
    color: #a0522d;
}

.rescue-card p {
    margin: 0;
    font-size: 0.98rem;
    color: #4d3c2b;
}

@media (max-width: 900px) {
    .rescue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rescue-grid {
        grid-template-columns: 1fr;
    }
}