/* Pill title */
.wl-active-tab-title {
    display: inline-block;
    margin: 0;
    padding: 10px;
    border-radius: 161px;
    background: #FFFFFF7A;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

/* MAIN TITLE */
.wl-active-tab-desc {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 46px;
    line-height: 150%;
    text-align: center;
    color: #333333;
    margin-top: 10px;
    margin-bottom: 35px;
}
/* search bar */
.wl-article-search-wrapper {
    max-width: 720px;
    margin: 0 auto 30px;
    position: relative;
}

.wl-article-search-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    font-size: 15px;
}

.wl-search-loader {
    display: none;
    position: absolute;
    right: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #A855F7;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.wl-search-results {
    gap: 7px;
    display: flex;
    background: #fff;
    margin-top: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    flex-direction: column;
}

.post_heading_title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    color: #1f2937;
}

.wl-load-more-wrap {
    text-align: center;
    margin-top: 30px;
}

.wl-load-more-btn {
    color: #333333;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}
.wl-load-more-btn:hover{
    background: none;
    color: #333333;
}
.wl-load-more-btn:focus{
	outline: none;
    background-color: white !important;
    color: #333333 !important;
    text-decoration: none;
}