/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*Add your own styles here:*/

/* Standard-Darstellung (Desktop und größere Geräte) */
.second-logo-container {
    position: absolute;
    right: 20px; /* Abstand von rechts */
    bottom: 0px;   /* Unten ausrichten */
    transform: translateY(0);
	height: 150px;
}

.second-logo-container img {
    max-height: 130px; /* Maximale Höhe des Logos auf Desktop */
    height: auto;
    width: auto;
}

/* Responsive Darstellung (mobile Geräte) */
@media (max-width: 768px) {
    /* Container für beide Logos */
    .av-logo-container {
        display: flex;
        flex-direction: column; /* Umbruch für die Logos */
        align-items: flex-start; /* Links ausrichten */
        gap: 5px; /* Abstand zwischen den Logos */
        position: relative;
    }

    .av-logo-container .second-logo-container {
        position: static; /* Standard-Positionierung */
        transform: none;
		height: 120px;
    }

    .av-logo-container img {
        max-width: 100%; /* Logos passen sich der Breite an */
        height: auto;
    }

    .second-logo-container img {
        max-height: 120px; /* Maximale Höhe des Logos auf mobilen Geräten */
    }
}
