.related-post__single {
    background: var(--color-white-related);
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid var(--color-secondary);
    cursor:pointer;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.related-post__image-wrapper {
    max-width: 25%;

}
.related-post__image-wrapper img {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
@media (max-width: 600px) {
    .related-post__image-wrapper {
display: none;
    }
}

.related-post__image {
    width: 100%;
    height: auto;
}

.related-post__content {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-top:1rem;
    padding-bottom: 1rem;  
}

.related-post__single:hover {
    background: rgba(210, 105, 30, 0.045);
    transition: all 0.2s ease-in-out;
}

.related-post__intro {
    font-size: 14px;
}

.related-post__details {
    display: flex;
    align-items: center;
}

.related-post__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    border-right: 3px solid var(--color-secondary);
    padding-right: 5px;
}

.related-post__arrow {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    fill:var(--color-secondary);
}


.related-post__link img {
    margin-top: 0px  !important;
    margin-bottom: 0px  !important;
}