/* View All Results Button */
.vk-search-view-all {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.vk-search-view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background: #d79300;
    color: #000;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #d79300;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vk-search-view-all-button:hover {
    background: #bf7d00;
    border-color: #bf7d00;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.vk-search-view-all-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search Results Page */
.vk-search-results-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.vk-search-results-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.vk-search-results-title strong {
    color: #d79300;
}

.vk-search-results-count {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.vk-search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Resultatenpagina: 5 producten per rij (zoals archiefpagina) */
.vk-search-results-page .vk-search-results-grid--products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1200px) {
    .vk-search-results-page .vk-search-results-grid--products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .vk-search-results-page .vk-search-results-grid--products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .vk-search-results-page .vk-search-results-grid--products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

.vk-search-result-item {
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vk-search-result-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Productkaart op resultatenpagina: archiefstijl met CTA-knop */
.vk-search-result-item--product .vk-search-result-link,
.vk-search-result-item--product .vk-search-result-link:hover,
.vk-search-result-item--product .vk-search-result-link:focus {
    text-decoration: none !important;
}

.vk-search-result-item--product .vk-search-result-link *,
.vk-search-result-item--product .vk-search-result-link:hover *,
.vk-search-result-item--product .vk-search-result-link:focus * {
    text-decoration: none !important;
}

.vk-search-result-item--product .vk-search-result-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vk-search-result-item--product .vk-search-result-image {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
}

.vk-search-result-item--product .vk-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vk-search-result-item--product .vk-search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.vk-search-result-item--product .vk-search-result-title {
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 8px;
}

/* SKU niet tonen op resultatenpagina */
.vk-search-results-page .vk-search-result-item--product .vk-search-result-sku {
    display: none;
}

.vk-search-result-item--product .vk-search-result-sku {
    margin-bottom: 6px;
}

.vk-search-result-item--product .vk-search-result-cta {
    display: inline-block;
    margin-top: auto;
    padding: 12px 16px;
    background: #d79300;
    color: #000;
    font-family: "Saira Condensed", Sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: all 0.2s;
}

.vk-search-result-item--product .vk-search-result-link:hover .vk-search-result-cta {
    background: #bf7d00;
}

.vk-search-result-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vk-search-result-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.vk-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-search-result-content {
    padding: 15px;
}

.vk-search-result-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.vk-search-result-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.vk-search-result-sku {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.vk-search-result-price {
    font-size: 16px;
    font-weight: 600;
    color: #d79300;
    margin-top: 10px;
}

.vk-search-results-page .vk-search-result-price,
.vk-search-results-page .vk-search-result-price * {
    color: #d79300 !important;
}

/* Restricted product (Role and price): ENKEL VOOR PARTNERS (zelfde specificiteit als .vk-search-results-page .vk-search-result-price) */
.vk-search-results-page .vk-search-result-price--restricted,
.vk-search-results-page .vk-search-result-price--restricted * {
    color: #000 !important;
}
.vk-search-result-price--restricted {
    font-size: 14px;
}
.vk-search-result-cta--restricted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.vk-search-result-cta-lock {
    flex-shrink: 0;
    vertical-align: middle;
}

.vk-search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.vk-search-pagination-link {
    padding: 10px 20px;
    background: #d79300;
    color: #000;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease;
}

.vk-search-pagination-link:hover {
    background: #bf7d00;
    color: #000;
}

.vk-search-pagination-info {
    color: #666;
    font-size: 14px;
}

.vk-search-no-results,
.vk-search-no-query {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.vk-search-no-results p,
.vk-search-no-query p {
    font-size: 16px;
    margin: 0;
}

/* Close Results Button – neutrale stijl, overschrijft Elementor button-kleur */
button.vk-search-close-results,
.vk-search-results .vk-search-close-results {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    background: #f0f0f0 !important;
    background-color: #f0f0f0 !important;
    border: 1px solid #ddd !important;
    border-radius: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #555 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-weight: 400;
    text-transform: none;
}

button.vk-search-close-results:hover,
.vk-search-results .vk-search-close-results:hover {
    background: #e5e5e5 !important;
    background-color: #e5e5e5 !important;
    color: #333 !important;
    border-color: #ccc !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.vk-search-close-results:focus {
    outline: 2px solid #d79300;
    outline-offset: 2px;
}

/* Easy Search Container */
.vk-search-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 99998; /* Ensure container has high z-index too */
}

/* Search Form */
.vk-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.vk-search-form:focus-within {
    border-color: #d79300;
    box-shadow: 0 0 0 3px rgba(255, 214, 3, 0.2);
}

.vk-search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.vk-search-input::placeholder {
    color: #999;
}

button.vk-search-submit,
.vk-search-form .vk-search-submit,
.vk-search-form button.vk-search-submit {
    padding: 12px 20px;
    border: none !important;
    background: #D39200 !important;
    background-color: #D39200 !important;
    color: #fff !important;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

button.vk-search-submit .vk-search-icon,
.vk-search-form .vk-search-submit .vk-search-icon,
button.vk-search-submit svg,
.vk-search-form .vk-search-submit svg {
    color: #fff !important;
    stroke: #fff !important;
}

button.vk-search-submit:hover,
.vk-search-form .vk-search-submit:hover,
.vk-search-form button.vk-search-submit:hover {
    background: #bf7d00 !important;
    background-color: #bf7d00 !important;
    color: #fff !important;
    opacity: 1;
}

.vk-search-icon {
    font-size: 18px;
}

/* Results Container */
.vk-search-results {
    position: fixed;
    top: auto;
    bottom: auto;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow: visible; /* Changed from auto to allow close button to be visible */
    z-index: 99999;
    display: none;
    max-width: 1400px;
    width: calc(100vw - 40px);
    left: 50%;
    transform: translateX(-50%);
}

/* Inner wrapper for scrollable content */
.vk-search-results-inner {
    max-height: 600px;
    overflow-y: auto;
    padding-top: 0;
}

.vk-search-results.has-results,
.vk-search-results.is-loading {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Loading State */
.vk-search-loading {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

/* No Results */
.vk-search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

/* Error Message */
.vk-search-error {
    padding: 20px;
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.vk-search-debug {
    margin-top: 12px;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 11px;
    color: #333;
}
.vk-search-debug pre {
    margin: 8px 0 0;
    white-space: pre-wrap;
    word-break: break-all;
    font-family: monospace;
}

/* Search Sections */
.vk-search-section {
    padding: 20px;
}

.vk-search-section:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.vk-search-section-title {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.vk-search-results-section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #333;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.vk-search-results-section-title:first-of-type {
    margin-top: 0;
}

.vk-search-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Search List */
.vk-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vk-search-item {
    margin-bottom: 12px;
}

.vk-search-item:last-child {
    margin-bottom: 0;
}

.vk-search-link {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    border-radius: 0;
    transition: background 0.2s ease;
}

.vk-search-link:hover {
    background: #f5f5f5;
}

/* Product Image */
.vk-search-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.vk-search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Content */
.vk-search-content {
    flex: 1;
    min-width: 0;
}

.vk-search-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.vk-search-title mark {
    background: #fff3cd;
    color: #856404;
    padding: 2px 4px;
    border-radius: 0;
    font-weight: 700;
}

.vk-search-excerpt {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.vk-search-excerpt mark {
    background: #fff3cd;
    color: #856404;
    padding: 1px 2px;
    border-radius: 0;
}

.vk-search-sku {
    display: inline-block;
    font-size: 12px;
    color: #999;
    margin-right: 12px;
}

.vk-search-price {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #d79300;
}

/* AJAX-dropdown: prijzen naast elkaar (inline); archief/resultatenpagina blijft ongewijzigd */
.vk-search-results .vk-search-price,
.vk-search-results .vk-search-price * {
    display: inline !important;
}

/* Responsive */
@media (max-width: 768px) {
    .vk-search-results {
        max-height: 400px;
        width: calc(100vw - 20px);
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vk-search-image {
        width: 50px;
        height: 50px;
    }
    
    .vk-search-title {
        font-size: 14px;
    }
    
    .vk-search-excerpt {
        font-size: 13px;
    }
}

/* Scrollbar Styling */
.vk-search-results::-webkit-scrollbar {
    width: 8px;
}

.vk-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
    margin: 8px;
}

.vk-search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 0;
}

.vk-search-results::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Search Icon Container */
.vk-search-icon-container {
    position: relative;
    display: inline-block;
}

.vk-search-icon-trigger,
button.vk-search-icon-trigger {
    background: #D39200 !important;
    background-color: #D39200 !important;
    border: none !important;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 20px;
    color: #fff !important;
    box-shadow: none !important;
}

.vk-search-icon-trigger:hover,
button.vk-search-icon-trigger:hover {
    background: #bf7d00 !important;
    background-color: #bf7d00 !important;
    color: #fff !important;
    opacity: 1;
    transform: scale(1.05);
}

.vk-search-icon-trigger .vk-search-icon-symbol,
.vk-search-icon-trigger .vk-search-icon-symbol svg {
    color: #fff !important;
    stroke: #fff !important;
}

.vk-search-icon-trigger:hover .vk-search-icon-symbol svg {
    stroke: #fff !important;
}

.vk-search-icon-symbol {
    display: inline-block;
    line-height: 1;
}

/* Search Icon Dropdown – direct onder het icoon, resultaten daaronder in flow */
.vk-search-icon-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    z-index: 9999;
    min-width: 320px;
    max-width: 520px;
    width: 90vw;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    display: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Override Elementor .elementor-kit-xxx button (primary color) – backdrop stays subtle and transparent */
button.vk-search-icon-dropdown-backdrop,
.vk-search-icon-dropdown button.vk-search-icon-dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.08) !important;
    background-color: rgba(0, 0, 0, 0.08) !important;
    border: none;
    cursor: pointer;
    padding: 0;
}

.vk-search-icon-dropdown.is-open {
    display: block;
    opacity: 1;
}

.vk-search-icon-dropdown .vk-search-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 12px 16px 16px;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vk-search-icon-dropdown .vk-search-form {
    position: relative;
}

/* Sluitknop zoekveld – neutrale stijl, overschrijft Elementor button-kleur */
button.vk-search-close,
.vk-search-form .vk-search-close {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #666 !important;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10;
    padding: 0;
    font-weight: 400;
    text-transform: none;
}

button.vk-search-close:hover,
.vk-search-form .vk-search-close:hover {
    background: #f0f0f0 !important;
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

.vk-search-close span {
    line-height: 1;
}

.vk-search-icon-dropdown .vk-search-results {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 8px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Responsive for icon dropdown */
@media (max-width: 768px) {
    .vk-search-icon-dropdown {
        min-width: 280px;
        max-width: calc(100vw - 24px);
        right: -8px;
    }
    
    .vk-search-icon-dropdown .vk-search-container {
        padding: 10px 12px 12px;
    }
    
    .vk-search-icon-dropdown .vk-search-results {
        max-height: 60vh;
    }
}

/* ========== Mobiele versie [creativitijd_search_icon version="mobile"] ========== */
@media (max-width: 768px) {
    .vk-search-icon-container--mobile .vk-search-icon-trigger {
        min-width: 44px;
        min-height: 44px;
        padding: 12px 14px;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-symbol .vk-search-icon-svg {
        width: 24px;
        height: 24px;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 100vh;
        display: none;
        border-radius: 0;
        border: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown.is-open {
        display: flex;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        max-height: 100%;
        overflow: hidden;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-form {
        flex-shrink: 0;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-input {
        font-size: 16px;
        min-height: 48px;
        padding: 14px 18px;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-submit {
        min-width: 48px;
        min-height: 48px;
        padding: 14px;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-results {
        flex: 1;
        min-height: 0;
        max-height: none;
        margin-top: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-item {
        min-height: 48px;
        padding: 12px 0;
    }
    
    .vk-search-icon-container--mobile .vk-search-icon-dropdown .vk-search-view-all-button {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Verberg mobiele shortcode op desktop (optioneel: toon alleen in mobiel menu) */
@media (min-width: 769px) {
    .vk-search-icon-container--mobile {
        display: none;
    }
}

.vk-search-meta,
.vk-search-result-meta {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4b3e2d;
    margin-bottom: 4px;
}

.vk-search mark {
    background: rgba(215, 147, 0, 0.25);
    color: inherit;
    padding: 0 2px;
}

/* Resultatenpagina – zelfde structuur als kennis/agenda-archief */
.vk-search-archive {
    color: #2b2b2b;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 4rem;
    background: #fff;
}

.vk-search-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
}

.vk-search-archive__banner .vk-search-inner {
    padding-top: clamp(1.75rem, 3vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.vk-search-archive__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    color: #2b2b2b;
}

.vk-search-archive__query {
    display: block;
    margin-top: 0.35rem;
    color: #d79300;
    font-weight: 700;
}

.vk-search-archive__body {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
    background: #fff;
}

.vk-search-archive__count {
    margin: 0 0 1.25rem;
}

.vk-search-archive__section-title {
    margin: 2rem 0 1.25rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #2b2b2b;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8e4dc;
}

.vk-search-archive__section-title:first-of-type {
    margin-top: 0;
}

.vk-search-cards {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    width: 100%;
}

.vk-search-cards--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .vk-search-cards--cols-2,
    .vk-search-results-page .vk-kennis-cards--cols-2,
    .vk-search-results-page .vk-agenda-cards--cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Dropdown: compacte kaarten in kennis/agenda-stijl */
.vk-search-dropdown-cards {
    display: grid;
    gap: 0.75rem;
}

.vk-search-dropdown-cards .vk-search-dropdown-card {
    min-height: 0;
}

.vk-search-dropdown-cards .vk-kennis-card__title,
.vk-search-dropdown-cards .vk-agenda-card__title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.vk-search-dropdown-cards .vk-kennis-card__summary {
    font-size: 0.8125rem;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vk-search-dropdown-cards .vk-kennis-card--has-thumb .vk-kennis-card__thumb,
.vk-search-dropdown-cards .vk-agenda-card--has-thumb .vk-agenda-card__thumb {
    flex: 0 0 96px;
    width: 96px;
}

.vk-search-dropdown-cards .vk-kennis-card__link,
.vk-search-dropdown-cards .vk-agenda-card__link {
    min-height: 0;
}

.vk-search-dropdown-cards .vk-kennis-card__body,
.vk-search-dropdown-cards .vk-agenda-card__body {
    padding: 0.75rem 1rem;
}

.vk-search-dropdown-cards .vk-kennis-card__cta,
.vk-search-dropdown-cards .vk-agenda-card__cta {
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
}

.vk-search-results-page .vk-kennis-cards,
.vk-search-results-page .vk-agenda-cards,
.vk-search-results-page .vk-search-cards {
    padding-left: 0;
    padding-right: 0;
}
