.linkedin-block {
    max-width: 970px;

    .title h2 {
        font-weight: 400;
        font-size: 1.5rem;
        color: #003bd1;
        text-align: left;
        border-bottom: 3px solid #003bd1;
        padding: 0 0 20px 0;
        margin: 0 0 25px 0;
    }

    .title h3 {
        font-weight: 700;
        color: #666666;
        text-align: center;
        margin: 0 auto 50px;
        text-transform: uppercase;
        font-size: 20px;
    }

    .content {
        display: flex;
        gap: 10px;

        .articles {
            width: 70%;

            .article-block {
                margin-bottom: 40px;

                .article-content {
                    display: flex;
                    gap: 15px;

                    .article-icon img {
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                    }
                }

                .article-text p {
                    font-size: 14px;
                }
            }
        }

        .articles a {
            margin-bottom: 25px;
            color: #393230;
    
            .article-title h4 {
                font-size: 18px;
            }
        }
    }    

    .lkd-action {
        width: 30%;

        .lkd-text {
            font-weight: 400;
            font-size: 24px;
            line-height: 26px;
            text-align: center;
            color: #666;
            text-decoration: none;
            margin: 0 0 30px 0;
            display: block;
        }

        .lkd-link {
            float: left;
            display: block;
            background-color: #ece9ea;
            padding: 50px 0;

            .lkd-logo {
                width: 60%;
                display: flex;
                margin: 0 auto;
            }
        }
    }

    @media (max-width: 768px){
        .content {
            flex-direction: column;

            .articles, .lkd-action {
                width: unset;
            }
        }
    }
}