html {
    box-sizing: border-box;
}

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

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Inter',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-header {
    padding: 40px 40px 30px;
    text-align: center;
}

.news-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: rgba(255,255,255,0.95);
}

.news-header p {
    font-size: 15px;
    color: rgba(168,184,192,0.7);
    font-weight: 400;
}

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

.news-container{
    max-width: 1400px;
    width: calc(100% - 120px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 50px 0;
    margin: 0 auto;
}

.news-card{
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.image-container {
    width: 100%;
    height: 200px;
    min-height: 200px;
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(46, 195, 150, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 195, 150, 0.15);
}

.news-card:hover .image-container img {
    transform: scale(1.05);
}

.date{
    text-align: left;
    font-size: 0.85rem;
    color: rgba(46, 195, 150, 0.8);
    padding: 20px 20px 0 20px;
    height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-header{
    display: -webkit-box;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 20px 0 20px;
    font-weight: 700;
    font-size: 1.2rem;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
    text-overflow: ellipsis;
    margin: 0;
}

.description{
    height: 135px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 20px 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.description p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.description a{
    color: rgba(46, 195, 150, 0.9);
}

.read-more{
    text-align: left;
    padding: 0 20px 20px 20px;
    color: rgba(46, 195, 150, 0.9);
    font-size: 0.9rem;
    text-decoration: none;
    margin: 0;
    font-weight: 600;
    transition: all 0.2s ease;
}

.news-card:hover .read-more {
    color: rgba(46, 195, 150, 1);
    transform: translateX(4px);
}

@media (max-width: 1400px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}
