/*!**********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/all-posts-grid/style.css ***!
  \**********************************************************************************************************************************************************************************/
.p7-all-posts-grid-block,
.wp-block-p7-all-posts-grid {
    width: 100%;
    max-width: 100% !important;
}

.p7-post-card {
    background-color: var(--p7-background-color-all-posts-grid-color);
    color:  var(--p7-text-all-posts-grid-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.p7-post-card .p7-post-photo-wrapper img {
    width: 100%;
    max-height: 175px;
    min-height: 175px;
    -o-object-fit: cover;
       object-fit: cover;
}

@media screen and (max-width: 600px) {
    .p7-post-card .p7-post-photo-wrapper img {
        max-height: 150px;
        min-height: 150px;
    }
}

.p7-all-posts-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(var(--p7-grid-all-posts-grid-columns), 1fr);
    grid-gap: 20px;
}

@media screen and (max-width: 1024px) {
    .p7-all-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .p7-all-posts-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.p7-post-info h3 {
    margin: 10px auto;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--wp--preset--font-family--gotham);
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--p7-text-all-posts-grid-color);
}

.p7-last-post__date p {
    font-size: 0.875rem;
    line-height: 1.25em;
    margin: 0px 0px 20px;
}

.p7-last-post__excerpt p {
    font-size: 0.875rem;
    line-height: 1.25em;
    margin-bottom: 25px;
}

.p7-post-box-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p7-post-card-link {
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    background-color: var(--p7-bg-button-all-posts-grid-color);
    color: var(--p7-button-all-posts-grid-color);
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25em;
    display: block;
    font-weight: 700;
    padding: 10px 20px;
    border: 1px solid var(--p7-bg-button-all-posts-grid-color);
    transition: all .3s;
}

.p7-post-card-link:hover {
    background-color: transparent;
    color: var(--p7-button-all-posts-grid-color);
    border-color: var(--p7-button-all-posts-grid-color);
}

.p7-all-posts-grid-container .p7-all-posts-grid:has(.p7-no-results) {
    grid-template-columns: 1fr;
}

.p7-all-posts-grid-container .p7-no-results {
    padding: 30px;
    text-align: center;
    border: 1px solid #ddd;
    min-height: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.p7-all-posts-grid-container .p7-no-results svg {
    width: 80px;
    height: 80px;
    fill: #ddd;
}

.p7-all-posts-grid-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.p7-all-posts-grid-pagination button.p7-load-more {
    border: none;
    background-color: transparent;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    color: var(--p7-highlight-all-posts-grid-color);
    margin: 30px auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.p7-category-filters {
    max-width: 1280px;
    width: 90%;
    gap: 20px;
    margin: auto;
    padding: 10px 40px;
    overflow-x: auto;
    display: flex;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: 0px 1px 5px 0px #002D4740;
}

.p7-category-filters::-webkit-scrollbar {
    width: 0px;
}

.p7-category-filters button {
    border: 1px solid var(--p7-filter-all-posts-grid-color);
    color: var(--p7-filter-all-posts-grid-color);
    font-size: 0.875rem;
    line-height: 1.25em;
    font-weight: 700;
    padding: 8px 20px;
    text-transform: uppercase;
    background-color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
    white-space: nowrap;
}

.p7-category-filters .p7-filter-btn.is-active {
    border: 1px solid var(--p7-filter-active-all-posts-grid-bg-color);
    color: var(--p7-filter-active-all-posts-grid-color);
    background-color: var(--p7-filter-active-all-posts-grid-bg-color);
}

/*# sourceMappingURL=style-index.css.map*/