/* ============================================= */
/* Last Issue Articles                           */
/* ============================================= */

.last-issue-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Kart */
.last-issue-post {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.last-issue-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* Başlık */
.last-issue-head h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #7a7979;
}

.last-issue-heading h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #5e9cea;
    color: #333;

}

.last-issue-head h3 a:hover {
    color: #357ebd;
}

/* Yazarlar */
.last-issue-authors {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    margin-bottom: 10px;
}

.last-issue-author-badge {
    display: inline-flex;
    align-items: center;
    background: #e0e0e0;
    color: #555;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.last-issue-author-badge i {
    margin-right: 4px;
}

.last-issue-author-badge:hover {
    background: #357ebd;
    color: #fff;
}

/* Meta (Dil + DOI) */
.last-issue-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.last-issue-meta img {
    width: 18px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.last-issue-lang {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.last-issue-doi a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.last-issue-doi a:hover {
    color: #357ebd;
}

/* Butonlar */
.last-issue-buttons {
    display: flex;
    gap: 8px;
}

.last-issue-btn-abstract {
    background: #5e9cea;
    color: #fff;
}

.last-issue-btn-abstract:hover {
    background: #357ebd;
    color: #fff;
}

.last-issue-btn-fulltext {
    background: #f6a87a;
    color: #fff;
}

.last-issue-btn-fulltext:hover {
    background: #e59560;
    color: #fff;
}


