.srp-box {
    border: 1px solid #ddd;
    margin-top: 20px;
    padding: 10px;
    background: #fff;
}

.srp-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: #0da3e2;
    color: #fff;
    font-weight: bold;
}

.srp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* luôn 3 cột */
    gap: 20px;
}

.srp-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fafafa;
    padding: 8px;
    text-align: center;
    transition: all 0.3s ease;
}
.srp-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.srp-thumb-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srp-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srp-title {
    margin-top: 8px;
    font-size: 15px;
    font-weight: bold;
}
.srp-title a {
    text-decoration: none;
    color: #333;
}
.srp-title a:hover {
    color: #0da3e2;
}
