/* News Articles Section */
.news-articles {
    padding: 96px 0 80px;
}
.article-section {
    padding: 96px 0 80px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(257px, 1fr));
    gap: 64px;
    max-width: 100%;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 352px;
    width: 100%;
    justify-self: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.article-placeholder {
    width: 100%;
    background: #eee;
    position: relative;
    overflow: hidden;
}
.article-placeholder::before{
    content: "";
    padding-top: 70%;
    display: block;
	

}
.article-placeholder img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: auto;
	object-fit: cover;
	 transform: translate(-50%,-50%);
}
.placeholder-logo {
    width: 41.904px;
    height: 31.273px;
    opacity: 0.6;
}

.placeholder-text {
    width: 77.519px;
    height: 9.177px;
    opacity: 0.6;
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.article-header{
	margin: 3em 0 1em;
}
.article-title {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    font-weight: normal;
    margin: 0;
}
.article-title a {
    text-decoration: none;
	color: #000;
}.article-title a:hover {
    color: #B30002;
}
.article-title.detail {
    font-size: 20px;
    line-height: 1.8;
    color: #444444;
    font-weight: normal;
    margin: 0;
}
.article-date {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    font-weight: normal;
    margin: 0;
}
/* Responsive Design */
@media (max-width: 1200px) {
   
}

@media (max-width: 768px) {

    .news-articles {
        padding: 60px 0;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }
    
    .article-card {
        max-width: 100%;
    }
    
}

@media (max-width: 480px) {
.article-section {
  padding: 60px 0 60px;
}
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-image {
        height: 200px;
    }
    
    .placeholder-logo {
        width: 32px;
        height: 24px;
    }
    
    .placeholder-text {
        width: 60px;
        height: 7px;
    }
}