.article-mobile-card {
    border: 1px solid var(--mobile-border);
    border-radius: 14px;
    background: #fff;
    color: var(--mobile-text);
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    min-height: 104px;
    overflow: hidden;
    padding: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.article-mobile-cover {
    position: relative;
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    background: #e9eef3;
    overflow: hidden;
    align-self: start;
}

.article-mobile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-mobile-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.02));
}

.article-mobile-cover small {
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 6px;
    z-index: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--mobile-secondary);
    display: block;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 11px;
    overflow: hidden;
    padding: 3px 5px;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.article-mobile-body {
    display: grid;
    align-content: center;
    gap: 5px;
    min-width: 0;
    padding: 2px 2px 2px 0;
}

.article-mobile-body strong {
    color: var(--mobile-primary);
    display: -webkit-box;
    font-size: 15px;
    line-height: 19px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-mobile-body em {
    color: var(--mobile-muted);
    display: -webkit-box;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-mobile-body span {
    color: var(--mobile-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 11px;
    line-height: 15px;
}

.article-mobile-body i {
    color: var(--mobile-secondary);
}

.article-mobile-body b {
    color: #c2c7cc;
    font-weight: 700;
}

@media (max-width: 360px) {
    .article-mobile-card {
        grid-template-columns: 74px 1fr;
    }

    .article-mobile-cover {
        width: 74px;
        height: 74px;
    }

    .article-mobile-body strong {
        font-size: 14px;
        line-height: 18px;
    }
}
