.edvinArticlesContainer {
    width: 100%;
    margin: 10px;
    display: flex;          /* Enable Flexbox */
  flex-direction: column; /* Stack items vertically */
  align-items: center;    /* Center items horizontally */
  justify-content: center; 

  margin-top: 30px;
  margin-bottom: 30px;
}



.article {
    width: 60%;
    display: flex;
    justify-content: left;
    align-items: center;
    border: 1px solid #e2e2e2;
    padding: 20px;
    border-radius: 5px;
    text-wrap: wrap;
    margin-top: 20px;
    box-shadow: 0px 0px 10px 1px #aaa;
    overflow: hidden;
}

.articleText {
    padding: 5px;
    padding-left: 16px;
    border-left: 3px solid #d4d4d4;
    
    
}
.articleImage {
    position: relative;
    margin-right: 10px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.articleImageBackDrop {
    position: absolute; 
    width: 95%; 
    height: auto; 
    opacity: 0.2; 
    filter: blur(10px);
}

.articlePublisherLogo {
    height: 100px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(10px);
    box-shadow: 0px 0px 10px 1px #666;
}
.mobilePublisherName {
    display: none;
}

.articleTitle {
    font-size: 20px;
    font-weight: bold;
}

.articlePublisher {
    font-size: 20px;
    font-weight: normal;
    color: #666;
    margin-left: 20px;
    margin-top: 6px;
}

.articlePreview {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    max-width: 1000px;
}

.articleLinkContainer {}

.articleLink {}

.articleCoverContainer {
    display: none;
}

@media screen and (max-width: 600px) {

    html, body {
        margin: 0px;
        padding: 0px;
    }


    .articleCoverContainer {
        display: none;
    }

    .articlesCover {
        /*prototype 07/12/2024*/
        width: 100%;
        height: 200px;
        background-image: url('../images/house_of_commons.webp');
        background-size: cover; 
        background-position: center;  
        background-repeat: no-repeat; 

        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0.5;
       
    }
    .articlesCoverTitle {
        color: white;
        font-size: 40px;
        text-shadow: 0px 0px 50px 1px #fff;
    }





    .edvinArticlesContainer {
        width: 100%;
        margin: 0px;
        display: flex;          /* Enable Flexbox */
        flex-direction: column; /* Stack items vertically */
        align-items: center;    /* Center items horizontally */
        justify-content: center; 
        
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    
    
    .article {
        width: 80%;
        display: block;
        /*justify-content: left;
        align-items: center;*/
        text-align: left;
        border: 1px solid #e2e2e2;
        padding: 20px;
        border-radius: 5px;
        text-wrap: wrap;
        margin-top: 20px;
        box-shadow: 0px 0px 10px 1px #aaa;
        overflow: hidden;
    }
    
    .articleText {
        padding: 5px;
        padding-left: 0px;
        border-left: none;
        
        
    }
    .articleImage {
        position: relative;
        margin-right: 10px;
        width: 100%;
        padding: 0px;
        display: flex;
        justify-content: left;
        align-items: center;
        padding-inline: 20px;
        margin-bottom: 10px;
        overflow: hidden;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2), inset 0px 0px 5px 1px rgba(0,0,0,0.05);
        
    }
    
    .articleImageBackDrop {
        filter: blur(10px);
        position: absolute; 
        width: 100%; 
        height: auto; 
        opacity: 0.2; 
        filter: blur(10px);
        left: -20px;

    }
    
    .articlePublisherLogo {
        height: 50px;
        width: auto;
        opacity: 0.9;
        filter: drop-shadow(20px);
        box-shadow: 0px 0px 10px 1px #333;
    }

    .mobilePublisherName {
        display: block;
        font-size: 22px;
        font-weight: 600;
        margin-left: 20px;
        text-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    }
    
    .articleTitle {
        font-size: 19px;
        font-weight: bold;
    }
    
    .articlePublisher {
        font-size: 14px;
        font-weight: normal;
        color: #666;
        margin-left: 20px;
        margin-top: 6px;
    }
    
    .articlePreview {
        font-style: italic;
        color: #555;
        margin-top: 10px;
        max-width: 1000px;
    }
    
    .articleLinkContainer {}
    
    .articleLink {}


}