:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */

  --primary: #172A3A;
  --secondary: #324554;
  --background-color: #718095;
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: InterVariable, sans-serif; 
    font-weight: 600;
    margin-bottom: 0;
}

a {
    color: var(--secondary);
}

.banner {
    background-color: var(--primary);
    border-radius: 8px 8px 0 0;
    color: #FFFFFF;
    padding: 3rem 0;
}

.banner-title{
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}

.big-text{
    font-size: calc(1.325rem + .9vw);
    font-weight: 500;
}

body {
    margin: 1rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background-color: var(--background-color);
}

.body-container {
    max-width: 1200px;
}

.content-body{
    background-color: #FFFFFF;
    min-height: 100vh;
}

.footer {
    border-radius: 0 0 8px 8px;
    width: 100%;
    background-color: var(--primary);
    color: #FFFFFF;
    min-height: 50px;
    margin: 0;
}

img {
    width: 100%;
}

h2 + p img, img + p h3{
    padding-top: 16px;
}

.homepage-section-title{
    border-radius: 8px 8px 0 0;
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 12px 20px;
}

.homepage-section-body {
    padding: 1.2rem;
    border: 1px solid #000000;
}

li {
    font-size: 1em;
    line-height: 1.5em;
    margin-top: 0.2em;
}

.more-posts-container{
    border: solid 1px #000000;
    border-radius: 8px;
    padding: 0;
}

.navbar {
    background-color: var(--secondary) !important;
    margin: 0;
}

.navbar-brand{
    font-size: 1.6em;
    font-weight: 600;
    color: #FFFFFF;
}

.navbar-brand:hover{
    color: #FFFFFF;
}

.nav-item {
    list-style: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-toggler{
    background-color: #FFFFFF;
}

.nav-link{
    color: #FFFFFF;
}

.nav-link:hover{
    color: #FFFFFF;
    text-decoration: underline;
}

.nav-link:active {
    color: #FFFFFF;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #FFFFFF;
}

.note-link {
    font-size: 1.4rem;
    color: #000;
    text-decoration: none;
}

.note-link:hover{
    text-decoration: underline;
}

.paginator-text{
    padding: 12px 24px;
    text-align: center;
    margin: auto;
}

p + h2, p + h3{
    padding-top: 24px;
}

.post-container{
    max-width: 992px;
}

.latet

.post-link{
    color: var(--primary);
    text-decoration: none;
    font-size: 2em;
}

.post-link:hover{
    text-decoration: underline;
}

.post-thumbnail-container {
    min-width: 200px;
    min-height: 200px;
}

.post-thumbnail{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.post-title{
    color: var(--primary);
    font-size: 1.2rem;
}

.post-subtitle{
    font-size: 2.4em;
    font-weight: 200;
}

.primary-button {
    color: #FFFFFF;
    background-color: var(--primary);
    padding: 12px 24px;
    margin: 12px 0;
    border-radius: 4px;
    text-decoration: none;
}

.primary-button:hover{
    background-color: #324554;
    color: #FFFFFF;
}

p {
    font-size: 1em;
    line-height: 1.5em;
}

.read-more {
    display: inline;
    color: #000000;
    text-decoration: none;
}

.read-more:hover{
    text-decoration: underline;
}

.related-post-title{
    font-weight: 500;
    font-size: 1.2em;
}


.title {
    font-family: InterVariable, sans-serif;
    font-size: 2.4em;
    font-weight: 600;
    line-height: normal;
}

@media screen and (max-width: 768px) {

    .post-thumbnail-container{
        width: 100%;
        height: 100%;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 600px){
    
    .bio{
        padding: 10rem 0;
    }

    .post-thumbnail-container{
        width: 100%;
        height: 100%;
        margin-bottom: 12px;
    }

    .post-thumbnail{
        width: 100%;
    }

    .row{
        --bs-gutter-x: 0;
    }

}