/*ubal ten gram*/

   .logos {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
        margin-bottom: 10px !important;
    }

    div.logos img {
        filter: grayscale(30%) !important;
        /* víc viditelné v klidu */
        opacity: 0.8 !important;
        /* logo je pořád dost výrazné */
        transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease !important;
        /*
        height: 35px !important;
        aspect-ratio: attr(width) / attr(height);
        */
        aspect-ratio: 82 / 35 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }

    .logos img:hover {
        filter: grayscale(0%) !important;
        /* plná barva při hoveru */
        opacity: 1 !important;
        /* maximální viditelnost */
        transform: scale(1.08) !important;
        /* o něco výraznější zvětšení */
    }

    .logos a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; 
  height: 35px !important;
  width: 82px !important;
  overflow: hidden !important; /* zabrání přetékání */
}
