/*
Place your CSS customizations here.
This stylesheet is defined last and will override all previously loaded sheets. You may reference variables defined in variables.css 
 */
 /* Taxon page - central image sizing */
#centralimage img {
    max-width: 450px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;  /* Альбомная ориентация 3:4 */
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
    #centralimage img {
        max-width: 100%;
    }
}