.nausys-flotte-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Drei Spalten für größere Bildschirme */
    gap: 20px;
    width: 100%;
    margin: 0;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
    .nausys-flotte-container {
        grid-template-columns: 1fr; /* Eine Spalte auf mobilen Geräten */
    }
}

.nausys-card {
    background-color: white;
    border-radius: 0 0 8px 8px; /* Nur die unteren Ecken abgerundet */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nausys-card-specs p {
    padding:5px 15px 5px 15px;
    border-bottom:1px solid rgba(0, 46, 93, 0.1);
    margin:0px!important;
}

.nausys-card-header {
    background-color: var(--main-color-1);
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    position: relative;
    z-index: 10;
}

.nausys-image-container {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Verhältnis */
    background-size: cover;
    background-position: center;
}

.nausys-card-location {
    background-color: var(--main-color-2);
    color: white;
    padding: 5px 10px;
    font-style: italic;
    text-align: left;
    font-size: 18px;
}

.nausys-card-body {
}

.nausys-card-body p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.nausys-card-body i {
    margin-right: 4px; /* Platz neben den Icons */
}

.nausys-card-body p span {
    margin-left: 10px;
    font-weight: bold;
}

/* Anpassungen für den klickbaren Footer */
.nausys-card-footer {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: var(--main-color-1);
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Kein Unterstrich */
    cursor: pointer; /* Zeigt an, dass es ein klickbarer Bereich ist */
    width: 100%;
}

.nausys-card-footer:hover {
    background-color: var(--main-color-2); /* Hintergrundfarbe bei Hover */
    color: white; /* Text bleibt weiß bei Hover */
}

.i2tb_rabatt {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline;
    background-color: #009CA6;
    padding: 0px 14px 0px 10px;
    color: #fff;
    font-size: 24px;
    font-style: italic;
    text-align:center;
}

.nausys-card-specs {
    background-color:rgba(0, 46, 93, 0.1);
    margin-top:0px;
    margin-bottom:0px;
}

.nausys_card_price {
    color: #009CA6;
    font-size: 24px;
    font-weight: 700;
    padding: 0 15px;
    text-align: right; /* Container-Inhalt rechtsbündig */
    box-sizing: border-box;
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
}

.nausys_old_price, .nausys_final_price {
    display: inline-block; /* Elemente nebeneinander anzeigen */
    margin-left: 10px; /* Abstand zwischen den Preisen */
    text-align: right; /* Text innerhalb der Preise rechtsbündig */
    vertical-align: middle; /* Vertikale Ausrichtung */
}

.nausys_old_price {
    color: rgba(0, 46, 93, 0.4);
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2; /* Anpassung der Zeilenhöhe */
}

.nausys_final_price {
    color: #009CA6;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2; /* Anpassung der Zeilenhöhe */
}
.no-results-message {
   padding-top:40px;
   padding-bottom:40px;
}

.nausys-card-wrapper {
    position: relative;
}

.nausys-card-link, .nausys-card-link .nausys-card .nausys-card-body .nausys-card-specs p, .nausys-card-link p, .nausys-card-link:hover p  {
    display: block;
    text-decoration: none!important;
    color: #002E5D!important; /* Textfarbe bleibt gleich */
}
.nausys-card-link:hover .nausys-card-footer {
    background-color: var(--main-color-2); /* Hintergrundfarbe bei Hover */
}

.nausys-card {
    cursor: pointer; /* Zeigt an, dass die gesamte Karte klickbar ist */
}
