/* Galerie-Container */
.content-gallery {
    max-width: 900px;
    margin: 0 auto;
    font-family: sans-serif;
}

/* Überschrift */
.content-gallery h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #222;
}

/* Vorschaubilder-Liste */
.content-gallery ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Einzelnes Galerie-Item */
.content-gallery li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-gallery li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Bild */
.content-gallery img {
    display: block;
}

/* Colorbox Styling */
#cboxContent {
    background-color: #fff;
}

#cboxTitle {
    color: #333;
    font-size: 0.9rem;
}

#cboxClose {
    cursor: pointer;
    background: none;
    border: none;
}

/* Pagination */
.content-gallery nav[data-pagination] {
    margin-top: 20px;
}

.content-gallery nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.content-gallery nav li a {
    display: block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.content-gallery nav li a.active,
.content-gallery nav li a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
