.ks-aze-facts {
    background: #f7f7f5;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
    border: 1px solid #e5e5e0;
}
.ks-aze-facts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.ks-aze-fact {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}
.ks-aze-fact__icon {
    font-size: 1.25rem;
    line-height: 1.3;
    flex-shrink: 0;
}
.ks-aze-fact__body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}
.ks-aze-fact__label {
    font-size: .72rem;
    text-transform: uppercase;
    color: #70706a;
    letter-spacing: .04em;
    font-weight: 600;
}
.ks-aze-fact__value {
    font-size: .95rem;
    color: #2a2a2a;
    font-weight: 500;
    word-break: break-word;
}
.ks-aze-fact__value a { color: inherit; text-decoration: underline; text-decoration-color: rgba(0,0,0,.2); }
.ks-aze-fact__link {
    font-size: .8rem;
    color: #2271b1;
    text-decoration: none;
    margin-top: .25rem;
    display: inline-block;
}
.ks-aze-fact__meta {
    font-size: .8rem;
    color: #70706a;
    font-weight: 400;
}
.ks-aze-hours {
    list-style: none;
    margin: .15rem 0 0;
    padding: 0;
    font-size: .85rem;
}
.ks-aze-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 2px 0;
    color: #555;
}
.ks-aze-hours li.ks-aze-hours--today {
    font-weight: 700;
    color: #2a2a2a;
}

@media (max-width: 600px) {
    .ks-aze-facts { padding: 1rem 1.1rem; }
    .ks-aze-facts__grid { grid-template-columns: 1fr; gap: 1rem; }
}

.ks-aze-symbolbild-wrap {
    position: relative;
    margin: 0 0 1rem;
}
.ks-aze-symbolbild-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
.ks-aze-symbolbild-caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(18, 24, 33, 0.85);
    color: #F5F2EB;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.01em;
}
.ks-aze-symbolbild-disclaimer {
    margin: 24px 0 0;
    font-size: 12px;
    color: #9AA4B2;
    font-style: italic;
    line-height: 1.4;
}

/* ─── Eigene Fotos Galerie ───────────────────────────────────────────── */
.ks-az-sv-gallery {
    margin: 1.5rem 0 2rem;
}
.ks-az-sv-gallery-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.ks-az-sv-gallery-head h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d2327;
}
.ks-az-sv-gallery-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f5e9;
    color: #1b5e20;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #c8e6c9;
}
.ks-az-sv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-radius: 14px;
    overflow: hidden;
}
.ks-az-sv-gallery-count-1 { grid-template-columns: 1fr; }
.ks-az-sv-gallery-count-2 { grid-template-columns: repeat(2, 1fr); }
.ks-az-sv-gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    background: #f0f0f1;
    transition: transform .2s ease, box-shadow .2s ease;
}
.ks-az-sv-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.ks-az-sv-gallery-item img,
.ks-az-sv-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 600px) {
    .ks-az-sv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ks-az-sv-gallery-count-1 { grid-template-columns: 1fr; }
}

/* ─── Unser Besuch (Betreiber-Bericht) ───────────────────────────────── */
.ks-az-sv-unser-besuch {
    background: linear-gradient(135deg, #fff8ee 0%, #fef3e2 100%);
    border: 1px solid #f5dfb5;
    border-radius: 16px;
    padding: 1.25rem 1.4rem 1.1rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(200, 140, 40, .08);
}
.ks-az-sv-ub-header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .75rem;
}
.ks-az-sv-ub-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 6px rgba(200, 140, 40, .15);
}
.ks-az-sv-ub-heading { display: flex; flex-direction: column; gap: 2px; }
.ks-az-sv-ub-heading h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #5d4214;
    line-height: 1.25;
}
.ks-az-sv-ub-datum {
    font-size: .78rem;
    color: #8a6c3a;
    font-weight: 500;
}
.ks-az-sv-ub-body {
    color: #3d2f18;
    font-size: 1rem;
    line-height: 1.6;
}
.ks-az-sv-ub-body p { margin: 0 0 .6em; }
.ks-az-sv-ub-body p:last-child { margin-bottom: 0; }
.ks-az-sv-ub-sig {
    margin-top: .9rem;
    padding-top: .75rem;
    border-top: 1px dashed rgba(200, 140, 40, .35);
    font-size: .85rem;
    font-style: italic;
    color: #8a6c3a;
    text-align: right;
}
@media (max-width: 600px) {
    .ks-az-sv-unser-besuch { padding: 1rem 1.1rem; border-radius: 14px; }
    .ks-az-sv-ub-avatar { width: 38px; height: 38px; font-size: 1.2rem; }
}
