    .pub-card {
        border: none;
        background: white;
        transition: all 0.3s;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }

    .pub-card:hover {
        background-color: #FAF5F5;
        padding-left: 10px;
    }

    .pub-link {
        text-decoration: none;
        color: #333;
        display: block;
        padding: 20px;
    }

    .pub-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 8px;
    }

    .pub-info {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    .pub-year-divider {
        background-color: #FAF5F5;
        padding: 10px 20px;
        font-weight: 800;
        color: var(--primary-color);
        border-radius: 4px;
        margin: 40px 0 20px;
    }

    .year-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 35px;
    }

    .year-btn {
        display: inline-block;
        padding: 9px 20px;
        border: 2px solid var(--primary-color);
        border-radius: 999px;
        background: #fff;
        color: var(--primary-color) !important;
        text-decoration: none !important;
        font-weight: 700;
        transition: all 0.25s ease;
    }

    .year-btn:hover {
        background: var(--primary-color);
        color: #fff !important;
        text-decoration: none !important;
    }

    .year-btn.active {
        background: var(--primary-color);
        color: #fff !important;
        border-color: var(--primary-color);
    }
    .publication-filter-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        margin-bottom: 35px;
    }

    .year-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .publication-search {
        display: flex;
        align-items: center;
        min-width: 320px;
    }

    .publication-search input {
        width: 100%;
        height: 42px;
        border: 1px solid #ddd;
        border-radius: 999px 0 0 999px;
        padding: 0 18px;
        outline: none;
    }

    .publication-search button {
        height: 42px;
        border: none;
        background: var(--primary-color);
        color: white;
        padding: 0 18px;
        border-radius: 0 999px 999px 0;
    }

    @media (max-width: 768px) {
        .publication-filter-bar {
            flex-direction: column;
            align-items: stretch;
        }

        .publication-search {
            min-width: 100%;
        }
    }

    /* --- Show more: 전체 목록 펼치기 + 그라데이션 페이드 --- */
    .pub-list-wrap.collapsible { max-height: 700px; overflow: hidden; transition: max-height 0.45s ease; }
    /* fade는 컨테이너 밖에서 음수 margin으로 아래를 덮음 (overflow 클리핑 회피) */
    .pub-fade {
        position: relative; z-index: 3;
        height: 200px; margin-top: -200px;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 88%);
        transition: opacity 0.35s;
    }
    .pub-list-wrap.open + .pub-fade { opacity: 0; }

    .showmore-row { display: flex; justify-content: center; margin: 18px 0 4px; }
    .showmore-btn {
        display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
        padding: 10px 26px; border: none; border-radius: 999px;
        background: var(--primary-color); color: #fff; font-weight: 700; font-size: 0.9rem;
        box-shadow: 0 4px 14px rgba(158,42,43,0.30); transition: 0.2s;
    }
    .showmore-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .showmore-btn .chev { transition: transform 0.35s; }
    .showmore-btn.open .chev { transform: rotate(180deg); }
    .showmore-btn .count { opacity: 0.85; font-size: 0.82rem; font-weight: 600; }