.blog-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(209, 213, 224, 1);
}

.blog-hero-title {
    color: rgba(9, 14, 24, 1);
    font-size: 100px;
    font-weight: 400;
    line-height: 110px;
    letter-spacing: -5%;
    text-align: left;
}

.blog-hero-text {
    color: rgba(9, 14, 24, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-align: left;
    width: 426px;
}

.blog-arch {
    padding-top: 197px;
}

.blog-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}

.blog-post-count {
    display: flex;
    align-items: flex-start;
    color: rgba(9, 14, 24, 1);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.6px;
    text-align: left;
}

.blog-post-count-value {
    color: rgba(9, 14, 24, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-align: left;
    margin-left: 24px;
}

.blog-filter-right {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.filter-item {
    position: relative;
}

.filter-item-title {
    color: rgba(9, 14, 24, 1);
    font-size: 24px;
    cursor: pointer;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.5px;
    user-select: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-item-title:after {
    content: '';
    display: block;
    width: 7px;
    min-width: 7px;
    height: 9px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgOSA3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOS4wMDAwMDAiIGhlaWdodD0iNy4wMDAwMDAiIGZpbGw9Im5vbmUiIGN1c3RvbUZyYW1lPSIjMDAwMDAwIj4KCTxwYXRoIGlkPSJWZWN0b3IiIGQ9Ik0wIDBMMCA5TDcgNC41TDAgMFoiIGZpbGw9InJnYig5LDE0LDI0KSIgZmlsbC1ydWxlPSJub256ZXJvIiB0cmFuc2Zvcm09Im1hdHJpeCg2LjEyMzIzZS0xNywxLC0xLDYuMTIzMjNlLTE3LDksMCkiIC8+Cjwvc3ZnPgo=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.25s;
}

.filter-item-options {
    position: absolute;
    bottom: -20px;
    transform: translateY(100%);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    opacity: 0;
    gap: 12px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    flex-wrap: wrap;
}

.filter-item.active .filter-item-options {
    opacity: 1;
    pointer-events: initial;
}

.filter-item-option-item {
    border-radius: 5px;
    background: rgba(232, 234, 239, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
    text-align: center;
    color: rgba(9, 14, 24, 1);
    font-size: 16px;
    padding: 12px 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
    text-align: center;
}

.filter-item-option-item.active {
    background: rgba(9, 14, 24, 1);
    color: #fff;
}

.filter-item.active .filter-item-title:after {
    transform: rotate(180deg);
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-top: -56px;
}

.blog-item {
    width: calc(33.33% - 128px / 3);
    margin-top: 56px;
}

.blog-item-top-wrapper {
    width: 100%;
    position: relative;
}

.blog-item-top-wrapper:after {
    content: '';
    display: block;
    padding-top: 100%;
}

.blog-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.blog-item-image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    background: rgba(0, 0, 0, 0.3);
}

.blog-item-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-item-top-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-item-top-info-category,
.blog-item-top-info-date {
    border-radius: 5px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.25);
    padding: 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-align: center;
}

.blog-item-title {
    margin-top: 32px;
    color: rgba(9, 14, 24, 1);
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -0.6px;
    text-align: left;
}

.blog-load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    color: rgba(9, 14, 24, 1);
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    height: 64px;
    letter-spacing: -0.4px;
    text-align: center;
    border-radius: 5px;
    width: 260px;
    max-width: 100%;
    transition: 0.25s;
    background: rgba(232, 234, 239, 1);
}

@media screen and (min-width: 992px) {
    .blog-load-more:hover {
        opacity: 0.6;
    }
}

@media screen and (max-width: 1800px) {
    .blog-list {
        gap: 32px;
    }



    .blog-item {
        margin-top: 32px;
        width: calc(33.33% - 64px / 3);
    }

    .blog-list {
        margin-top: -32px;
    }

    .blog-item-title {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.6px;
        text-align: left;
        margin-top: 16px;
    }

    .blog-item-top-info {
        padding: 16px;
    }

    .blog-item-top-info-category,
    .blog-item-top-info-date {
        padding: 7px 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: -0.25px;
        text-align: center;
    }
}

@media screen and (max-width: 992px) {
    .blog-filter .blog-post-count {
        display: none;
    }

    .blog-post-count {
        color: rgba(9, 14, 24, 1);
        font-size: 48px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -2.4px;
        text-align: center;
        margin-bottom: 20px;
    }

    .blog-post-count-value {
        color: rgba(9, 14, 24, 1);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.3px;
        text-align: center;
        margin-left: 8px;
    }

    .blog-hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .blog-post-count-value {
        color: rgba(9, 14, 24, 1);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.3px;
        text-align: center;
    }

    .blog-hero-text {
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.3px;
        text-align: center;
    }

    .blog-arch {
        padding-top: 140px;
    }

    .blog-filter-right {
        justify-content: center;
        width: 100%;
        gap: 48px;
        z-index: 50;
        position: relative;
    }

    .filter-item-title {
        color: rgba(9, 14, 24, 1);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.4px;
        text-align: center;
    }

    .filter-item {
        position: static;
    }

    .filter-item-options {
        width: calc(100vw - 40px);
        justify-content: center;
    }

    .filter-item-option-item {
        padding: 12px 16px;
    }

    .blog-item {
        width: calc(50% - 16px);
    }
}

@media screen and (max-width: 767px) {
    .blog-item {
        width: 100%;
        margin-top: 0;
    }

    .blog-list {
        margin-top: 0;
        gap: 64px;
    }

    .blog-item-top-wrapper:after {
        padding-top: 84%;
    }

    .blog-item-top-info {
        justify-content: flex-end;
    }

    .blog-load-more {
        width: 150px;
        max-width: 100%;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
        letter-spacing: -0.16px;
        text-align: center;
        margin-top: 64px;
        height: 48px;
    }
}




.wrapper-loader {
    display: none;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-top: 32px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF5625;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}