/*
 * Ab Hof Engerwitzdorf
 * Farbwelt angelehnt an das offizielle Corporate Design der Landjugend:
 * Blau #0066B3, Orange #FAA61A, Grün #9EBD35.
 * MetaPro wird nur verwendet, wenn die Schrift bereits rechtmäßig auf der Website geladen ist.
 */

.abhof-directory,
.abhof-directory * {
    box-sizing: border-box;
}

.abhof-directory {
    --abhof-orange: #faa61a;
    --abhof-blue: #0066b3;
    --abhof-green: #9ebd35;
    --abhof-ink: #252525;
    --abhof-muted: #66625c;
    --abhof-paper: #f2f0ea;
    --abhof-white: #ffffff;
    --abhof-border: rgba(37, 37, 37, .12);
    --abhof-radius: 0px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(18px, 4vw, 42px);
    background: var(--abhof-paper);
    color: var(--abhof-ink);
    font-family: "MetaPro", "Meta Pro", "Arial", "Helvetica Neue", sans-serif;
    line-height: 1.35;
}

.abhof-directory__title {
    margin: 0 0 22px;
    color: var(--abhof-blue);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.abhof-search {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1.15fr auto;
    gap: 10px;
    align-items: end;
    margin: 0 0 18px;
    padding: 16px;
    background: var(--abhof-white);
    border-top: 5px solid var(--abhof-blue);
}

.abhof-search__field {
    min-width: 0;
}

.abhof-search label {
    display: block;
    margin: 0 0 5px;
    color: var(--abhof-ink);
    font-size: 13px;
    font-weight: 800;
}

.abhof-search input,
.abhof-search select {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--abhof-border);
    border-radius: 0;
    outline: none;
    background: #fff;
    color: var(--abhof-ink);
    font: inherit;
    font-size: 15px;
}

.abhof-search input:focus,
.abhof-search select:focus {
    border-color: var(--abhof-blue);
    box-shadow: 0 0 0 2px rgba(0, 102, 179, .12);
}

.abhof-search__reset {
    min-height: 44px;
    padding: 10px 15px;
    border: 0;
    border-radius: 0;
    background: var(--abhof-orange);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.abhof-search__reset:hover,
.abhof-search__reset:focus-visible {
    filter: brightness(.94);
}

.abhof-results-info {
    min-height: 22px;
    margin: 0 0 7px;
    color: var(--abhof-muted);
    font-size: 13px;
}

.abhof-list {
    display: flex;
    flex-direction: column;
}

.abhof-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 92px;
    gap: 15px;
    align-items: center;
    min-height: 112px;
    padding: 15px 18px 15px 16px;
    background: transparent;
}

.abhof-card:nth-child(odd) {
    background: var(--abhof-white);
}

.abhof-card[hidden] {
    display: none !important;
}

.abhof-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--abhof-orange);
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.abhof-card__content {
    min-width: 0;
}

.abhof-card__name {
    margin: 0 0 2px;
    color: var(--abhof-ink);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 800;
    line-height: 1.15;
}

.abhof-card__address {
    margin: 0 0 7px;
    color: var(--abhof-ink);
    font-size: 15px;
}

.abhof-card__products {
    max-width: 680px;
    color: var(--abhof-ink);
    font-size: 14px;
    line-height: 1.35;
}

.abhof-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    min-height: 72px;
}

.abhof-card__image {
    display: block;
    width: 82px;
    height: 72px;
    object-fit: contain;
    border-radius: 0;
}

.abhof-empty {
    margin-top: 12px;
    padding: 24px;
    background: #fff;
    border-left: 6px solid var(--abhof-green);
}

.abhof-empty strong,
.abhof-empty span {
    display: block;
}

.abhof-empty strong {
    margin-bottom: 4px;
    font-size: 18px;
}

@media (max-width: 820px) {
    .abhof-search {
        grid-template-columns: 1fr 1fr;
    }

    .abhof-search__reset {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .abhof-directory {
        padding: 16px;
    }

    .abhof-search {
        grid-template-columns: 1fr;
        padding: 13px;
    }

    .abhof-card {
        grid-template-columns: 48px minmax(0, 1fr) 66px;
        gap: 10px;
        min-height: 104px;
        padding: 13px 10px;
    }

    .abhof-card__number {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .abhof-card__address {
        font-size: 14px;
    }

    .abhof-card__products {
        font-size: 13px;
    }

    .abhof-card__visual {
        width: 66px;
    }

    .abhof-card__image {
        width: 60px;
        height: 58px;
    }
}

@media (max-width: 430px) {
    .abhof-card {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .abhof-card__visual {
        display: none;
    }
}
