.container6 {
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--e-global-color-304f850);
    margin-bottom: 20px;
}

.news-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.news-item {
    width: calc(25% - 20px); /* Adjust for spacing */
    min-width: 360px;
    margin: 10px;
    background-color: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
.pro-item{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    padding: 10px;
}

.news-item img {
    width: 100%;
    height: auto;
}
.news-item a {
    color: var(--e-global-color-304f850);
}

.date {
    font-size: 0.8em;
    color: #666;
    margin: 10px;
}

.description {
    margin: 10px;
    line-height: 1.5;
    text-align: center;
    font-weight: var(--e-global-typography-40ac9ec-font-weight);
}
.read {
    margin: 10px;
    line-height: 1.5;
    text-align: center;
}
.pro-banner {
    background-color: #f5f5f5;
    margin-top: 90px;
    padding: 10px 200px;
}
@media (max-width: 768px) {
    .news-item {
        width: calc(50% - 20px); /* Two items per row on smaller screens */
    }
    .pro-banner{
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .news-item {
        width: 100%; /* One item per row on very small screens */
    }
}