/* Styling voor quote author met client logo */
.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.client-logo img {
    max-height: 30px;
    width: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quote-author strong {
    font-weight: 600;
    color: #333;
}
/* Verwijder header image voor zoekresultaten pagina */
.search .page-header,
.search .entry-header,
.no-results .page-header,
.no-results .entry-header {
    background-image: none !important;
    background: none !important;
}

/* Zorg dat de naamvelden naast elkaar kunnen maar ook netjes wrappen */
.ff-t-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ff-t-cell {
    flex: 1 1 0;
    min-width: 120px;
    max-width: 50%;     /* beide cellen max 50% */
    box-sizing: border-box;
    padding-right: 0;   /* voorkom extra marge als je thema deze toevoegt */
}

/* Zorg dat inputvelden zich niet breder maken dan hun container */
.ff-el-form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Op hele smalle schermen onder elkaar tonen */
@media (max-width: 600px) {
    .ff-t-cell {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* Extra ruimte tussen titel en excerpt in shortcodes-overzichten */
.shortcode-content p.content {
    margin-top: 1.5em; /* Voeg extra ruimte toe boven de excerpt */
}


/* Opmaak voor blog pagination oftewel de pijl onder de blogs */
.blog-pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 2,5em;
    displ
    width: 100%;
}

.blog-pagination .btn {
    display: inline-block;
    margin: 0 18px;
    padding: 18px 28px 10px 28px;
    font-size: 2em;
    vertical-align: middle;
}

.blog-pagination .btn.btn-prev {
    margin-right: 32px;
    padding-top: 28px;
    background: url(/wp-content/themes/NetCare/images/main/arrow1.png) !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    transform: none !important;
}

.blog-pagination .btn.btn-next {
    margin-left: 32px;
    padding-top: 28px;
    transform: none !important;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* voor als er veel pagina’s zijn */
    width: 100%;
}
.blog-pagination .btn {
    display: inline-block;
}

/* Verberg subscribe2 widget op mobiel */
@media (max-width: 768px) {
    /* Verberg de hele Footer_last widget area op mobiel */
    .col-md-3.col-md-offset-6 {
        display: none !important;
    }
    
    /* Of specifiek de subscribe2 widget verbergen */
    .widget-content .subscribe {
        display: none !important;
    }
}

