.vp-search-resources {
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    border-top: 1px solid rgba(133, 184, 255, 0.16);
    background: linear-gradient(180deg, rgba(9, 18, 34, 0.96), rgba(4, 9, 18, 0.99));
    color: #f4f7fb;
}

.vp-search-resources__inner {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.vp-search-resources__heading {
    max-width: 760px;
}

.vp-search-resources__heading > span {
    display: block;
    margin-bottom: 0.55rem;
    color: #8ec8ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vp-search-resources__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.05;
}

.vp-search-resources__heading p {
    margin: 1rem 0 0;
    color: rgba(232, 240, 250, 0.76);
    line-height: 1.65;
}

.vp-search-resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vp-search-resources__grid a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.25rem;
    border: 1px solid rgba(142, 200, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: inherit;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.vp-search-resources__grid a:hover,
.vp-search-resources__grid a:focus-visible {
    border-color: rgba(142, 200, 255, 0.5);
    background: rgba(142, 200, 255, 0.075);
    transform: translateY(-2px);
}

.vp-search-resources__grid strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
}

.vp-search-resources__grid span {
    flex: 1;
    color: rgba(232, 240, 250, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.vp-search-resources__grid em {
    color: #8ec8ff;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    .vp-search-resources__grid a {
        transition: none;
    }
}

