.blogEntryPage {
    padding: 60px 0;
}

.blogEntryPage {
    padding: 60px 0;
}

.blogEntryPageRow1 {
    display: flex;
    flex-direction: row;
    height: 75vh;
    margin-bottom: 13vh;
}

.blogR1MainText {
    width: 55%;
    height: 100%;
    padding-left: 11%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blogR1MainText h3 {
    margin: 0;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 1.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.mainTextTitle {
    position: relative;
    width: 43%;
}

.blogR1MainText h2 {
    margin: 0;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 2.5em;
    width: 100%;
    text-transform: uppercase;
}

.mainTextTitle::after {
    content: '';
    width: 100%;
    height: 2.7em;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(60, 190, 177);
    z-index: -1;
    transform: translate(30%, -110%) scaleX(2.5);
    transform-origin: right;
}

.mainTextExcerpt p {
    margin: 0;
    margin-bottom: 17px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 0.9em;
    line-height: 120%;
}

.mainTextExcerpt {
    transform: translateY(-25px);
    width: 80%;
}

.blogR1Pics {
    display: flex;
    flex-direction: row;
    width: 45%;
}

.blogR1Pics img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blogR1FirstPic {
    width: 60%;
    height: 100%;
    margin-right: 20px;
}

.blogR1SecondPics {
    width: 40%;
    height: 100%;
}

.blogR1SecondPic {
    width: 100%;
    height: calc(45% - 10px);
    margin-bottom: 20px;
}

.blogR1Quote {
    background-color: rgb(60, 190, 177);
    width: 100%;
    height: calc(55% - 10px);
    padding: 20px 35px;
    box-sizing: border-box;
}

.blogR1Quote p {
    margin: 0;
    font-family: 'Inter';
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 1.2em;
    line-height: 175%;
}

.blogR1QuoteImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.blogR1QuoteImg {
    width: 20px;
    height: 20px;
    margin-bottom: 20px;
}

.mainTextTitle h2 .lastLine {
    color: white;
}

@media only screen and (max-width: 1600px) {
    .blogR1Quote p {
        font-size: 0.9em;
    }
    .mainTextTitle {
        width: 55%;
    }
}

@media only screen and (max-width: 1200px) {
    .blogR1MainText {
        padding-left: 6%;
    }
    .mainTextTitle {
        width: 63%;
    }
    .blogR1FirstPic {
        margin-right: 10px;
    }
    .blogR1SecondPic {
        height: calc(45% - 5px);
        margin-bottom: 10px;
    }
    .blogR1Quote {
        height: calc(55% - 5px);
        padding: 10px 15px;
    }
}

@media only screen and (max-width: 1000px) {
    .blogEntryPageRow1 {
        flex-direction: column;
        height: auto;
    }
    .blogR1MainText {
        width: 100%;
        height: auto;
        padding-left: 5%;
        margin-bottom: 50px;
    }
    .blogR1Pics {
        width: 100%;
        height: 60vh;
    }
    .mainTextTitle {
        width: 50%;
        margin-bottom: 40px;
    }
    .mainTextTitle::after {
        transform: translate(15%, -110%) scaleX(2.5);
    }
    .mainTextExcerpt {
        transform: unset;
        width: 80%;
    }
}

@media only screen and (max-width: 600px) {
    .blogR1MainText h2 {
        font-size: 2.2em;
    }
    .blogR1MainText h3 {
        font-size: 1em;
    }
    .mainTextExcerpt {
        width: 90%;
    }
    .mainTextTitle {
        width: 65%;
    }
    .mainTextTitle::after {
        height: 40px;
    }
    .blogR1Quote p {
        font-size: 0.8em;
    }
    .blogEntryPageRow1 {
        margin-bottom: 9vh;
    }
}

@media only screen and (max-width: 450px) {
    .mainTextTitle {
        width: 70%;
    }
    .blogR1MainText h2 {
        font-size: 1.9em;
    }
    .mainTextTitle::after {
        height: 34px;
    }
    .blogR1Pics {
        height: 45vh;
    }
    .blogR1QuoteImg {
        width: 15px;
        height: 15px;
        margin-bottom: 10px;
    }
    .blogR1Quote p {
        font-size: 0.65em;
    }
}