.jtx-link-card {
    margin: 1.25em 0;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.jtx-link-card__link {
    display: flex;
    gap: 14px;
    padding: 14px;
    color: inherit;
    text-decoration: none;
}

.jtx-link-card__link:hover {
    background: #f8fafc;
    text-decoration: none;
}

.jtx-link-card__thumb {
    flex: 0 0 180px;
    max-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
}

.jtx-link-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 128px;
    object-fit: cover;
}

.jtx-link-card__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jtx-link-card__title {
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 700;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jtx-link-card__excerpt {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jtx-link-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    align-items: center;
}

.jtx-link-card__date {
    font-size: 0.75rem;
    color: #64748b;
}

.jtx-link-card__tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.jtx-link-card__tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    line-height: 1;
    color: #0f766e;
    border: 1px solid #99f6e4;
    background: #f0fdfa;
    border-radius: 999px;
    padding: 4px 8px;
}

@media (max-width: 700px) {
    .jtx-link-card__link {
        flex-direction: column;
        gap: 10px;
    }

    .jtx-link-card__thumb {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .jtx-link-card__thumb img {
        max-height: 180px;
    }
}
