#news-container {
    width: 100%;
}

.news-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

.news-image img {
    width: 320px;
    border-radius: 10px;
}

.news-content {
    flex: 1;
}

.news-title {
    margin-bottom: 10px;
}

.news-title a {
   margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
    color: var(--e-global-color-ceb7b20);
    font-family: "jaf-lapture-display", Sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 42px;
}
.news-title a:hover{
 color: var(--e-global-color-ceb7b20);	
}
.news-date {
   font-family: "proxima-nova", Sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #03473d;
	margin-bottom:15px;
}

.news-excerpt {
    color: var(--e-global-color-f108571);
    font-family: "proxima-nova", Sans-serif;
    font-size: 19.5px;
    font-weight: 400;
    line-height: 32px;
	margin-bottom:20px;
}

.news-readmore {
    background-color: #d9665c00;
    padding: 0px;
    font-family: "proxima-nova", Sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #03473d;
    align-items: center;
    text-align: center;
   
}

.news-loadmore-wrap {
    text-align: center;
    margin-top: 30px;
}

button#news-load-more-btn2 {
    display: block;
    margin: 10px auto;
    padding: 12px 25px;
    border-radius: 100px;
    background: #D9665C;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: "proxima-nova", Sans-serif;
    text-transform: uppercase;
}
/* Tablet and below */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        gap: 20px;
    }
	.news-card img {
    width: 100%;
    height: auto;
}
.news-title a {
font-size:30px;
line-height:35px;
}

/* Mobile */
@media (max-width: 480px) {
    .newd-card {
        gap: 15px;
        margin: 20px 0;
    }
}