﻿.article-wrapper {
    border: 1px solid rgba(241, 241, 241, 1);
    border-radius: 8px;
    box-shadow: 0 4px 10px 0 rgba(204, 204, 204, 0.3);
}

.left-wrapper {
    width: 50%;
}

.article-image {
    aspect-ratio: 16 / 9;
    border-radius: 8px 0 0 8px;
    height: 100%;
    object-fit: cover;
}

.right-wrapper {
    width: 50%;
    margin: auto;
    padding: 10px 30px;
    word-break: break-word;
}

.header-text {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 28px;
    line-height: 37.6px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 1);
}

.subheader-text {
    font-family: 'Poppins';
    font-size: 20px;
    line-height: 26.4px;
    color: rgba(0, 0, 0, 1);
}

.publishedDate-text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 26.4px;
    color: rgba(184, 184, 184, 1);
}

.SmallScreenContent {
    display: none;
}

@media only screen and (max-width: 850px){
    .SmallScreenContent {
        display: block;
    }

    .LargeScreenContent {
        display: none;
    }

    .header-text {
        font-size: 25px;
        line-height: 30.6px;
    }

    .subheader-text {
        font-size: 20px;
        line-height: 23.4px;
        color: rgba(0, 0, 0, 1);
    }

    .publishedDate-text {
        font-size: 20px;
        line-height: 23.4px;
        letter-spacing: 1px;
        color: rgba(184, 184, 184, 1);
    }

    .right-wrapper {
        width: 100%;
        padding: 20px 30px;
        word-break: break-word;
    }

    .left-wrapper {
        width: 100%;
    }

    .article-image {
        border-radius: 8px 8px 0 0;
        height: auto;
    }
}