#top-container-small,
#main-container {
    padding: 0 15px;
}

#top-container-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 30px);
    color: #23527c;
}

@media (max-width: 575px) {
    #top-container-small {
        justify-content: center;
    }

    #top-container-small > div:first-of-type {
        flex-basis: 100%;
        margin-bottom: 50px;
    }
}

.gallery-sitename {
    font-size: 2rem; /* 32px */
}

.gallery-name {
    font-size: 2.5rem; /* 40px */
    text-decoration: none;
    font-family: 'tequilaregular', Arial, sans-serif;
}

#main-container {
    margin-top: 25px;
}

.images-and-videos,
.stories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.post-preview {
    flex-basis: 30%;
}

@media (max-width: 991px) {
    .post-preview {
        flex-basis: 45%;
    }
}

@media (max-width: 575px) {
    .post-preview {
        flex-basis: 100%;
    }
}

.post-preview-content-image img {
    max-width: 100%;
    height: auto;
}

.booking-button-link {
    display: none;
}

/* 03.09.2023: Geschichten */
.stories {
    gap: 30px;
}

.stories .post-preview {
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 20px;
    text-align: justify;
    box-shadow: 0px 7px 5px rgba(0,0,0,0.4);
    flex-basis: calc(30% - 40px);
}

.story-preview p {
    margin: 0;
}

@media (max-width: 991px) {
    .stories .post-preview {
        flex-basis: 45%;
    }
}

@media (max-width: 575px) {
    .stories .post-preview {
        flex-basis: 100%;
    }
}