.BlogDescription
{
    padding: 70px 0px 0px 0px;
    text-align: center;
    line-height: 1.5;
}

.BlogsList
{
    margin: 50px 0px 60px 0px;
    width: 100%;
    height: fit-content;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 24px;
}

.BlogElement
{
    margin: 0px auto 0px auto;
    display: block;
    width: 38vw;
    height: 96pt;
    background-color: var(--SiteColorOne);
    border-style: solid;
    border-width: 4px;
    border-color: lightgray;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.BlogElementTextHolder
{
    padding: 24px 22px;
    width: 72%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.BlogElementTextHolder h2
{
    color: white;
    font-family: var(--PrimaryFont);
    font-size: 2.6rem;
    text-align: left;
    line-height: 1.2;
}

.BlogElement:hover h2
{
    color: var(--SiteColorTwo);
}

.BlogElement:hover
{
    border-color: var(--SiteColorTwo);
}

.BlogElementTextHolder h3
{
    color: rgba(255, 255, 255, 0.623);
    font-size: 1.6rem;
    text-align: left;
    line-height: 0.8;
}

.BlogElement img
{
    width: 28%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.247);
}

/* ----------------------------------- DIFFERENT SCREEN SIZES ----------------------------------- */

@media only screen and (max-width: 1200px)
{
    .BlogElement
    {
        width: 70vw;
    }
}

@media only screen and (max-width: 992px)
{
    .BlogElement
    {
        width: 80vw;
    }
}

@media only screen and (max-width: 768px)
{
    .BlogElement
    {
        width: 80vw;
    }

    .BlogDescription
    {
        font-size: 1.8rem;
        line-height: 1.6;
    }
}

@media only screen and (max-width: 600px)
{
    .BlogElement
    {
        width: 88vw;
    }

    .BlogDescription
    {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}