    /* Modern, sade, hızlı */
.ra-toolbar{
    display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    margin-bottom: 12px;
}

.ra-search{
    display:flex; align-items:center; gap:10px; flex:1; min-width:260px;
    background:#fff; border:1px solid rgba(0,0,0,.10);
    padding:12px 14px; border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}
.ra-search input{border:0; outline:0; flex:1; background:transparent; font-size:15px;}
.ra-ico{opacity:.65; font-weight:700;}
#ra-clear{border:0; background:transparent; font-size:18px; opacity:.65; display:none;}
#ra-clear:hover{opacity:1;}

.ra-pagesize{
    display:flex; align-items:center; gap:10px;
    background:#fff; border:1px solid rgba(0,0,0,.10);
    padding:10px 12px; border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    white-space:nowrap;
}
.ra-pagesize select{border:0; outline:0; background:transparent;}

.ra-meta{
    display:flex; align-items:center; justify-content:space-between;
    font-size:14px; margin: 10px 2px 18px;
    opacity:.9;
    color: black;
}
.ra-loading{display:inline-flex; align-items:center; gap:10px;}
.ra-spin{
    width:16px; height:16px; border-radius:999px;
    border:2px solid rgba(0,0,0,.2);
    border-top-color:rgba(0,0,0,.7);
    animation: raSpin .8s linear infinite;
}
@keyframes raSpin{to{transform:rotate(360deg)}}

.ra-list{display:flex; flex-direction:column; gap:14px;}

/* CARD */
.ra-card{
    display:flex; gap:16px; align-items:stretch;
    background:#fff; border:1px solid rgba(0,0,0,.10);
    border-radius:18px; overflow:hidden;
    box-shadow:0 14px 40px rgba(0,0,0,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ra-card:hover{
    transform: translateY(-4px);
    border-color: rgba(0,0,0,.18);
    box-shadow:0 22px 60px rgba(0,0,0,.10);
}

.ra-thumb{
    width:160px; min-width:160px;
    background:#f3f4f6;
    position:relative;
    overflow:hidden;
}
.ra-thumb img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transform: scale(1);
    transition: transform .35s ease;
}
.ra-card:hover .ra-thumb img{transform: scale(1.04);}

.ra-content{
    padding:16px 16px 14px;
    flex:1;
    display:flex;
    flex-direction:column;
    gap:8px;
    min-width:0;
}
.ra-title{
    font-size:18px;
    font-weight:900;
    line-height:1.25;
    margin:0;
}
.ra-title a{
    color:#111827;
    text-decoration:none;
}
.ra-title a:hover{ text-decoration:underline; text-underline-offset:3px; }

.ra-info{
    display:flex; gap:12px; flex-wrap:wrap;
    font-size:13px; font-weight:700;
    color:#111827;
    opacity:.9;
}
.ra-pill{
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.03);
}
.ra-dot{
    width:8px; height:8px; border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 4px rgba(34,197,94,.18);
}

.ra-desc{
    margin:0;
    color:black;
    opacity:.9;
    line-height:1.6;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ra-footer{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    margin-top:6px;
}
.ra-read{
    font-weight:900;
    text-decoration:none;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    padding:10px 12px;
    border-radius:14px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space:nowrap;
    color:#111827;
}
.ra-card:hover .ra-read{
    transform: translateY(-1px);
    box-shadow:0 14px 34px rgba(0,0,0,.10);
}

.ra-empty{
    padding:16px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

/* Pager */
.ra-pager{display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:18px;}
.ra-btn{
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
    padding:10px 14px;
    border-radius:14px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    font-weight:800;
}
.ra-btn[disabled]{opacity:.5; cursor:not-allowed;}
.ra-pages{display:flex; gap:8px; flex-wrap:wrap; justify-content:center;}
.ra-page{
    width:42px; height:42px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    font-weight:900;
}
.ra-page.active{border-color:rgba(0,0,0,.45);}

@media (max-width: 768px){
    .ra-card{flex-direction:column;}
    .ra-thumb{width:100%; min-width:100%; height:190px;}
}
