/* Brand link style */
.ceg-round-scroll a,
.leni-card-gallery a {
    text-decoration: none !important;
    color: #111 !important;
    transition: color 0.2s ease;
}
.ceg-round-scroll a:hover,
.leni-card-gallery a:hover {
    color: #555 !important;
}

/* Desktop: center galleries */
@media (min-width: 1024px) {
    .ceg-round-scroll,
    .leni-card-gallery {
        justify-content: center;
    }
}

/* ROUND ICON GALLERY */
.ceg-round-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 2px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.ceg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: center;
    transition: transform 0.18s ease;
    margin: 0;
    padding: 0;
}

.ceg-item:hover {
    transform: translateY(-1px);
}

.ceg-image-wrapper {
    width: 95px;
    height: 95px;
    border-radius: 50% !important;
    overflow: hidden;
    background: #f3f3f3;
}

.ceg-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 50% !important;
    display: block !important;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.ceg-item:hover .ceg-image-wrapper img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

.ceg-item span {
    margin-top: 4px !important;
    line-height: 1.15 !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* mobile – smaller icons, 4,5 sichtbar */
@media (max-width: 767px) {
    .ceg-image-wrapper {
        width: 65px;
        height: 65px;
    }
    .ceg-item {
        min-width: 72px;
    }
}

/* CARD GALLERY */
.leni-card-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
}

/* Card flat, smaller radius, fully rounded */
.leni-card {
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    min-width: 230px;
    max-width: 260px;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: none;
}

.leni-card:hover {
    border-color: #d2d2d2;
}

@media (max-width: 767px) {
    .leni-card {
        min-width: 210px;
        max-width: 230px;
    }
}

/* Card image */
.leni-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 62%; /* ~16:10 */
    overflow: hidden;
    background: #f5f5f5;
    border-bottom: 1px solid #ececec;
}

.leni-card-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card body */
.leni-card-body {
    padding: 14px 16px 18px;
    text-align: center;
}

.leni-card-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.leni-card-teaser {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}
