.insights {
    background: linear-gradient(180deg, rgba(5, 153, 115, 0.00) 0%, rgba(5, 153, 115, 0.40) 100%);
    padding-bottom: var(--spacing-4xl) !important;

    @media screen and (max-width: 576px) {
        padding-bottom: var(--spacing-2xl) !important;
    }
    h2 {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 4.8px;
        margin-bottom: 0;

        @media screen and (max-width: 991px) {
            letter-spacing: 4px;
        }
        @media screen and (max-width: 576px) {
            letter-spacing: 3px;
        }
    }
    .insights-grid {
        margin-top: 40px;

        @media screen and (max-width: 991px) {
            margin-top: 30px;
        }
        @media screen and (max-width: 576px) {
            margin-top: 20px;
        }
        .insight {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;

            a {
                color: inherit;

                &:hover, &:focus-visible {
                    .insight-image {
                        img {
                            transform: scale(1.1);
                        }
                    }
                    .insight-content {
                        .read-more {
                            color: var(--color-white);

                            .link-arrow {
                                top: -4px;
                                right: -3px;
                            }
                        }
                    }
                }
            }
            .insight-image {
                width: 100%;
                height: 300px;
                border-radius: 30px;
                overflow: hidden;
                margin-bottom: 16px;

                @media screen and (max-width: 768px) {
                    height: 200px;
                }
                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: .7s ease;
                }
            }
            .insight-content {
                width: 100%;
                height: calc(100% - 316px);
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                @media screen and (max-width: 768px) {
                    height: calc(100% - 216px);
                }
                .insight-category {
                    font-size: 2rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 1.6px;
                    color: var(--color-primary);
                    margin-bottom: 1.2rem;
                }
                .insight-title {
                    font-size: 1.8rem;
                    font-weight: bold;
                    line-height: 1.4;
                    margin-bottom: .7rem;
                }
                .insight-subtitle {
                    font-size: 1.8rem;
                    font-style: italic;
                    line-height: 1.4;
                    margin-bottom: 1.5rem;
                }
                .read-more {
                    display: inline-block;
                    font-size: 1.6rem;
                    font-weight: 800;
                    line-height: 1.2;
                    text-transform: uppercase;
                    letter-spacing: 1.28px;
                    color: #B4B4B4;
                    margin-bottom: 0;
                    transition: .2s ease-in-out;

                    @media screen and (max-width: 991px) {
                        font-size: 1.8rem;
                        letter-spacing: 1.8px;
                    }
                    .link-arrow {
                        position: relative;
                        display: inline-block;
                        width: 10px;
                        height: 10px;
                        top: -1px;
                        right: 0;
                        transition: .2s ease-in-out;

                        svg {
                            width: 100%;
                            height: 100%;
                            
                            path {
                                stroke-width: 3px;
                            }
                        }
                    }
                }
            }
        }
    }
}