.blogIntro {
    height: 75vh;
    background-color: #DCEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}


.introImage {
    width: 50%;
    height: 100%;
}

.introText h1 {
    color: #006f72;
    font-family: 'Times New Roman';
    font-weight: 400;
    font-size: 4em;
    margin-bottom: 0.3em;
    width: 80%;
}

.introText p {
    color: #006f72;
    font-family: 'Montserrat Regular';
    font-weight: 400;
    font-size: 1.8em;
    line-height: 120%;
    width: 50%;
}

.introText {
    width: 50%;
    display: flex;
    flex-direction: column;
    transform: translateX(13%);
}

.posts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 7em;
    padding: 0 4%;
}

.postImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.35s ease-in-out;
    border-radius: 10px;
}

.postImage {
    height: 30vh;
    padding: 0 6%;
    overflow: clip;
}

.blogPagination {
    margin: 4em 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.blogPagination :is(span,a) {
    font-family: 'Montserrat';
    margin: 0em 0.5em;
}

.blogPagination :is(span,a) {
    font-family: 'Montserrat';
    margin: 0em 0.5em;
    border: 1px solid #006F72;
    padding: 0em 0.6em;
    transition: all 0.35s ease-in-out;
    color: #006f72;
}


.blogPagination :is(span,a):hover {
    background-color: #006F72;
    color: white;
}


span.current {
    background-color: #006F72;
    color: white;
}

.post {
    display: flex;
    flex-direction: column;
    width: 24%;
    margin: 0 0.8em;
    transition: all 0.25s ease-in-out;
    padding: 0.5%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    margin-bottom: 1.1em;
    min-height: 51vh;
}


.post h2 {
    font-family: 'Montserrat';
    margin-top: 0.4em;
    color: #006F72;
    font-size: 1.5em;
    line-height: 110%;
    padding-left: 6%;
}

.post p {
    font-family: 'Montserrat Light';
    color: #898989;
    padding: 0 6%;
}

.post:hover .postImage img {
    transform: scale(1.1);
}


@media only screen and (max-width:1600px){
    html .post {
        width: 31%;
    }
    html .introText h1 {
        font-size: 3.2em;
    }
    html .introText p {
        font-size: 1.2em;
    }
    html .post h2 {
        font-size: 1.3em;
    }
    html .post p {
        font-size: 0.9em;
    }
}

@media only screen and (max-width:1060px){
    html .post {
        width: 40%;
    }
}

@media only screen and (max-width:800px){
    html .post {
        width: 46%;
    }
    .blogIntro {
        flex-direction: column-reverse;
    }
    .introImage {
        width: 100%;
        height: 57%;
    }
    .blogIntro {
        flex-direction: column-reverse;
        justify-content: flex-end;
    }
    .introText {
        width: 100%;
        transform: unset;
        height: 100%;
        justify-content: center;
    }
    html .introText h1 {
        text-align: center;
        width: 100%;
        font-size: 3.2em;
    }
    html .introText p {
        width: 100%;
        text-align: center;
        padding: 0 30%;
    }
}

@media only screen and (max-width:600px){
    .posts {
        padding: 0 1%;
    }
    html .introText h1 {
        font-size: 2.2em;
    }
    html .introText p {
        width: 100%;
        text-align: center;
        padding: 0 8%;
        font-size: 1em;
    }
    html .introText {
        height: 50%;
    }
    html .post {
        width: 92%;
    }
}