.orgellenter-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.orgellenter-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--orgel-width, 260px), 1fr));
    gap: 26px;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 767px) {
    .orgellenter-grid {
        grid-template-columns: repeat(auto-fit, minmax(var(--orgel-width, 260px), 1fr));
        justify-content: center;
        justify-items: center;
    }
}

@media (min-width: 1100px) {
    .orgellenter-grid {
        grid-template-columns: repeat(var(--orgel-cols, 4), minmax(0, 1fr));
        gap: 30px;
        justify-items: center;
    }
}

.orgellenter-card {
    position: relative;
    width: var(--orgel-width, 180px);
    max-width: var(--orgel-width, 180px);
    height: var(--orgel-height, 220px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #d6d6d6;
}

.orgellenter-card.is-hidden {
    display: none;
}

.orgellenter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.26);
}

.orgellenter-card__link {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.orgellenter-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.orgellenter-card.no-thumb .orgellenter-card__image {
    background: linear-gradient(135deg, #3f3f46 0%, #2a2a30 100%);
}

.orgellenter-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.78) 100%);
}

.orgellenter-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    gap: 8px;
    text-align: center;
}

.orgellenter-card__title {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.38);
    color: var(--orgel-title, #ffffff);
    padding: 0 8px;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.orgellenter-card__subtitle {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.38);
    color: #ffffff;
}

.orgellenter-card__link:hover .orgellenter-card__title {
    color: var(--orgel-title-hover, #dcdcdc);
}

.orgellenter-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.orgellenter-toggle {
    padding: 14px 36px;
    background-color: var(--orgel-btn, #CAA05C) !important;
    color: #fff;
    border: none !important;
    border-radius: 999px;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.orgellenter-toggle:hover {
    background-color: var(--orgel-btn-hover, #B08F54) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}

.orgellenter-toggle:focus,
.orgellenter-toggle:focus-visible {
    outline: none;
}

.orgellenter-toggle.is-expanded {
    background-color: var(--orgel-btn-hover, #B08F54) !important;
    color: #fff;
}

.orgellenter-toggle.is-expanded:hover {
    background-color: var(--orgel-btn-hover, #B08F54) !important;
}


