.exitoFirstRow {
    padding: 0 8.8%;
    margin: 8vh 0;
}

.exitoR1Title {
    position: relative;
    width: fit-content;
}

.exitoFirstRow h2 {
    margin: 0;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 4.2em;
    line-height: 100%;
    margin-bottom: 6vh;
}

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

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

.exitoFirstRow p {
    margin: 0;
    font-family: 'Inter';
    width: 500px;
    font-weight: 600;
    font-size: 1em;
    line-height: 120%;
}

.exitoSecondRow {
    padding: 0 8.8%;
    margin-bottom: 8vh;
}

.exitoR2Block {
    display: flex;
    flex-direction: row;
    margin-bottom: 3vh;
    height: 50vh;
}

.exitoR2Block:last-of-type {
    margin-bottom: 0;
}

.first .blogContentEntry:first-of-type {
    width: calc(60% - 10px);
    margin-right: 20px;
}

.first .blogContentEntry:last-of-type {
    width: calc(40% - 10px);
}

.second .blogContentEntry:first-of-type {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.second .blogContentEntry:last-of-type {
    width: calc(50% - 10px);
}

.third .blogContentEntry:first-of-type {
    width: calc(40% - 10px);
    margin-right: 20px;
}

.third .blogContentEntry:last-of-type {
    width: calc(60% - 10px);
}

.blogContentEntry > a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

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

.mainImgEntry {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.mainTextEntry {
    position: relative;
    z-index: 1;
    text-align: center;
    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");
    width: 100%;
    height: auto;
    padding: 0px 6% 5%;
    box-sizing: border-box;
    transition: 0.2s ease-in-out;
}

.mainTextEntry h2 {
    font-family: 'Inter';
    color: white;
    font-size: 1.7em;
    font-weight: 600;
    margin: unset;
    filter: drop-shadow(0px 4px 3px black);
}

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

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

}

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

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

.blogContentEntry:hover .blogHiddenExcerpt {
    max-height: 100px;
}

@media only screen and (max-width: 1000px) {
    .exitoFirstRow, .exitoSecondRow {
        padding: 0 5%;
    }
    .mainTextEntry {
        padding: 0px 6% 2%;
    }
}

@media only screen and (max-width: 800px) {
    .exitoR2Block {
        height: 80vh;
        flex-wrap: wrap;
    }
    .exitoSecondRow .exitoR2Block .blogContentEntry {
        width: 100%;
    }
    .exitoR2Block .blogContentEntry:first-of-type {
        margin-right: unset;
        margin-bottom: 20px;
    }
    .mainTextEntry {
        padding: 0px 6% 5%;
    }
}

@media only screen and (max-width: 600px) {
    .exitoFirstRow h2 {
        font-size: 3em;
    }
    .exitoFirstRow p {
        width: 400px;
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 450px) {
    .exitoFirstRow h2 {
        font-size: 2.4em;
    }
    .exitoFirstRow p {
        width: 300px;
        font-size: 0.9em;
    }
    .mainTextEntry h2 {
        font-size: 1.4em;
    }
    .mainTextEntry p {
        font-size: 0.9em;
    }
}