.blogPageTitleArea {
    display: flex;
    justify-content: center;
    padding: 90px 0px;
}

.blogPageTitle {
    position: relative;
    font-family: Oswald;
    font-size: 36px;
    font-weight: 600;
    line-height: 53px;
    letter-spacing: 0.01em;
    text-align: center;
    width: max-content;
}

    .blogPageTitle::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 4px;
        background: #cd1e1e;
        border-radius: 48% 52% 10% 90% / 24% 76% 24% 76%;
        transform: skew(45deg, 357deg);
    }

.blogCard:hover .blogCardOverlay {
    opacity: 1;
    transition: .4s;
}

.blogCard {
    position: relative;
}

.blogCardTextArea {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
    padding-bottom: 24px;
    padding-right: 90px;
}

    .blogCardTextArea .searchIcon {
        opacity: 0;
        transition: .4s;
        position: absolute;
        bottom: 24px;
        right: 24px;
        font-size: 30px;
        width: 40px;
        height: 40px;
        color: #fff;
    }

.blogCard:hover .blogCardTextArea .searchIcon {
    opacity: 1;
    transition: .4s;
}

.blogCard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000bd, #00000063, transparent);
    z-index: 0;
}

.blogCardDate {
    font-family: Oswald;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #E9E9E9;
}

.blogCardTitle {
    font-size: 21px;
    font-weight: 600;
    line-height: 29px;
    color: #E9E9E9;
}

.blogContainer {
    max-width: 90%;
    padding-bottom: 90px;
}

.blogCardOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #cd1e1e9c, #cd1e1e4a, #cd1e1e0d, #cd1e1e0a, transparent);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.blogCardImage, .blogCardImage img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

    .blogCardImage.large-image, .blogCardImage.large-image img {
        aspect-ratio: 4/1.94;
        object-fit: cover;
    }

    @media only screen and (max-width: 1199px)
    {
        .blogCardImage.large-image, .blogCardImage.large-image img {
            aspect-ratio: 1/1;
            object-fit: cover;
        }
    }