.attraktion-overview-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
        margin-bottom: 4vh;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

.attraktion-container {
    flex: 1 1 0;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 1;
    display: flex;
    flex-direction: column;
    transition:
        opacity 0.4s ease,
        max-height 0.4s ease,
        margin 0.4s ease,
        padding 0.4s ease;
    min-width: 260px;
}

.attraktion-compact {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    height: 100%;
    background-color: #fff8f3;
    border-radius: 12px;
}

.attraktion-full-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.attraktion-full-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    mask-image: radial-gradient(ellipse 170% 62% at 50% 130%, transparent 60%, black 62%);
    mask-composite: subtract;
    -webkit-mask-image: radial-gradient(ellipse 170% 62% at 50% 130%, transparent 60%, black 62%);
    -webkit-mask-composite: destination-out;
        aspect-ratio: 14 / 10;
}

.attraktion-full-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    height: 100%;
}

.attraktion-title {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1em;
    color: #1d4a6d;
    font-weight: bold;
}

.attraktion-description {
    font-size: 1em;
    padding: 0.8rem 2rem 0.8rem 2rem;
    line-height: 1.3rem;
    color: #333;
}

.btn {
    display: inline-block;
    background: #4c99b9;
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.3em;
    margin-top: auto;
    margin-bottom: 3rem;
    transition: background 0.2s;
        width: 30%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 1.5vh;
}

.btn:hover {
    background: #21749b;
}

.attraktionen-alle {
    text-align: center;
    height: auto;
    margin-bottom: 5.5vh;
}
.all-btn {
    color: #6d4485;
    padding: 8px 26px;
    border-radius: 9px;
    font-size: 1.3em;
    text-decoration: none;
    border: 2px solid #e7dbe7;
    transition: background 0.2s;
}
.all-btn:hover {
    background: #e9d9ee;
}

@media (max-width: 676px) {
    .attraktion-overview-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 90vw;
    }
    .attraktion-container {
        width: 90%;
        max-width: 400px;
    }
}

@media (min-width: 2000px) {
    .attraktion-overview-wrapper {
        width: 50vw;
    }
}
