/* 컨테이너 */
.paper-list-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    font-family: inherit; /* 테마 폰트 상속 */
    border-top: 1px solid #E6E6E6;
}

/* 개별 아이템 박스 */
.paper-item {
    display: block;
    padding: 0.8em 0;
    border-bottom: 1px solid #E6E6E6;
    /*CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;*/
    text-decoration: none !important; /* 테마 스타일 덮어쓰기 */
    background-color: #fff;
    transition: all 0.2s ease;
}

/* 마우스 오버 효과 */
.paper-item:hover {
    color: #00AAFF;
    /*transform: translateY(-2px);*/
}

/* 제목 스타일 */
.paper-title {
    display: block;
    font-size: 1.33rem;
    margin-bottom: 0.3em;
    line-height: 1.3;
}

/* 외부 링크 화살표 아이콘 */
.paper-title::after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.5;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s;
}

.paper-item:hover .paper-title::after {
    transform: translate(2px, -2px); /* 마우스 오버시 화살표 움직임 */
    opacity: 1;
    color: #00AAFF;
}

/* 정보 텍스트 (저널명 등) */
.paper-info {
    display: block;
    font-size: 14px;
    color: #B3B3B3;
    line-height: 1.4;
}

/* 모바일 반응형 (필요시 추가) */
@media (max-width: 600px) {

}
