.BlogCard
{
    background: #fff;
}

.blackHeader
{
    color: rgb(85, 85, 85);
}

.BlogsContainer
{
    padding: 2rem;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
}

.blogArticleHighlight
{
    max-width: 25rem;
    padding: 1.5rem;
    background: rgb(247, 245, 245);
}

.Article
{
    text-decoration: none;
    background: #555;
}

.articleCover
{
    max-height: 14rem;
    max-width: 24rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.articleCover > img
{
    max-width: 24rem;
    transition: .2s ease-out;
}

.articleTitle
{
    font-weight: 800;
    font-size: 2rem;
    color: rgb(44, 44, 44);
    margin-bottom: .6rem;
}

.articleTitle > span
{
    opacity: .6;
}

.articleTitle:hover
{
    color: var(--khanodoGold);
}

.articleHightlightPara
{
    font-size: .95rem;
    font-weight: 500;
    color: rgb(83, 83, 83);
    line-height: 1.4rem;
}

.publishDate
{
    font-size: .9rem;
    font-weight: 400;
    color: #555;
    margin-bottom: -1.5rem;
    opacity: 0;
    transition: .2s ease-in;
}

.Article:hover .publishDate
{
    margin-bottom: 0;
    opacity: 1;
}

.Article:hover .articleCover > img
{
    transform: scale(110%);
    filter: blur(2px) brightness(200%);
}

/* Main Article Page */
.blogTitleCover
{
    padding: 4rem;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    background-image: linear-gradient(45deg,#c07d50a6,#fd9957b6),url(./img/Products_background.jpg);
    background-size: cover;
    color: #110b07a6;
}

.mainTitle
{
    font-size: clamp(4vw, .80rem, 2vw);
    font-weight: 900;
    text-align: center;
}

.published
{
    font-weight: 400;
}

.blogContent
{
    padding: 4rem;
    margin: 0 auto;
    width: 100vw;
    color: rgb(53, 53, 53);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogPara
{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7rem;
    margin-bottom: 2rem;
    max-width: 60rem;
}

.heading
{
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
}

.coverImage
{
    height: 20rem;
    margin: 2rem auto;
}

.subSection
{
    display: flex;
    flex-direction: column;
}

.blogPara > a
{
    font-weight: 700;
}

.blog-topic-cover
{
    width: 100vw;
    max-height: 10rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-topic-cover > img
{
    width: 100vw;
}

@media screen and (max-width:600px) 
{
    .blogArticleHighlight
    {
        min-width: 100%;
        text-align: center;
        
    }

    .articleCover
    {
        margin: 1rem auto;
    }

    .published
    {
        font-size: 1.5rem;
        margin-top: .5rem;
    }
}