.results-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.p_results {
    margin: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.p_results:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
    background: #eff6ff;
}

.p_results a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.res-icon {
    font-size: 1.5rem;
}

.res-title {
    flex: 1;
    word-break: break-word;
    transition: color 0.2s;
}

.p_results:hover .res-title {
    color: #1d4ed8;
}