/* CSS Khusus untuk Grid Tim Editorial agar tidak bentrok dengan tema OJS */
.tim-editor-wrapper {
    font-family: inherit;
    margin-bottom: 30px;
}
.tim-editor-header {
    /* Background diubah menjadi gradasi Biru ke Emas */
    background: linear-gradient(to right, #0b3b5e, #b38e5d);
    color: #ffffff !important;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    text-transform: uppercase;
}
.tim-editor-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Agar otomatis turun ke bawah di layar HP */
}
.tim-editor-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 100%;
    max-width: 280px; /* Lebar maksimal per kotak */
    box-sizing: border-box;
    text-align: center;
}
.tim-editor-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #bda052;
    margin-bottom: 15px;
}
.tim-editor-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}
.tim-editor-role {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}
.tim-editor-btn {
    display: block;
    /* Warna dasar tombol menjadi Biru Gelap */
    background-color: #0b3b5e;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
    transition: background-color 0.3s;
}
.tim-editor-btn:hover, .tim-editor-btn:focus {
    /* Efek hover tombol menjadi Emas */
    background-color: #b38e5d;
    color: #ffffff !important;
}
.tim-editor-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.badge-item {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}
.b-scholar { background-color: #e6f0ff; color: #0055cc; }
.b-sinta { background-color: #e6fff0; color: #008040; }
.b-scopus { background-color: #fff0e6; color: #e65c00; }
/* Simulasi ikon warna murni */
.i-scholar { width: 10px; height: 10px; background-color: #4285F4; border-radius: 50%; display: inline-block; }
.i-sinta { width: 10px; height: 10px; background-color: #34A853; border-radius: 50%; display: inline-block; }
.i-scopus { width: 10px; height: 10px; background-color: #EA4335; border-radius: 2px; display: inline-block; }