
.cpf-feed {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    max-width: 100%;
}
.cpf-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    align-items: center;
    padding: 10px;
}
.cpf-card:hover {
    transform: translateY(-1px);
}
.cpf-thumb {
    flex-shrink: 0;
}
.cpf-thumb img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 10px;
}
.cpf-info {
    padding-left: 12px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: left;
}
.cpf-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
    text-decoration: none;
}
.cpf-meta {
    color: #666;
    font-size: 12px;
    font-weight: 400;
}
.cpf-highlight {
    background: black;
    color: white;
}
.cpf-highlight .cpf-meta {
    color: #aaa;
}
.cpf-highlight .cpf-title {
    color: white;
}

@media (max-width: 600px) {
    .cpf-card {
        flex-direction: row;
    }
    .cpf-thumb img {
        width: 68px;
        height: 68px;
    }
    .cpf-title {
        font-size: 13.5px;
    }
    .cpf-meta {
        font-size: 11.5px;
    }
}
