.post-hero {
    display: flex;
    margin-bottom: 30px;
}
.post-hero .post-hero__titles {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-hero .post-hero__titles h1 {
    color: var(--blue-md);
    position: relative;
}
.post-hero .post-hero__titles h1 .triangle {
    position: absolute;
    left: -4rem;
    color: var(--blue-dk);
}
.post-hero .post-hero__image--container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-hero .post-hero__image--wrapper {
    position: relative;
    padding: 30px;
    background: var(--blue-gradient);
    border-radius: 20px;
    box-shadow: 3px 3px 10px #000000;
    overflow: hidden;
}
.post-hero .post-hero__image {
    position: relative;
    height: 500px;
    aspect-ratio: 1/1;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 3px 3px 8px #00000029;
}

/*new*/
.blog-hero {
    max-width: 98%;
    position: relative;
    margin-bottom: 55px;
    padding: 45px;
    background: linear-gradient(214deg, #0089d0 0%, #00aeef 100%) 0% 0%;
    border-radius: 20px;
    overflow: hidden;
}
.blog-hero__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

/*text*/
.blog-hero__titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.blog-hero__titles .blog-hero__title {
    max-width: 800px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 1px 1px 2px #00000066;
    display: flex;
    gap: 10px;
}
.blog-hero__titles .blog-hero__title path {
    fill: var(--purple-dk);
}
.blog-hero__titles .blog-hero__date {
    margin-top: 30px;
    margin-left: 70px;
    font-size: 40px;
    color: var(--white);
    text-shadow: 1px 1px 2px #00000066;
}

.blog_hero__hr {
    content: "";
    width: 80%;
    height: 6px;
    margin: 25px 0 15px;
    margin-left: 70px;
    border-radius: 4px;
    background: var(--purple-t);
}

.blog_hero__breadcrumbs {
    margin-top: 10px;
    margin-left: 70px;
    line-height: 1.2;
}
.blog_hero__breadcrumbs .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.blog_hero__breadcrumbs .breadcrumbs-container a {
    font-size: 28px;
    font-weight: 500;
    color: var(--purple-t);
}
.blog_hero__breadcrumbs .breadcrumbs-container .seperator {
    color: var(--white);
    line-height: 40px;
}
.blog_hero__breadcrumbs .last-breadcrumb {
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
}

/*image*/
.blog-hero__image img {
    max-height: 550px;
    height: auto;
    width: auto;
    max-width: 800px;
    border-radius: 20px;
}

@media (max-width: 1400px) {
    .blog-hero__image img {
        max-width: 600px;
    }

    .blog-hero__titles .blog-hero__title {
        font-size: 45px;
    }
    .blog-hero__titles .blog-hero__date {
        margin-left: 60px;
        font-size: 30px;
    }
    .blog_hero__hr {
        margin-left: 60px;
    }
    .blog_hero__breadcrumbs {
        margin-left: 60px;
    }
    .blog_hero__breadcrumbs .breadcrumbs-container a {
        font-size: 20px;
    }
    .blog_hero__breadcrumbs .breadcrumbs-container .seperator {
        line-height: 25px;
    }
    .blog_hero__breadcrumbs .last-breadcrumb {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .blog-hero__image img {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .blog-hero {
        max-width: 95%;
        padding: 30px 25px;
    }
    .blog-hero__wrapper {
        flex-direction: column-reverse;
    }

    /*image*/
    .blog-hero__image img {
        max-width: unset;
        max-height: unset;
        width: 100%;
        height: auto;
    }

    /*text*/
    .blog-hero__titles .blog-hero__title {
        flex-direction: column;
        font-size: 35px;
    }
    .blog-hero__titles .blog-hero__date {
        margin-left: 10px;
        font-size: 25px;
    }
    .blog_hero__hr {
        margin-left: 10px;
    }
    .blog_hero__breadcrumbs {
        margin-left: 10px;
    }
}
