.cbd-filters {
    text-align: center;
/*    margin-bottom: 60px;*/
}

.cbd-filter-button {
   color: #000 !important;
    border-radius: 9999px;
    min-width: 150px;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: bold;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #e6e7e8 !important;
    margin: 4px;
}

.cbd-filter-button:hover, .cbd-filter-button.active {
    background-color: #e6e7e8 !important;
}
.cbd-filter-button:hover
{
    background-color: #e6e7e8;
}
.cbd-grid-item {
    width: calc(33.333% - 25px);
    margin-bottom: 20px;
    padding: 30px;
   /* border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);*/
}

.cbd-grid-image img {
    height: 184px !important;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    /* object-position: calc(50% + 10%) center; */
    object-position: 100% 100%;
    margin-bottom: 40px;
}

.cbd-grid-content h2 {
    line-height: 28px !important;
    min-height: 70px;
}
.cbd-grid-content h2 a {
text-decoration: none !important;
    border-bottom: 0 !important;
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
}
.cbd-grid-content p 
{
color: #000000d4;
    font-family: 'Inter';
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 25px;
}

.cbd-read-more {
    border: unset;
    padding: 0;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Montserrat';
    margin-top: 25px;
}
.cbd-read-more:focus {
    background: transparent;
    color: #000;
}
.cbd-read-more:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 5px;
    color: #000;
}
 

.cbd-pagination {
    text-align: center;
    margin-top: 20px;
}

.cbd-pagination-button {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cbd-pagination-button:hover, .cbd-pagination-button:disabled {
    background-color: #005177;
}

.cbd-pagination-button:disabled {
    cursor: default;
}

.cbd-post-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 20px;
}

.cbd-grid-item {
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
}
@media (max-width:767.99px)
{
    .cbd-grid-item {
width:100%;
padding:10px;
}
.cbd-filters {
    text-align: center;
    margin-bottom: 5px;
}
.cbd-grid-content h2 {
    
    min-height: 0px;
}
}

#cbd-load-more-container {
    text-align: center;
    margin-top: 20px;
}

#cbd-load-more {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    fill: #000000;
    padding: 14px 40px;
    color: #000000;
    background-color: #61CE7000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #A8AAAD;
    border-radius: 50px 50px 50px 50px;
}

#cbd-load-more:hover {
    background-color: #E6E7E8;
    border-color: #E6E7E8;
}

.cbd-loader {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid #0073aa;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.cbd-loader-text {
    font-size: 16px;
    color: #0073aa;
    text-align: center;
    margin: 20px 0;
}