.ressource-preview {
    display: flex;
    border: 1px solid rgba(0,0,0,.1);
    line-height: normal;
}

.ressource-preview__thumbnail {
    width: 400px;
    height: 250px;
}

.ressource-preview__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ressource-preview__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
}

.ressource-preview__date {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.ressource-preview__title {
    color: var(--sporsora-primary-color);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.ressource-preview__dl-count {
    font-size: 13px;
    padding-bottom: 19.5px;
}

.ressource-preview .ressource-preview__link {
    width: fit-content;
    font-size: 14px;
    text-transform: uppercase;
    padding: 13px 26px;
    background-color: var(--sporsora-primary-color);
    color: white;
    transition: all .4s;
}

.ressource-preview .ressource-preview__link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ressource-preview__thumbnail {
        width: 250px;
    }
    .ressource-preview__content {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .ressource-preview {
        flex-direction: column;
    }

    .ressource-preview__thumbnail {
        width: 100%;
    }
}