.blogPage {
    padding: 50px 10%;
}

.blogPageTitle h2 {
    margin: 0;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 4.3em;
    line-height: 100%;
}

.blogPageTitle {
    position: relative;
    width: fit-content;
    margin-bottom: 45px;
}

.blogPageTitleSvg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blogPageTitleSvg {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120%;
    transform: translate(-50%, -80%);
    z-index: -1;
}

.blogPageText p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 0.9em;
    line-height: 120%;
}

.blogPageText {
    width: 30%;
    margin-bottom: 40px;
}

.blogFeatured {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    margin-bottom: 75px;
    filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 0px 20px);
}

.blogFeaturedSide {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    height: 560px;
    background-color: white;
}

.blogFeaturedSideEntry {
    width: 100%;
    height: calc(50% - 10px);
    background-color: rgb(60, 189, 176);
}

.blogFeaturedSideEntry > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

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

.blogFeaturedEntryImg {
    width: 320px;
    height: 100%;
}

.blogFeaturedSideEntry:first-of-type {
    margin-bottom: 20px;
}

.blogFeaturedEntryText {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blogFeatured::after {
    position: absolute;
    content: '';
    width: 150%;
    height: 90%;
    background-color: rgb(60, 189, 176);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blogContent {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blogContentEntry {
    position: relative;
    width: calc(33.3% - 40px);
    height: 560px;
    filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 0px 20px);
    margin-bottom: 75px;
    margin-right: 60px;
}

.blogContent .blogContentEntry:nth-child(3n) {
    margin-right: 0;
}

.blogContentEntry.first {
    width: 50%;
    filter: unset;
    margin: unset;
}

.blogContentEntry > a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.lastNewsEntry {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translate(-100%, -145%);
}

.lastNewsEntry h3 {
    margin: 0;
    font-family: 'Inter';
    color: black;
    text-wrap: nowrap;
    white-space: nowrap;
    font-weight: 800;
    font-size: 2.5em;
}

.mainImgEntry {
    width: 100%;
    height: 100%;
}

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

.mainTextEntry {
    position: absolute;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    top: 100%;
    left: 0px;
    transform: translateY(-100%);
    box-sizing: border-box;
    align-items: flex-start;
    background-image: url("data:image/svg+xml,%3Csvg data-name='Capa 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 445.94 364.27'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='222.97' x2='222.97' y2='364.27' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath style='fill:url(%23a)' d='M0 0h445.94v364.27H0z'/%3E%3C/svg%3E");
    padding: 0px 6% 5%;
    transition: 0.2s ease-in-out;
}

.blogContentEntry.first .mainTextEntry {
    padding: 0px 3% 2%;
}

.mainTextEntry h2, .blogFeaturedEntryText h2 {
    font-family: 'Inter';
    color: white;
    font-size: 1.7em;
    font-weight: 600;
    margin: unset;
}

.blogSepparator {
    width: 40%;
    height: 3px;
    background: white;
    margin: 20px 0px;
}

.mainTextEntry p, .blogFeaturedEntryText p {
    font-family: 'Inter';
    color: white;
    font-style: italic;
    font-weight: 300;
    font-size: 1.1em;
    margin: unset;
}

.mainTextEntry > p {
    margin-bottom: 25px;
}

.blogHiddenExcerpt {
    height: 0px;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blogHiddenExcerpt p {
    font-size: 1em;
    text-align: left;
    overflow: hidden;
}

.blogContentEntry:hover .blogHiddenExcerpt {
    height: 60%;
}

@media only screen and (max-width: 1600px) {
    .mainTextEntry {
        height: 40%;
    }
}

@media only screen and (max-width: 1200px) {
    .blogPage {
        padding: 30px 5%;
    }
    .blogPageText {
        width: 50%;
    }
    .blogContentEntry {
        width: calc(33% - 20px);
        margin-right: 30px;
    }
    .blogFeaturedEntryText h2 {
        font-size: 1.4em;
    }
    .blogFeaturedEntryText p {
        font-size: 1em;
    }
}

@media only screen and (max-width: 1000px) {
    .blogContentEntry {
        width: calc(50% - 30px);
    }
    .lastNewsEntry h3 {
        font-size: 2em;
    }
    .blogFeaturedSide {
        padding: 25px;
    }
    .blogFeaturedEntryText {
        padding: 0 10px;
    }
    .blogFeaturedEntryText h2 {
        font-size: 1.1em;
    }
    .blogFeaturedEntryText .blogSepparator {
        height: 2px;
        margin: 15px 0;
    }
    .blogFeaturedEntryText p {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 800px) {
    .blogFeatured {
        flex-direction: column;
    }
    .blogContentEntry {
        width: 100%;
        height: auto;
        margin: 0;
        margin-bottom: 7vh;
    }
    .blogContentEntry.first {
        width: 100%;
    }
    .blogFeaturedSide {
        width: 100%;
    }
    .blogFeaturedEntryText {
        padding: 0 20px;
    }
    .blogPageText {
        width: 70%;
        margin-bottom: 80px;
    }
    .mainImgEntry {
        height: 400px;
    }
    .mainTextEntry {
        height: 70%;
        padding-right: 150px;
    }
    .blogContentEntry.first .mainTextEntry {
        padding: 0px 6% 5%;
        padding-right: 150px;
    }
}

@media only screen and (max-width: 600px) {
    .blogPageTitle h2 {
        font-size: 3em;
    }
    .mainTextEntry {
        padding-right: 100px;
    }
    .blogContentEntry.first .mainTextEntry {
        padding: 0px 6% 5%;
        padding-right: 100px;
    }
    .blogPageText {
        width: 90%;
        margin-bottom: 90px;
    }
    .lastNewsEntry h3 {
        font-size: 1.8em;
    }
}

@media only screen and (max-width: 450px) {
    .mainImgEntry {
        height: 300px;
    }
    .mainTextEntry {
        height: 75%;
        padding-right: 50px;
    }
    .blogContentEntry.first .mainTextEntry {
        padding: 0px 6% 5%;
        padding-right: 50px;
    }
    .mainTextEntry h2 {
        font-size: 1.4em;
    }
    .mainTextEntry p {
        font-size: 0.9em;
    }
    .blogFeaturedSide {
        padding: 15px;
    }
    .blogFeaturedEntryText {
        padding: 0px 15px;
    }
}