/* Logo Styles */

.header-logo-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.header-logo-image {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .header-logo-image {
        max-height: 45px;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .header-logo-image {
        max-height: 50px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .header-logo-image {
        max-height: 50px;
    }
}

