html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

a{
    color: white;
}

.richtext-content{
    margin: 3em auto;
    max-width: 1200px;
}

.richtext-content a{
    color: #2ec396
}

.richtext-content h2{
    margin: 1.3rem auto;
}

.richtext-content p{
    margin-bottom: 1.3rem;
    line-height: 1.6;
}

.disclosure-container{
    display: flex;
    justify-content: center;
}

h1{
    font-size: 52px;
    font-weight: 800;
}

.news-container-wrapper{
    display: flex;
    justify-content: center;
}

.news-container{
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto;
}

.news-card{
    width: 400px;
    max-height: 450px;
    border: 2px solid #2ec396;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.image-container {
  width: 100%;
  height: 200px;
  background-color: #FFF;
  aspect-ratio: 3 / 2; 
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-header{
    min-height: 60px;
    display: -webkit-box;
    color: #2ec396;
    text-align: center;
    padding: 10px 50px;
    text-transform: uppercase;
    max-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.description{
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 50px;
    text-align: center;
}

.description a{
    color:#FFF;
}

.read-more{
    text-align: center;
    padding: 10px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.date{
    text-align: center;
    padding: 12px;
    border-top: 1px solid #ccc;
    height: 45px
}