/*!**********************************************************************************************************************************************************************************!*\
  !*** 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: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.p7-post-card .p7-card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.p7-post-card-button {
    position: relative;
    z-index: 2;
}

.p7-post-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 20px 40px rgba(255, 255, 255, 0.12); */
}

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

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

.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 {
    padding: 0px 18px;
    border-left: 2px solid var(--p7-highlight-all-posts-grid-color);
}

.p7-post-info h3 {
    margin: 10px auto;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: var(--p7-title-all-posts-grid-color);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p7-last-post__group {
    padding: 10px 20px;
}

.p7-last-post__date p {
    font-size: 0.875rem;
    line-height: 1.25em;
    margin: 0px 0px 20px;
    text-transform: capitalize;
    color: var(--p7-highlight-all-posts-grid-color);
    font-weight: bold;
}

.p7-last-post__excerpt p {
    font-size: 1rem;
    line-height: 1.625em;
    margin-bottom: 0px;
    color: var(--p7-text-all-posts-grid-color);
}

.p7-post-box-footer {
    display: flex;
    padding: 10px 20px;
}

.p7-post-card-link {
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    color: var(--p7-button-all-posts-grid-color);
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.25em;
    display: block;
    font-weight: 700;
    padding: 0px;
    transition: all .3s;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    z-index: 2;
}

.p7-post-card-link svg {
    height: 100%;
}

.p7-post-card-link svg path {
    stroke: var(--p7-button-all-posts-grid-color);
}

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

.p7-post-card-link:hover svg path {
    stroke: var(--p7-highlight-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-all-posts-grid-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-top: 40px;
}

.p7-page-btn {
    border: 0;
    background: transparent;
    padding: 0;
    min-width: auto;
    height: auto;

    font-size: 14px;
    font-weight: 400;
    line-height: 1;

    color: #DCA23B;
    cursor: pointer;

    transition: opacity .2s ease;
}

.p7-page-btn:hover {
    color: #D46F35;
}

.p7-page-btn.active {
    font-weight: 700;
    color: #D46F35;
}

.p7-dots {
    color: #D46F35;
    font-size: 14px;
    line-height: 1;
}

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