.animals-page {
    padding: 60px 0 70px;
}

.animals-header {
    max-width: 720px;
    margin-bottom: 35px;
}

.animals-header h1 {
    font-family: 'Roboto-Bold';
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: var(--green-dark);
}

.animals-header > p:last-child {
    margin-top: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.animal-card {
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid #E3E6DF;
    border-radius: 10px;
    transition: .25s;
}

.animal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(39, 76, 42, .12);
}

.animal-image {
    height: 320px;
    overflow: hidden;
    background-color: var(--green-light);
}

.animal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: .35s;
}

.animal-card:hover .animal-image img {
    transform: scale(1.03);
}

.animal-content {
    padding: 25px;
}

.animal-type {
    margin-bottom: 7px;
    color: var(--green);
    font-family: 'Roboto-Bold';
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.animal-content h2 {
    font-family: 'Roboto-Bold';
    font-size: 1.7rem;
    color: var(--green-dark);
}

.animal-description {
    margin-top: 12px;
    color: var(--text-light);
    line-height: 1.65;
}

.animal-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-family: 'Roboto-Medium';
}

.animal-link i {
    transition: .2s;
}

.animal-card:hover .animal-link {
    color: var(--green-dark);
}

.animal-card:hover .animal-link i {
    transform: translateX(4px);
}

.animals-empty {
    padding: 70px 30px;
    background-color: var(--white);
    border: 1px solid #E3E6DF;
    border-radius: 8px;
    text-align: center;
}

.animals-empty i {
    margin-bottom: 18px;
    color: var(--green);
    font-size: 2.5rem;
}

.animals-empty h2 {
    margin-bottom: 8px;
    font-family: 'Roboto-Bold';
}

.animals-empty p {
    color: var(--text-light);
}

@media(max-width: 750px) {
    .animals-page {
        padding: 45px 0 55px;
    }

    .animals-grid {
        grid-template-columns: 1fr;
    }

    .animal-image {
        height: 270px;
    }
}

@media(max-width: 500px) {
    .animals-header h1 {
        font-size: 2.4rem;
    }

    .animal-image {
        height: 230px;
    }

    .animal-content {
        padding: 20px;
    }
}