.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: -8px;
        left: 50%;
        width: 100px;
        height: 4px;
        background: #cd1e1e;
        border-radius: 48% 52% 10% 90% / 24% 76% 24% 76%;
        transform: translate(-50%, -5px) rotate(177deg) skew(45deg, 357deg) !important;
    }


.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;
    }


.blogDetailArea {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-right: 24px;
}

.blogDetailTextArea .blogCreationTime {
    display: flex;
    align-items: center;
    column-gap: 8px;
}


.blogDetailTextArea {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.blogTextArea {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    word-break: break-word;
}

.blogDescription {
    font-family: Roboto;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    color: #4B4B4B;
}

    .blogDescription ul {
        margin: 24px 0;
    }

        .blogDescription ul li {
            font-family: Roboto;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            color: #4B4B4B;
        }

.blogTitle {
    font-family: Oswald;
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    color: #262626;
}



.latestBlogCard .blogCardTextArea {
    padding-right: 24px;
}

.latestBlogCardsRow
{
    justify-content: end;
    row-gap: 42px;
}

.blogCarousel
{
    display: none;
}

.blogDetailArea .blogImage, .blogDetailArea .blogImage img {
    aspect-ratio: 2/1;
    object-fit: cover;
}

@media only screen and (max-width: 1199px) {
    .blogCardImage.large-image, .blogCardImage.large-image img {
            aspect-ratio: 1/1;
            object-fit: cover;
        }
    }


@media only screen and (min-width: 992px)
{
    .latestBlogCard .blogCardImage, .latestBlogCard .blogCardImage img {
        aspect-ratio: 2/1.25!important;
    }
}

@media only screen and (max-width: 991px)
{
    .latestBlogCardsRow
    {
        display: none;
    }

    .blogCarousel
    {
        display: block;
    }

    .blogPageTitleArea {
        padding: 48px 0px;
    }

    .blogPageTitle {
        font-size: 28px;
        font-weight: 600;
        line-height: 40px;
    }

        .blogPageTitle::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0px;
            width: 60px;
            height: 4px;
            background: #cd1e1e;
            border-radius: 48% 52% 10% 90% / 24% 76% 24% 76%;
            transform: skew(45deg, 357deg);
        }

    .blogDetailArea {
        padding-right: 0;
    }

    .latestBlogCard .blogCardImage, .latestBlogCard .blogCardImage img {
        aspect-ratio: 1.25/1.75 !important;
    }
}

@media only screen and (max-width: 575pc)
{
    .blogTextArea {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }

    .blogTitle {
        font-size: 22px;
        font-weight: 600;
        line-height: 28px;
    }

    .blogDescription {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }
}