/* 
 * New hompage
 */

h1.homepage-title {
    margin-bottom: 4rem;
}

.section-upcomming-events h1 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.section-past-events h2 {
    margin-top: 5rem;
    margin-bottom: 5rem;

}

ul.posts-grid {

    width: 100%;
    display: flex;
    column-gap: 2rem;
    row-gap: 4rem;
    padding-left: 0;
}

ul.posts-grid article {
    width: calc(50% - 1rem);
}

ul.posts-grid article img {
    width: 100% !important;
    height: 400px !important;
    display: block;
    object-fit: cover !important;
}

.wp-show-posts-image.wpsp-image-center {
    position: relative;
}

/* posts overview  */
ul.date-and-time-box {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;

    list-style: none;
}

ul.date-and-time-box li {
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 4px;
    font-weight: 600;
}

a#to-previous-events-button {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* single posts      */
.single-date-and-time-box {
    display: flex;
    gap: 1rem;
    align-items: first baseline;

}

.single-date-and-time-box h2,
.entrance-fee h2 .label-entrance-fee {
    width: 110px;
    display: inline-flex;
    /* font-size: 24px;
    font-weight: 500; */
    font-size: 18px;
    font-weight: 600;

}

.single-date-and-time-box ul {
    position: relative;
    list-style: none;
    /* margin-bottom: 2rem; */
    padding-left: 0;
    font-size: 15px;
}


.single-date-and-time-box ul li {
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.7);
    background-color: rgba(221, 72, 20, 1);
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 4px;
    font-weight: 600;
    width: fit-content;
}

section.entrance-fee {
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.entrance-fee h2 {
    display: flex;
    gap: 1rem;
    align-items: first baseline;
    font-size: 20px;
    font-weight: 500;
}

section.section-signup-form {
    margin-top: 6rem;
}

.single-post form.wpcf7-form {
    column-count: 2;
}

.single-post form.wpcf7-form label,
.single-post form.wpcf7-form label input,
.single-post form.wpcf7-form label textarea {
    width: 100%;
}

@media only screen and (max-width: 790px) {
    .single-post  form.wpcf7-form {
        column-count: 1;
    }
}