.srp-grid {
    display: grid;
    grid-template-columns: repeat(var(--srp-cols, 3), 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.srp-card {
    display: flex;
    flex-direction: column;
    background: #16213e;
    border: 1px solid #2a2a4a;
    border-radius: 6px;
    overflow: hidden;
    color: #c0c0c0;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.srp-card:hover {
    border-color: #4a7cf7;
    background: #1a2540;
    text-decoration: none;
}
.srp-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.srp-body {
    padding: 1em 1.2em;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.srp-card h4 {
    font-size: 1rem;
    margin: 0 0 0.4em;
    color: #f0f0f0;
}
.srp-card p {
    font-size: 0.9rem;
    margin: 0 0 0.5em;
    flex: 1;
}
.srp-card time {
    font-size: 0.75rem;
    color: #606070;
}
@media (max-width: 768px) {
    .srp-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .srp-grid { grid-template-columns: repeat(2, 1fr); }
}
