.faqpage_content {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.faqpage_content .page-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.article-item {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    word-break: break-word;
}

.article-item a {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 6px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-item a:hover {
    color: var(--color-primary-hover);
}

.article-item .meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
    gap: 8px;
}

.article-item i {
    font-size: 12px;
    color: #7f8c8d;
}

.article-item span {
    font-size: 12px;
    color: #7f8c8d;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .article-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }

    .article-item a {
        font-size: 15px;
        white-space: normal;
        flex: 1;
        margin-bottom: 0;
    }
}
