.epse {
    position: relative;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;

    & > p {
        display: none;
    }

    strong {
        font-weight: 700;
    }

    .epse__input {
        width:100%;
        padding:8px;
        border:1px solid #ccc;
        border-radius:4px;
    }

    .epse__section-title {
        font-weight: bold;
        text-transform: uppercase;
    }

    .epse__header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .epse__grid {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .epse__results {
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        border:1px solid #ddd;
        box-shadow:0 2px 6px rgba(0,0,0,.1);
        padding:12px;
        z-index:999;
    }

    .epse__post-results {
        min-width: 200px;
    }

    .epse__product-results {
        grid-column: 2/3;
    }

    .epse__product-results,
    .epse__post-results {

        a {
            font-size: 1rem;
            line-height: 1.1;
        }
        
    }

    .epse__meta {
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.8rem;
        }
    }

    .epse-products {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .product {
        border:1px solid #ddd;
        padding: 0.5rem;
        .product__image {   
            display: inline-block;
            img {
                max-width: 100%;
            }
        }
    }
}
