/* ==========================================================
   DETAILSUCHE
   ========================================================== */
.li-detailsuche,
.li-detailsuche-eingabe,
.li-detailsuche-auswahl,
.li-detailsuche-button,
.li-detailsuche-zuruecksetzen {
    font-family: inherit;
}
.li-detailsuche-eingabe,
.li-detailsuche-auswahl,
.li-detailsuche-button {
    font-size: 1rem;
    line-height: 1.35;
}
.li-detailsuche {
    width: 100%;
    max-width: none;
    margin: 20px 0 30px;
    padding: 0;
    box-sizing: border-box;
}

.li-detailsuche-kopf {
    margin-bottom: 25px;
}

.li-detailsuche-kopf h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #1b355d;
}

.li-detailsuche-kopf p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.li-detailsuche-formular {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.li-detailsuche-raster {
    display: grid;
    grid-template-columns: repeat(3,minmax(220px,1fr));
    gap: 22px;
}

.li-detailsuche-feld {
    display: flex;
    flex-direction: column;
}

.li-detailsuche-feld-suchbegriff {
    grid-column: span 3;
}

.li-detailsuche-feld label {
    margin-bottom: 7px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1b355d;
}

.li-detailsuche-eingabe,
.li-detailsuche-auswahl {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #ccd6e2;
    border-radius: 8px;
    background: #fff;
    font-size: .95rem;
    transition: .2s;
    box-sizing: border-box;
}

.li-detailsuche-eingabe:focus,
.li-detailsuche-auswahl:focus {
    border-color: #2b6cb0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(43,108,176,.15);
}

/* ==========================================================
   AUTOCOMPLETE
   ========================================================== */

.li-detailsuche-autocomplete {
    position: relative;
}

.li-detailsuche-autocomplete .li-autocomplete-liste {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 5px);
    z-index: 100;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.li-detailsuche-aktionen {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.li-detailsuche-button {
    background: #1b355d;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.li-detailsuche-button:hover {
    background: #25497d;
}

.li-detailsuche-zuruecksetzen {
    color: #1b355d;
    text-decoration: none;
    font-weight: 600;
}

.li-detailsuche-zuruecksetzen:hover {
    text-decoration: underline;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width:1000px){

    .li-detailsuche-raster{
        grid-template-columns:repeat(2,minmax(220px,1fr));
    }

    .li-detailsuche-feld-suchbegriff{
        grid-column:span 2;
    }

}

@media (max-width:700px){

    .li-detailsuche{
        padding:0 15px;
    }

    .li-detailsuche-formular{
        padding:18px;
    }

    .li-detailsuche-raster{
        grid-template-columns:1fr;
    }

    .li-detailsuche-feld-suchbegriff{
        grid-column:auto;
    }

    .li-detailsuche-aktionen{
        flex-direction:column;
        align-items:stretch;
    }

    .li-detailsuche-button{
        width:100%;
    }

    .li-detailsuche-zuruecksetzen{
        text-align:center;
    }

}

.li-ausstellungen-info {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    box-sizing: border-box;
    background: #f3f7fa;
    border-left: 4px solid #3476a8;
    border-radius: 6px;
}

.li-ausstellungen-info-icon {
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #3476a8;
    border-radius: 50%;
    color: #3476a8;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.li-ausstellungen-info-text {
    margin: 0;
    line-height: 1.5;
}

.li-ausstellungen-info-text a {
    font-weight: 600;
}

@media (max-width: 600px) {
    .li-ausstellungen-info {
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 14px 16px;
    }
}