/* Archive + Search shared styles - uses --pi-* variables */
.search-hero-bg,
.category-hero-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            120% 120% at 0% 0%,
            color-mix(in srgb, var(--pi-primary-light, #00a84d) 24%, transparent) 0%,
            transparent 60%
        ),
        linear-gradient(
            135deg,
            var(--pi-primary, #007d3d) 0%,
            color-mix(in srgb, var(--pi-primary-dark, #004d26) 88%, #022c22 12%) 100%
        );
}

.search-hero-bg::before,
.category-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.search-hero-bg::after,
.category-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

.search-hero-bg .sh-archive__hero-inner,
.category-hero-bg .sh-archive__hero-inner {
    position: relative;
    z-index: 2;
}

.search-hero-bg .sh-wave,
.category-hero-bg .sh-wave {
    z-index: 3;
}

.dark .search-hero-bg::before,
.dark .category-hero-bg::before {
    opacity: 0.28;
}

.search-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sgh-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.sgh-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--pi-text-2, #475569);
    background-color: var(--pi-bg-card, #fff);
    border: 1px solid var(--pi-border, #e2e8f0);
    transition: all 0.2s;
    text-decoration: none;
}

.sgh-pagination .page-numbers:hover:not(.current):not(.dots) {
    border-color: var(--pi-primary, #007d3d);
    color: var(--pi-primary, #007d3d);
    background-color: var(--pi-bg-alt, #f3f4f6);
}

.sgh-pagination .page-numbers.current {
    background-color: var(--pi-primary, #007d3d);
    color: #fff;
    border-color: var(--pi-primary, #007d3d);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sgh-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    min-width: 20px;
}
