/* assets/css/sra-plugin.css */
.sra-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.sra-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.sra-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.sra-thumb img { width: 100%; height: auto; display: block; }
.sra-content { padding: 1rem; }
.sra-title { font-size: 1.1rem; margin: 0 0 .5rem; }
.sra-excerpt { font-size: .9rem; color: #555; }
.sra-pagination { margin-top: 2rem; text-align: center; }
.sra-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: .5rem;
    padding: 0;
}
.sra-pagination a,
.sra-pagination span {
    display: block;
    padding: .4rem .7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
}
.sra-pagination .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
