/* our blog */
.--our-blog {
    margin: 10% 0 10% 0;
    display: flex;
    gap: 20px;
    border-radius: 20px;

    .--blog-left {
        .--blog-1 {
            position: relative;
            img {
                border-radius: 20px;
            }

            .--blog-1-content {
                position: absolute;
                top: 0;
                padding: 5%;
                display: flex;
                gap: 5%;

                div {
                    flex: 1 0 45%;
                }

                > :nth-child(2) {
                    height: 10%;
                }
            }
        }
    }

    .--blog-right {
        position: relative;
        display: flex;
        flex: 1 0 30%;
        flex-direction: column;
        gap: 5%;

        .--blog-2 {
            flex: 1 0 30%;
            background-color: #3b68f3;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            :nth-child(2) {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }

        :nth-child(2) {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .--blog-3 {
            flex: 1 1 60%;
            position: relative;
            background: url("../imgs/background/imageourblog2.png");
            background-repeat: no-repeat;
            background-size: cover;
            height: 100%;

            border-radius: 20px;

            .--blog-3-content {
                position: absolute;
                top: 0;
                bottom: 0;
                padding: 6%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }
    }
}

.--border-text {
    display: inline-block;
    padding: 0 1rem;
    border: 1px solid white;
    border-radius: 50px;
    text-align: center;
}

.--white-space {
    background-color: #ffffff;
    padding: 1% 5%;
    border-radius: 10px;
    color: black;
    font-weight: 500;
}

.--txt-tech {
    font-size: 12px;
}

.arrow {
    width: 100%;
}

@media (max-width: 991px) {
    .--our-blog {
        flex-direction: column;

        .--blog-right {
            display: flex;
            flex: 1 1 0;
            flex-direction: row;
            gap: 10px;

            .--blog-2 {
                flex: 1 0 50%;
            }

            .--blog-3 {
                .--blog-3-content {
                    /* position: relative; */
                }
            }
        }
    }
}

@media (max-width: 476px) {
    .--our-blog {
        flex-direction: column;

        .--blog-right {
            display: flex;
            flex: 1 1 0;
            flex-direction: column;
            gap: 20px;

            .--blog-3 {
                .--blog-3-content {
                    position: relative;
                }
            }
        }
    }
}
