@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&family=Ubuntu:wght@300;400;700&display=swap');
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
body {
    margin: 0;
    font-family: "Poppins", 'Ubuntu', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
}

h1,
h2,
h3 {
    font-family: "Poppins", 'Lora', serif;
    font-weight: 400;
    color: #687181;
    margin-top: 0;
}

h1 {
    font-size: 2rem;
    margin: 0;
}

a {
    color: #1792d2;
}

a:hover,
a:focus {
    color: #143774;
}

strong {
    font-weight: 700;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    color: #1792d2;
    letter-spacing: 0.05em;
    font-family: "Poppins", 'Ubuntu Bold', sans-serif;
}

.article-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.article-read-more,
.article-info {
    font-size: .875rem;
}

.article-read-more {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.article-read-more:hover,
.article-read-more:focus {
    color: #526585;
    text-decoration: underline;
}

.article-info {
    margin: 2em 0;
    color: grey;
}

.container-flex {
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}


/* .col-lg-8 {
    flex: 0 0 68%;
    Adjust the width of the main content
}

.col-lg-4 {
    flex: 0 0 30%;
    Adjust the width of the sidebar
} */

img {
    max-width: 100%;
    display: block;
}

main {
    max-width: 75%;
}

.article-body {
    width: 100%;
    text-align: justify;
    color: white;
}

.sidebar {
    max-width: 100%;
    color: grey;
}

.widget-title {
    margin-bottom: 10px;
    margin-top: 10px;
}

.widget-body {
    margin-top: 10px;
}

.widget-recent-post-title {
    margin-bottom: 15px;
    margin-top: 15px;
}

@media (max-width:1050px) {
    .container-flex {
        flex-direction: column;
    }
    .site-title,
    .subtitle {
        width: 100%;
    }
    main {
        max-width: 100%;
    }
    .sidebar {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }
    nav li {
        margin: 0.5em 0;
    }
}


/* articles */

.article-featured {
    border-bottom: #707070 1px solid;
    padding-bottom: 2em;
    margin-bottom: 2em;
    width: 100%;
}

.article-recent {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}

.article-recent-main {
    order: 2;
}

.article-recent-secondary {
    order: 1;
}

@media (min-width: 675px) {
    .article-recent {
        flex-direction: row;
        justify-content: space-between;
    }
    .article-recent-main {
        width: 68%;
    }
    .article-recent-secondary {
        width: 30%;
    }
}