.jo-related-articles {
    font-family: Arial, sans-serif;
    margin: 20px 0;
}
.jo-related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}
.article-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.jo-related-thumbnail {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}
.jo-related-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.jo-related-articles .article-title {
    margin: 0;
    font-size: 1.2rem;
    color: #0073aa;
    font-weight: 400;
    margin-bottom: 5px;
}
.jo-related-articles .article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.jo-related-articles .article-title a:hover {
    color: #005177;
}
.jo-related-articles .article-text {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.jo-related-articles .read-more {
  text-decoration: none;
  font-size: .9em;
}
.jo-related-articles .read-more:hover {
    color: #005177;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .jo-related-articles .row {
        flex-direction: column;
    }

    .jo-related-thumbnail {
        margin-bottom: 10px;
    }
}