
/* ---- Prompt Library Layout ---- */

body.page-template-page-prompt-library {
    background-color: #f4f8fe;
}

.prompt-library {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    
}

.prompt-library__header h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 8px;
}

.prompt-library__intro {
    max-width: 720px;
    color: #6b7280;
}

/* ---- Search ---- */
.prompt-library__search {
    margin: 32px 0 24px;
}

.prompt-library__search-form input {
    width: 100%;
    max-width: 520px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

/* ---- Category Pills ---- */
.prompt-library__categories {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prompt-library__categories a {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
}

.prompt-library__categories a.is-active {
    background: #111827;
    color: #fff;
}

/* ---- Grid ---- */
.prompt-library__grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* ---- Cards ---- */
.prompt-card {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: box-shadow .15s ease, transform .15s ease;
}

.prompt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.prompt-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.prompt-card__excerpt {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.prompt-card__tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prompt-card__tags span {
    font-size: 12px;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 999px;
}

.prompt-library__search-dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 100%;
    max-width: 520px;
    z-index: 999;
    display: none;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ---- Search Form ---- */
.prompt-library__search-form {
    position: relative; /* needed so the dropdown aligns under the input */
}


.prompt-library__search-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prompt-library__search-dropdown li {
    padding: 10px 14px;
    cursor: pointer;
}

.prompt-library__search-dropdown li:hover {
    background-color: #f3f4f6;
}

.prompt-search-results li.is-selected {
    background-color: #f3f4f6; /* light highlight for selected item */
    cursor: pointer;
}

.prompt-search-results li.is-selected:hover {
    background-color: #e5e7eb; /* darker highlight on hover */
}

.prompt-library__search-dropdown .prompt-search-item {
    padding: 10px 14px;
    cursor: pointer;
}

.prompt-library__search-dropdown .prompt-search-item:hover {
    background-color: #f3f4f6;
}
