/* Algemeen font-styling */
body, .resultcard {
    font-family: 'Cairo', sans-serif;
}

/* Specifieke styling voor resultaatkaartjes */
.resultcard {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Linkercontainer: Titel, snippet, datum */
.resultcard-left h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.resultcard-left h3 a {
    text-decoration: none;
    color: #0073aa;
}

.resultcard-left h3 a:hover {
    color: #005177;
    text-decoration: underline;
}

.result-snippet {
    font-family: 'Cairo', sans-serif;
    margin: 10px 0;
    font-size: 0.95rem;
    color: #666;
}

.result-date {
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    color: #999;
}

/* Rechtercontainer: Afbeelding */
.resultcard-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Meta-informatie (Type en Vakgebied) */
.result-meta {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #555;
    font-family: 'Cairo', sans-serif;
}

.result-meta span {
    display: inline;
    margin-right: 10px;
}

.result-meta a {
    text-decoration: none;
    color: #0073aa;
    font-family: 'Cairo', sans-serif;
}

.result-meta a:hover {
    color: #005177;
    text-decoration: underline;
}

.result-meta strong {
    font-weight: bold;
    color: #333;
}
