@media screen and (min-width: 1280px ) {  
    .post-image-container {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .post-body {
        font-size: var(--font-size-small);
        font-weight: 300;
        color: var(--color_black);
        text-align: justify;
    }

    .post-body h1 {
        font-size: var(--font-size-mid);
        font-weight: 500;
        text-align: left;
    }

    .post-body h2 {
        font-size: var(--font-size-mid);
        font-family: inherit !important;
        font-weight: 300;
        text-align: left;
    }

    .post-body h3 {
        font-size: var(--font-size-small);
        font-family: inherit !important;
        font-weight: 500;
        text-align: left;
    }

    .post-body a {
        text-decoration: none;
    }

    .post-body a:hover {
        color: var(--color_dark);
        text-decoration: none;
    }

    .section-blog {
        padding-top: 40px;
        padding-bottom: 60px;
    }   

    .blog-box {
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .blog-box:hover {
        text-decoration: none;
    }   

    .blog-box:hover .blog-image {
        transition: all 0.3s ease;
        filter: brightness(0.75); 
    }

    .blog-image-container {
        position: relative;
        height: 300px;
    }

    .blog-image {
        transition: all 0.3s ease;
        padding-right: 30px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-image-container .blog-date {
        position: absolute;
        font-size: var(--font-size-xsmall);
        font-weight: 500;
        background-color: var(--color_accent);
        color: var(--color_white);
        top: 20px;
        right: -50px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .blog-content .blog-line {
        position: absolute;
        background-color: var(--color_accent);
        color: var(--color_accent);
        height: 2px;
        width: 310px;
        bottom: 30px;
        left: -30px;
    }

    .blog-content {
        position: relative;
        padding-left: 0;
        padding-top: 70px;
    }

    .section-blog .blog-title {
        font-size: var(--font-size-small);
        font-weight: 500;
        color: var(--color_black);
        margin-top: 10px;
    }

    .section-blog .blog-subtitle {
        font-size: var(--font-size-xsmall);
        font-weight: 300;
        text-align: justify;
        color: var(--color_black);
        margin-top: 10px;
    }
}



/* Mobile */
@media screen and (max-width: 1280px ) {  

    .post-image-container {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .post-body {
        font-size: var(--font-size-small);
        font-weight: 300;
        color: var(--color_black);
        text-align: justify;
    }

    .post-body h1 {
        font-size: var(--font-size-mid);
        font-weight: 500;
        text-align: left;
    }

    .post-body h2 {
        font-size: var(--font-size-mid);
        font-family: inherit !important;
        font-weight: 300;
        text-align: left;
    }

    .post-body h3 {
        font-size: var(--font-size-small);
        font-family: inherit !important;
        font-weight: 500;
        text-align: left;
    }

    .post-body a {
        text-decoration: none;
    }

    .post-body a:hover {
        color: var(--color_dark);
        text-decoration: none;
    }

    .section-blog {
        padding-top: 80px;
        padding-bottom: 80px;
    }   

    .blog-box {
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .blog-box:hover {
        text-decoration: none;
    }   

    .blog-box:hover .blog-image {
        transition: all 0.3s ease;
        filter: brightness(0.75); 
    }

    .blog-image-container {
        position: relative;
        height: 300px;
    }

    .blog-image {
        transition: all 0.3s ease;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-image-container .blog-date {
        position: absolute;
        font-size: var(--font-size-xsmall);
        font-weight: 500;
        background-color: var(--color_accent);
        color: var(--color_white);
        top: 20px;
        right: 0;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .blog-content .blog-line {
        display: none;
    }

    .blog-content {
        position: relative;
        padding-left: 0;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .section-blog .blog-title {
        font-size: var(--font-size-small);
        font-weight: 500;
        color: var(--color_black);
        margin-top: 10px;
    }

    .section-blog .blog-subtitle {
        font-size: var(--font-size-xsmall);
        font-weight: 300;
        text-align: justify;
        color: var(--color_black);
        margin-top: 10px;
    }

}