
/* Elegant Article Card Style */

.obj_article_summary{
background:#f3f3f3;
border-radius:12px;
padding:22px;
margin-bottom:26px;
box-shadow:0 4px 14px rgba(0,0,0,0.10);
position:relative;

/* yellow accent border around card */
border:2px solid #f2b705;
}

/* stronger bottom highlight like modern journals */
.obj_article_summary::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:6px;
background:#f2b705;
border-bottom-left-radius:12px;
border-bottom-right-radius:12px;
}

/* title style */
.obj_article_summary .title a{
color:#2c6ecb;
font-weight:600;
font-size:16px;
line-height:1.4;
}

/* author name */
.author-name{
color:#2c6ecb;
font-weight:600;
}

/* affiliation */
.author-affiliation{
color:#000;
font-weight:700;
}

/* DOI style */
.obj_article_summary .doi a{
color:#f2b705;
font-weight:800;
}

/* PDF button */
.obj_article_summary .pdf{
background:#2c6ecb;
color:#fff;
border-radius:6px;
padding:6px 14px;
font-weight:500;
}

/* hover effect */
.obj_article_summary:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
transition:all .25s ease;
border-color:#e0a800;
}
