
#tag-div p:last-child {
    display: none !important;
}

#tag-div p {
    margin: 0;
}

.yt-lazy {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: #000;
    overflow: hidden;
}
.yt-lazy__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.9);
    display: block;
}
.yt-lazy__play {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    border-radius: 14px;
    background: #ff0033;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    cursor: pointer;
}
.yt-lazy__play:before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.yt-lazy iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.article-card {
    background-color: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--muted);
    position: relative;
    display: flex;
    justify-content: center;
}

.article-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--muted-foreground);
}

.category-badge {
    color: var(--primary);
    font-weight: 600;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
    color: var(--card-foreground);
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 24px;
    flex: 1;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--muted);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
}

.read-time {
    font-size: 12px;
    color: var(--muted-foreground);
}
