.animal-single__container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.animal-single__hero {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.animal-single__content {
    order: 2;
}

.animal-single__image {
    order: 1;
}

.animal-single__title {
    margin: 0 0 10px;
    color: #00824a;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
    font-weight: 700;
}

.animal-single__original-name {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    line-height: 1.3;
    font-style: italic;
}

.animal-single__short-description {
    max-width: 620px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.65;
    color: #333;
}

.animal-single__short-description p {
    margin: 0;
}

.animal-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.animal-single__meta-item {
    font-size: 16px;
    line-height: 1.45;
}

.animal-single__meta-label {
    margin-bottom: 5px;
    color: #00824a;
    font-weight: 700;
}

.animal-single__meta-value {
    color: #333;
}

.animal-single__image {
    overflow: hidden;
    border-radius: 10px;
}

.animal-single__main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.animal-single__section {
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.animal-single__section:last-child {
    border-bottom: 0;
}

.animal-single h2 {
    margin: 0 0 22px;
    color: #00824a;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.animal-single__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.animal-single__gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
}

.animal-single__gallery-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.animal-single__gallery-item:hover .animal-single__gallery-image {
    transform: scale(1.04);
}

.animal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.86);
}

.animal-lightbox.is-active {
    display: flex;
}

.animal-lightbox__image {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
}

.animal-lightbox__close,
.animal-lightbox__nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #00824a;
    cursor: pointer;
    line-height: 1;
}

.animal-lightbox__close {
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 34px;
}

.animal-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 64px;
    border-radius: 12px;
    font-size: 44px;
}

.animal-lightbox__nav--prev {
    left: 24px;
}

.animal-lightbox__nav--next {
    right: 24px;
}

body.animal-lightbox-open {
    overflow: hidden;
}


.animal-single__full-content {
    max-width: 920px;
    font-size: 16px;
    line-height: 1.6;
}

.animal-single__full-content h2,
.animal-single__full-content h3,
.animal-single__full-content h4 {
    margin: 30px 0 15px;
    color: #00824a;
    line-height: 1.25;
    text-transform: uppercase;
}

.animal-single__full-content h3 {
    font-size: 24px;
}

.animal-single__full-content p {
    margin: 0 0 16px;
}

.animal-single__full-content ul,
.animal-single__full-content ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

.animal-single__full-content a {
    color: #00824a;
    font-weight: 700;
    text-decoration: none;
}

.animal-single__full-content a:hover {
    text-decoration: underline;
}


@media (max-width: 1366px) {
    .animal-single__hero {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .animal-single__main-image {
        height: 360px;
    }

    .animal-single__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .animal-single__container {
        padding: 25px 15px 45px;
    }

    .animal-single__title {
        font-size: 36px;
    }

    .animal-single__original-name {
        font-size: 20px;
    }

    .animal-single__meta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .animal-single__gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .animal-single__gallery-image {
        height: 200px;
    }

    .animal-single h2 {
        font-size: 24px;
    }
}

.animal-single__other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.animal-single__other-card {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.animal-single__other-image-link {
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.animal-single__other-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.animal-single__other-card:hover .animal-single__other-image {
    transform: scale(1.04);
}

.animal-single__other-placeholder {
    width: 100%;
    height: 220px;
    background: rgba(7, 128, 82, 0.12);
}

.animal-single__other-body {
    padding: 20px 20px 15px;
}

.animal-single__other-title {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.animal-single__other-title a {
    color: #00824a;
    text-decoration: none;
}

.animal-single__other-title a:hover {
    text-decoration: underline;
}

.animal-single__other-original-name {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.35;
    font-style: italic;
}

.animal-single__other-text {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.animal-single__other-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00824a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.animal-single__other-more:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .animal-single__other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .animal-single__other-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
