.pi-wrapper-f0996ac0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: inherit;
    padding: 10px 0;
}

.pi-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ffcc00; /* Default yellow ring */
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.pi-avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.pi-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pi-author {
    font-weight: 600;
    color: #88929b;
    font-size: 16px;
}

.pi-date {
    color: #88929b;
    font-size: 16px;
}

.pi-separator {
    width: 1px;
    height: 18px;
    background-color: #d1d5db;
}

.pi-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f4f6;
    color: #7b8e9b;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pi-share-btn:hover {
    background-color: #e2e8f0;
    color: #475569;
}

@media (max-width: 767px) {
    .pi-wrapper-f0996ac0 {
        flex-direction: column;
        align-items: flex-start;
    }
    .pi-right {
        width: 100%;
    }
    .pi-share-btn {
        width: 100%;
        justify-content: center;
    }
}