
    .pub-wrapper {
        margin-top: 24px;
        width: 100%;
        font-feature-settings: "ss01";
    }

    .pub-header-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow);
        margin-bottom: 20px;
    }

    .pub-header-title {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .pub-header-title i {
        font-size: 1.6rem;
        color: #0284c7;
        background: #e0f2fe;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        border-radius: 14px;
    }

    .pub-header-title h2 {
        color: var(--primary);
        font-size: 1.2rem;
        font-weight: 900;
        margin: 0;
    }

    .pub-header-title p {
        color: var(--muted);
        font-size: 0.82rem;
        margin-top: 4px;
    }

    .pub-filter-btns {
        display: flex;
        gap: 6px;
        background: #f1f5f9;
        padding: 5px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .filter-btn {
        border: none;
        outline: none;
        background: transparent;
        color: var(--muted);
        font-family: inherit;
        font-size: 0.82rem;
        font-weight: 700;
        padding: 8px 14px;
        border-radius: 9px;
        cursor: pointer;
        transition: 0.25s ease;
        white-space: nowrap;
    }

    .filter-btn.active {
        background: var(--white);
        color: var(--primary);
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    .pub-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pub-card {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 24px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .pub-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        border-radius: 15px;
        display: grid;
        place-items: center;
        font-size: 1.35rem;
    }

    .icon-journal { background: #eff6ff; color: #2563eb; }
    .icon-intl { background: #fdf2f8; color: #db2777; }
    .icon-conf { background: #f0fdf4; color: #16a34a; }
    .icon-software { background: #fefce8; color: #ca8a04; }

    .pub-details {
        flex: 1;
        min-width: 0;
    }

    .pub-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 6px;
    }

    .pub-title {
        color: var(--primary);
        font-size: 0.98rem;
        font-weight: 800;
        line-height: 1.6;
    }

    .badge-tag {
        font-size: 0.72rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .badge-journal { background: #dbeafe; color: #1e40af; }
    .badge-intl { background: #fce7f3; color: #9d174d; }
    .badge-conf { background: #dcfce7; color: #166534; }
    .badge-software { background: #fef9c3; color: #854d0e; }

    .pub-venue {
        color: #475569;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        line-height: 1.6;
    }

    .pub-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #0284c7;
        font-size: 0.8rem;
        font-weight: 700;
        text-decoration: none;
        margin-top: 8px;
    }

    .pub-meta {
        text-align: left;
        flex-shrink: 0;
    }

    .pub-date {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--accent);
        background: #fff8f0;
        border: 1px solid #ffedd5;
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 800;
        white-space: nowrap;
    }

    /* استایل فقط برای محتوای انگلیسی */
    .en-text {
        direction: ltr;
        text-align: left;
        display: block;
    }

    @media (max-width: 768px) {
        .pub-header-card {
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }

        .pub-filter-btns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .pub-card {
            flex-direction: column;
            text-align: center;
        }

        .pub-title-row, .pub-venue {
            justify-content: center;
        }

        .en-text {
            text-align: center;
        }

        .pub-meta {
            text-align: center;
            width: 100%;
            border-top: 1px dashed var(--border);
            padding-top: 10px;
        }
    }
