<?php
/**
 * Search results.
 *
 * @package Iliya
 */

get_header();
?>

<div class="container mx-auto max-w-[1200px] py-12">
    <header class="mb-10">
        <h1 class="text-2xl font-bold text-dark font-dana">
            <?php
            printf(
                /* translators: %s: search query. */
                esc_html__('نتایج جستجو برای: %s', 'iliya'),
                '<span class="text-accent">' . esc_html(get_search_query()) . '</span>'
            );
            ?>
        </h1>
    </header>

    <?php if (have_posts()) : ?>
        <div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
            <?php
            while (have_posts()) :
                the_post();
                get_template_part('template-parts/post-card');
            endwhile;
            ?>
        </div>

        <div class="mt-12">
            <?php the_posts_pagination([
                'mid_size'  => 1,
                'prev_text' => __('قبلی', 'iliya'),
                'next_text' => __('بعدی', 'iliya'),
            ]); ?>
        </div>
    <?php else : ?>
        <p class="mb-6 text-muted"><?php esc_html_e('نتیجه‌ای یافت نشد. عبارت دیگری را امتحان کنید.', 'iliya'); ?></p>
        <?php get_search_form(); ?>
    <?php endif; ?>
</div>

<?php
get_footer();
