.about {
    background-color: floralwhite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Fraunces', serif
    
}

.about-title h2 {
    font-family: 'Fraunces', serif;
    text-align: center;
    font-size: 2.5rem;
    padding: 2rem 0;

}

.about-title p {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    font-size: 1.5rem;
    font-family: "poppins", sans-serif;
}

/* ── MOBILE (max 600px) ── */
@media (max-width: 600px) {
    .galery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .pet-card {
        width: 100%;
        padding: 1rem 0.5rem;
    }

    .pet-card img {
        width: 100%;
        height: auto;        
        object-fit: unset;   
    }

    .pet-card p {
        margin-top: 0.5rem;
        text-align: center;
    }

    .back {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .header-titlle {
        font-size: 1.2rem;
        text-align: center;
    }
}
/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
    .galery-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
 
    .pet-card {
        width: 100%;
    }
 
    .pet-card img {
        width: 100%;
        height: 350px;
    }
}