.gallery-card-link {
    text-decoration: none;
    color: inherit;
}

.gallery-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

/* NUR BILD */
.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.07);
}

.gallery-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.55),
        rgba(0,0,0,0) 60%
    );
}

.gallery-date {
    font-size: .75rem;
    color: #fff;
    opacity: .9;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-location {
    font-size: .85rem;
    color: #6c757d;
}
.card-location a {
    text-decoration: none;
}
.card-location a:hover {
    color:var(--yellow);
}

/* Text kürzen */
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.gallery-meta i {
    opacity: .75;
}

.gallery-meta > div {
    line-height: 1.35;
}


.gallery-back-button {
    position: fixed;
    bottom: 10px;
    left: 20px;
    z-index: 1000;
}