/* ============================= */
/*   PLASINCA NEWS SECTION       */
/* ============================= */

.plasinca-news-section{
  padding:60px 0;
  background:#f7f8fa;
  clear:both;
}

.plasinca-news-wrapper{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.plasinca-news-header{
  text-align:center;
  margin-bottom:35px;
}

.plasinca-news-header h2{
  font-size:32px;
  color:#0b2a55;
  margin-bottom:8px;
}

.plasinca-news-header p{
  color:#6c7a89;
  font-size:15px;
}

.plasinca-news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.plasinca-news-card{
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  transition:.25s ease;
}

.plasinca-news-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.plasinca-news-img{
  width:100%;
  height:190px;
  object-fit:cover;
}

.plasinca-news-body{
  padding:18px;
}

.plasinca-news-date{
  font-size:12px;
  color:#999;
  margin-bottom:6px;
}

.plasinca-news-title{
  font-size:18px;
  color:#0b2a55;
  font-weight:700;
  margin-bottom:8px;
}

.plasinca-news-excerpt{
  font-size:14px;
  color:#555;
  margin-bottom:12px;
}

.plasinca-news-link{
  color:#f59e0b;
  font-weight:600;
  text-decoration:none;
}

.plasinca-news-link:hover{
  text-decoration:underline;
}

.plasinca-news-footer{
  text-align:center;
  margin-top:30px;
}

.plasinca-news-footer a{
  background:#f59e0b;
  padding:12px 20px;
  border-radius:10px;
  color:#0b2a55;
  font-weight:700;
  text-decoration:none;
}