.ltg-grid-764184ca {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ltg-card-764184ca {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.ltg-card-764184ca:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ltg-card-thumb-764184ca img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.ltg-card-thumb-placeholder-764184ca {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.ltg-card-thumb-placeholder-764184ca svg {
    width: 48px;
    height: 48px;
}

.ltg-card-body-764184ca {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ltg-card-title-764184ca {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ltg-card-764184ca:hover .ltg-card-title-764184ca {
    color: #667eea;
}

.ltg-card-meta-764184ca {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.ltg-meta-author-764184ca {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.ltg-meta-author-764184ca img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.ltg-meta-date-764184ca {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #888;
}

.ltg-no-topics-764184ca {
    text-align: center;
    color: #888;
    padding: 40px 20px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .ltg-grid-764184ca {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .ltg-grid-764184ca {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}