.insights .related-products-section {
    padding-bottom: 0;
    margin-top: 32px;
    padding-left: 0;
    padding-right: 0;
}

.insights .related-products-section .categories {
    display: flex;
    gap: 32px;
    align-items: center;
}
.insights .related-products-section .categories .category {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: #7A788F;
    padding: 0 0 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s all;
    border-bottom: 1px solid transparent;
}

.insights .related-products-section .categories .category.active {
    color: rgba(203, 33, 40, 1);
    border-bottom-color: rgba(203, 33, 40, 1);
}
.insights .related-products-section .related-products-grid {
    display: none;
    margin-top: 24px;
    margin-bottom: 64px;
}

.insights .related-products-section .related-products-grid.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insights .related-products-section .related-products-grid.active .post {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insights .related-products-section .related-products-grid.active .post .post-img {
    object-fit: cover;
}

.insights .related-products-section .related-products-grid.active .post h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: #1F3357;
    margin: 0;
    -webkit-text-fill-color: unset;
    background: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    box-sizing: border-box;
    min-height: calc(22px * 2);
}

.insights .related-products-section .related-products-grid.active .post h3:hover {
    text-decoration: underline;
    cursor: pointer;
}

.insights .related-products-section .related-products-grid.active .post .description-wrapper {
    display: flex;
    gap: 10px;
}

.insights .related-products-section .related-products-grid.active .post .description-wrapper .post-img {
    display: none;
}

.insights .related-products-section .related-products-grid.active .post p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #08090C;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    box-sizing: border-box;
    min-height: calc(22px * 4);
}

.insights .related-products-section .related-products-grid.active .post .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insights .related-products-section .related-products-grid.active .post .post-footer .post-badge {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    border: 1px solid rgba(203, 33, 40, 1);
}

.insights .related-products-section .related-products-grid.active .post .post-footer .post-badge img {
    width: 24px;
    height: 24px;
}

.insights .related-products-section .related-products-grid.active .post .post-footer .post-badge span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #08090C;
}

.insights .related-products-section .related-products-grid.active .post .post-footer a {
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #1F3357;
}

@media screen and (max-width: 900px) {
    .insights .related-products-section .categories .category {
        font-size: 16px;
        line-height: 20px;
    }
    .insights .related-products-section .related-products-grid.active {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 32px;
    }

    .insights .related-products-section .related-products-grid.active .post h3 {
        font-size: 16px;
        line-height: 18px;
        min-height: calc(18px * 2);
    }

    .insights .related-products-section .related-products-grid.active .post p {
        font-size: 14px;
        line-height: 18px;
        min-height: calc(18px * 4);
    }
    .insights .related-products-section .related-products-grid.active .post .post-footer .post-badge span {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 728px) {
    .insights .related-products-section .categories {
        flex-wrap: wrap;
        gap: 24px;
    }
    .insights .related-products-section .related-products-grid.active {
        grid-template-columns: repeat(1, 1fr);
    }

    .insights .related-products-section .related-products-grid.active .post.left .post-img {
        display: none;
    }

    .insights .related-products-section .related-products-grid.active .post.left .post-img {
        display: none;
    }

    .insights .related-products-section .related-products-grid.active .post.left .description-wrapper .post-img {
        display: block;
        width: 50%;
    }

    .insights .related-products-section .related-products-grid.active .post.left p {
        min-height: calc(18px * 8);
        max-height: calc(18px * 8);
        -webkit-line-clamp: 8;
    }
}
