
.blog-intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 16px;
    margin-top: -104px;

}

.blog-intro::before,
.blog-intro::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}

.blog-intro::before {
    background: url("/img/background.svg");
}

.blog-intro::after {
    backdrop-filter: blur(2px);
    background: linear-gradient(180deg, rgba(252, 252, 252, 0) 0%, #FCFCFC 100%);
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}


/* #region serach-section-page  */

.serach-section-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 0 16px;
}

.serach-section-page::before,
.serach-section-page::after {
    content: "";
    position: absolute;
    background: url("/imgs/back-dot.svg") no-repeat;
    width: 112px;
    height: 136px;
    z-index: -1;
    transform: scale(0.6);
}

.serach-section-page::before {
    bottom: 30%;
    right: 0;
}

.serach-section-page::after {
    bottom: 0;
    left: 0;
}


@media screen and (min-width : 992px) {

    .serach-section-page {
        padding: 0 40px;
    }


    .serach-section-page::before,
    .serach-section-page::after {
        transform: scale(0.9);
    }


}

/* #endregion serach-section-page  */


.category-item{
    display: flex;
    align-items: center;
    min-width: fit-content;
    gap: 8px;
    background-color: var(--color-neutral-100);
    color: var(--color-primary);
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-global);
}

@media screen and (min-width : 768px) {
    .blog {
        width: calc(50% - 24px);
    }
}

@media screen and (min-width : 992px) {
    .blog {
        width: calc(33% - 24px);
        height: 280px;
    }
}

@media screen and (min-width : 1400px) {
    .blog {
        width: calc(25% - 30px);
    }
}