.blog-page {
    padding-top: 120px;
    max-width: 85%;
}

.blog-header {
    background-color: rgba(227, 234, 244, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.blog-header-section {
    width: 50%;
}

.blog-header-image, .blog-header-image img {
    border-radius: 12px;
}

.blog-header-image img {
    object-fit: cover;
}

.blog-header-title {
    font-size: 32px;
}

.blog-header-section {
    line-height: 200%;
    font-size: 14px;
}

.read-blog {
    color: rgba(0, 122, 255, 1);
    font-size: 14px;
    max-width: fit-content;
}

.read-blog.small {
    font-size: 12px;
}

.navigate-blog button {
    background-color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(230, 230, 230, 1) !important;
    text-align: center;
    color: rgba(0, 122, 255, 1);
}

.blog-section {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 1s ease;
}

.blog-section:not(.active) {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
}

.blog-section.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    transform: translateX(0);;
}

.blog-articles .articles-grid {
    display: flex;
    align-items: center;
    /* grid-template-columns: repeat(auto-fit, minmax(0, 348px)); */
    row-gap: 24px;
    column-gap: 16px;
    flex-wrap: wrap;
}

@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-articles .article-box {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUpScale 0.6s ease forwards;
    background-color: rgba(227, 234, 244, 0.2);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    height: 438px;
    max-width: 348px;
    min-width: 280px;
    flex: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between;
}

.blog-articles .article-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.2);
}

.blog-articles .article-box img {
    border-radius: 16px;
    object-fit: cover;
}

.blog-articles .article-box .article-image {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
}

.blog-articles .article-box .article-title {
    font-size: 14px;
    color: rgba(1, 60, 93, 1);
}

.articles-filter .filter-item button {
    border: 1px solid rgba(230, 230, 230, 1);
    border-radius: 50rem;
    padding: 4px 24px;
    max-width: fit-content;
    height: 36px;
    font-size: 14px;
}

.articles-filter .filter-item button:hover {
    background-color: rgba(0, 122, 255, 0.04);
    color: rgba(0, 122, 255, 1) !important;
}

.articles-filter .filter-item button.active {
    border: 1px solid rgba(0, 122, 255, 1);
    background-color: rgba(0, 122, 255, 0.04);
    color: rgba(0, 122, 255, 1) !important;
    font-weight: bold;
}
  