.news-block:not(.poll) {
    font-family: 'Metapro Bold', sans-serif !important;
    height: 232px; /* Nieuwe wijzigingen 312 -> 232px height */
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    position: relative;
}
.news-block.poll {
    font-family: 'Metapro Bold', sans-serif !important;
    min-height: 232px;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    position: relative;
}
.brown {
    background-color: var(--e-global-color-accent);
}
.bg {
    background-color: var(--e-global-color-63c17aa);
}
.bg-brown {
    background-color: #f8f5ee;
}
.blue {
    background-color: var(--e-global-color-secondary);
}
.news-block p.active {
    color: white;
}
.news-block p:not(.active) {
    color: var(--e-global-color-secondary);
}
.news-block a.active, .news-block p.active label {
    color: white !important;
}
.news-block a:not(.active) {
    color: var(--e-global-color-primary) !important;
}
.columngap {
    display:flex;
    flex-direction: column;
    gap: 5px;
}
.news-block {
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.news-block p, .news-block a, .news-block.poll p.active + form label {
    transition: color 0.3s ease;
}
.news-block a:not(.active) {
    color: var(--e-global-color-primary) !important;
}
.news-block.maintenance a:not(.active),
.news-block a.active-maintenance:not(.active) {
    color: var(--e-global-color-secondary) !important;
}
.news-block a.active {
    color: var(--e-global-color-primary) !important;
}
.news-block.maintenance a.active,
.news-block a.active-maintenance.active, .news-block.poll p.active + form label, .news-block.poll p.active {
    color: white !important;
}

.big-image{
    height: 469px; /* Nieuwe wijzigingen 630 -> 469 height */
    margin-right: 5px;
    padding: 0;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity .3s ease;
    opacity: 1;
    position: relative;
}
.big-label {
    position: absolute;
    top:0;
    left: 5%;
    background-color: var(--e-global-color-accent);
    padding: 10px 20px;
    color: white;
    font-family: 'Metapro Bold', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    transition: opacity .3s ease;
}
.big-image p, .big-image h2 {
    color: white !important;
    font-family: 'Metapro Bold', sans-serif;
}
.big-image .big-label {
    transition: opacity 1s ease;
    opacity: 1;
}
.big-image.fade-out {
    opacity: 0;
}
.big-info {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 30px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: background-color .3s ease;
}
.big-info p,
.big-info h2{
    opacity: 0;
    transition: opacity .3s ease;
}
.big-info::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: opacity .3s ease;
    opacity: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--e-global-color-secondary));
}
.big-info.text-bg-blue::before {
    opacity: .7;
}
.big-info.text-bg-brown {
    transition: background-color .3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), color-mix(in srgb, var(--e-global-color-accent) 60%, transparent));
}

.news-block.poll p {
    margin-bottom: 0;
}

.news-block.poll label {
    color: var(--e-global-color-secondary);
}

input[type="radio"][name="acf_poll_option"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--e-global-color-primary) !important;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    margin-right: 8px;
}

input[type="radio"][name="acf_poll_option"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--e-global-color-primary) !important;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:checked {
    background-color: white;
}

@media screen and (max-width: 767px) {
    .columngap {
        margin-top: 5px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .news-block {
        padding: 10px;
        height: auto;
    }
    .big-image {
        margin-right: 0;
        height: 315px !important;
    }
    .big-info {
        padding: 30px 20px 20px
    }
}