body{
    min-width: 300px;
}
.welcome-container{
    width: 100%;
    background-color: var(--secondary-blue);

  --mask:
    radial-gradient(51.43px at 50% calc(100% - 69px),#000 99%,#0000 101%) calc(50% - 46px) 0/92px 100%,
    radial-gradient(51.43px at 50% calc(100% + 46px),#0000 99%,#000 101%) 50% calc(100% - 23px)/92px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);

    color: white;
}
.news-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin-top: 2em;
}

.toyotex-article-text{
   /* display: flex;
    justify-content: space-between;
    align-items: center;*/
    padding: 1em;
    border: 1px solid black;
    margin: 10px;
}

.news-image{
    width: 55%;
    height: 40%;
}



.news-page-title{
    text-align: center;
}
.news-cta{
    color: #FEF9F3; 
}
.news-link{
    text-decoration: none;
}

.welcome-container{
    padding: 2em;
}
@media (max-width:500px){
    
    .news-page-title{
        font-size: 1.5em;
    }

    .news-image{
        width: 80%;
        height: 50%;
    }

    .welcome-container{
        height: max-content;
    
    }

    .news-cta{
        font-size: 0.8em;
    }

    .news-list{
        width: 100%;
    }
}
