@import url(main.css?v=1.1);

.header {
    background-image: inherit;
    height: 120px;
    background-color: rgba(8, 34, 74) !important;

    .menu {
        height: 100%;
        padding: 0 38px;


    }
}

main {
    .row.row-3.mb-2 {
        margin-bottom: 20px;
    }

    section.blog {
        padding: 0 100px;
        margin-bottom: 60px;

        .row-1 {
            color: #043E66;
            text-align: center;
            font-family: "Source Serif 4";
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            letter-spacing: 0.4px;

            display: flex;
            align-items: center;
            justify-content: start;
        }

        .row-2 {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            margin-bottom: 23px;

            .left {
                width: 299px;
                color: #043E66;
                font-family: "Source Serif 4";
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 23px;
                letter-spacing: 0.6px;
            }

            .right {
                .show-more {
                    display: flex;
                    width: 176px;
                    height: 48px;
                    padding: 0 6px;
                    justify-content: center;
                    align-items: center;
                    gap: 23px;
                    flex-shrink: 0;
                    border-radius: 4px;
                    background: #DBAB26;
                    box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.20);

                    color: #043E66;
                    font-family: "Source Serif 4";
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                    letter-spacing: 0.54px;
                }
            }
        }

        .row-3 {
            gap: 20px;

            .blog-card {
                display: flex;
                height: 450px;
                flex-direction: column;
                align-items: center;
                flex-shrink: 0;
                border-radius: 12px;
                background: #D3E3F0;

                .image {
                    width: 100%;

                    img {
                        width: 100%;
                        height: 300px;
                        flex-shrink: 0;
                        border-radius: 35px;
                        padding: 20px;
                    }
                }

                .body {
                    width: 100%;
                    padding: 0 20px;
                    height: 100px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    .title {
                        color: #043E66;
                        font-family: "Source Serif 4";
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 24px;
                    }

                    .more {
                        display: flex;
                        justify-content: space-between;
                        align-items: end;

                        .icon {
                            display: flex;
                            width: 40px;
                            height: 41px;
                            padding: 9px 11px;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;

                            border-radius: 30px;
                            background: #DBAB26;
                            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
                        }

                        .text-link {
                            color: #043E66;
                            font-family: "Source Serif 4";
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: 27px;
                            letter-spacing: 0.48px;
                            text-decoration-line: underline;
                            text-decoration-style: solid;
                            text-decoration-skip-ink: auto;
                            text-decoration-thickness: auto;
                            text-underline-offset: auto;
                            opacity: 0.5;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .row.row-3.mb-2 {
        flex-direction: column;
    }

    main {
        section.blog {
            padding: 0 20px !important;
            margin-bottom: 30px !important;

            .row-1 {
                font-size: 22px;
            }

            .row-2 {
                margin-top: 10px;

                .left {
                    font-size: 15px !important;
                }

                .right {
                    .show-more {
                        display: none;
                    }
                }
            }

        }
    }
}
