.artikel-row-link {
    text-decoration: none !important;
}

.artikel-row-link div.artikel-title:hover, h2.artikel-row-title:hover, div.artikel-row-more:hover {
    text-decoration: underline !important;
}

.artikel-row {
    display: flex;
    align-items: flex-start;
    padding: 0.7rem 1rem;
    gap: 1.1rem;
}

.artikel-img-col {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.artikel-img-col img {
    max-width: 87px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    background: #f0f0f0;
    display: block;
}

.artikel-info-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.10rem;
}

.artikel-title {
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--clr-primary);
    line-height: 1.17;
    margin-bottom: 0.13rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artikel-title a {
    color: inherit;
    text-decoration: none !important;
    pointer-events: auto;
}

.artikel-date {
    color: #8a8a8a;
    margin-top: 0.07rem;
    margin-bottom: 0.22rem;
}

.artikel-intro {
    font-size: 0.98em;
    color: #222;
    line-height: 1.3;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
    .artikel-row {
        flex-direction: row;
        padding: 0 !important;
        gap: 0.7rem;
    }
    .artikel-img-col {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        min-width: 75px !important;
        flex-basis: 44px;
        min-height: 44px;
    }
    .artikel-img-col img {
        width: 75px !important;   /* exact gelijke afmeting voor elke img */
        height: 44px !important;
        object-fit: cover;
    }
    .artikel-title {
        font-size: 1.1em;
        white-space: normal;
    }
    .artikel-date {
        font-size: 0.75em;
    }
}
