
.post-item .news-header {
  margin-bottom: 60px;
}
.post-item .news-meta{}
.post-item .news-meta .news-author{}
.post-item .news-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.post-item .news-subtitle {
  font-size: 1.1rem;
  color: var(--gray-dark);
}


.post-item .news-image {
  position: relative;
  overflow: hidden;
}

.post-item .news-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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


.post-item .date-day {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.post-item .date-month {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}



.post-item .news-card-title {
  /* font-size: 1.3rem; */
  /* font-weight: 600; */
  /* color: var(--primary); */
  /* margin-bottom: 15px; */
  /* line-height: 1.4; */
}

.post-item .news-desc {
  /* color: var(--gray-dark); */
  /* line-height: 1.6; */
  /* margin-bottom: 20px; */
}

.post-item .news-link {
  /* color: var(--primary); */
  /* text-decoration: none; */
  /* font-weight: 600; */
  /* transition: all 0.3s ease; */
}

.post-item .news-link:hover {
  color: var(--second);
}

.post-item .news-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.post-item .news-link:hover i {
  transform: translateX(5px);
}

.post-item .news-footer {
  margin-top: 50px;
}

.post-item .news-btn {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.post-item .news-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}


.post-list-with-thumb .post-item {
  display: flex;
  flex-wrap: nowrap;
}
.post-item .post-image {
  margin-right: 10px;
  flex-grow: 1;
  flex:  0 0 100px;
  flex-shrink: 0;
}
.post-content .meta-date {
  color: #aaa;
  margin-bottom: 0;
  font-size: 12px;
}
.post-content .post-title{
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
} 
.post-content .post-title a{text-decoration: none;color: var(--primary);}
.post-content .post-title:hover a{
    color: var(--second);
}
@media(max-width:768px){
  .post-item .news-meta .news-author{white-space: nowrap;}
}