 .news-item {
     border-bottom: 1px solid #ddd;
     padding: 15px 0;
    }
.news-item a {
    text-decoration: none;
    color: #333;
}
.cat-important {
    background: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}
.cat-service {
    background: #3498db;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}
.cat-other {
    background: #7f8c8d;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}
.date {
    font-size: 14px;
    color: #555;
}
@media (max-width: 768px) {
    .news-flex {
        flex-direction: column;
    }
    .thumbnail {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
    }
}
.news-title {
  background: #4c9ac0;
  color: #fff;
    font-size: 28px;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
  margin: 80px auto;
  width: 85%;
}
.news-title::before {
  border-radius: 200px / 10px;
  box-shadow: 0 50px 20px rgba(0, 0, 0, .35);
  bottom: 10px;
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
}

.news-list {
    display: grid;
    gap: 20px;
    width: 80%;
    margin: 0 auto 30px;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.news-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}
.news-thumb {
    width: 160px;
    height: 110px;
    object-fit: cover;
}
.news-info {
    padding: 15px;
    flex: 1;
}
.news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.news-date {
    color: #666;
}
.news-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 4px 0 10px;
}
.news-excerpt {
    color: #555;
    line-height: 1.5;
}
/* category badges */
.cat-important {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.cat-service {
    background: #3498db;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.cat-other {
    background: #7f8c8d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
/* responsive */
@media(max-width:768px) {
    .news-link {
        flex-direction: column;
    }
    .news-thumb {
        width: 100%;
        height: 180px;
    }
}
.pagination {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}
.pagination a {
    padding: 6px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
}
.pagination .active {
    background: #333;
    color: #fff;
}
.thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}
.news-flex {
    display: flex;
    align-items: flex-start;
}