.wpw-widget-container {
    /* background-color: #0b1120; */
    /* padding: 30px; */
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
    /* color: #fff; */
}

.wpw-grid {
    display: grid;
    gap: 30px;
}

/* Filter Bar */
.wpw-filter-bar {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wpw-filter-bar select {
    background-color: transparent;
    color: #fff;
    border: 1px solid #374151;
    border-radius: 20px;
    padding: 10px 32px 10px 16px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 140px;
    max-width: 250px;
}

.wpw-filter-bar select option {
    background-color: #0b1120;
    color: #fff;
}

/* Card Styling */
.wpw-card {
      background: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: rgb(66 66 66 / 29%) 1.95px 1.95px 2.6px !important;
    transition: all ease-in-out .3s !important;
    border-radius: 10px;
}
.wpw-card:hover {
    box-shadow: rgb(3 181 181 / 20%) 1.95px 1.95px 10.6px !important;
    transform: scale(1.01);
}
.wpw-card-img-wrap {
    position: relative;
    background: #111827;
    border-radius: 12px;
    margin-bottom: 15px;
}

.wpw-card-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #fff;
}

.wpw-badge.wpw-category-badge {
       position: absolute;
    bottom: -2px;
    background: #02050d;
    padding: 5px 50px 5px 40px;
    border-radius: 0px 10px 0 0;
    left: 0;
    color: #02dfdf !important;
    font-weight: 700;
    font-size: 14px;
    /* z-index: 10; */
}

/* Card Content */
.wpw-card-content {
    padding: 10px 30px 20px 30px;
}

.wpw-industry {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

.wpw-desc {
    font-size: 13px;
    line-height: 1.6;
}

.wpw-title {
    display: inline;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.wpw-title a {
   color: #009999;
    font-size: 17px;
    text-decoration: none;
    font-weight: bolder;
}

.wpw-excerpt {
       color: #cfcdcd;
    display: inline;
    font-size: 15px;
}

/* Pagination */
.wpw-pagination {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.wpw-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid transparent;
    transition: 0.2s;
}

.wpw-pagination .page-numbers:hover {
    color: #14b8a6;
}

.wpw-pagination .current {
    border-color: #14b8a6;
    color: #14b8a6;
}

.wpw-pagination .next, .wpw-pagination .prev {
    width: auto;
    padding: 0 10px;
}

.wpw-pagination .dots {
    color: #9ca3af;
}