/* Logo-Anpassung: Harmonische Größen für Mobile & Desktop */
.logo-img {
    height: 45px; /* Dezent auf dem Smartphone */
    width: auto;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .logo-img {
        height: 60px; /* Angenehme Größe auf Desktop/Laptop */
    }
}
/* Den Header-Abstand etwas verringern, falls er zu hoch wirkt */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Menü-Styling (Hover-Effekte) */
.nav-link {
    position: relative;
    font-weight: 600;
    color: #333 !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Blauer Strich nur auf Desktop-Ansicht sinnvoll */
@media (min-width: 992px) {
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        display: block;
        margin-top: 2px;
        background: #0d6efd;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }
}

/* Abstand im Hamburger-Menü korrigieren */
.navbar-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        border-bottom: none;
    }
}
/* Styling für die Tipp-Badges in den Boxen */
.badge-eu {
    background-color: #e7f1ff; /* Ganz zartes Blau */
    color: #0d6efd;           /* Dein Bootstrap-Blau */
    border: 1px solid #0d6efd;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;      /* Pillen-Form */
    text-transform: uppercase;
    display: inline-block;
}

/* Abstand der Liste in den Karten */
.tool-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.tool-card ul li strong {
    margin-left: 0.75rem;
    color: #212529;
}