/* SLIDER CSS - Careers In Government In the News */
.cig--news-heading-wrapper p {
  text-align: center;
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  color: #383c44;
}

.cig--news-card-wrapper {
  box-sizing: border-box;
  position: relative;
  max-width: 560px;
  margin: 12px;
  background: var(--color-white);
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -26px 20px 0px rgba(0, 0, 0, 0.04);
}

img.cig--news-feat-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #a47e62, #fff) 1;
}
.cig--news-content-wrapper {
  padding: 15px 30px 30px;
}
h3.cig--news-card-heading {
  margin: 0 0 5px 0;
}
h3.cig--news-card-heading a {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  color: var(--color-blue-dark);
  transition: var(--transition-main);
}
h3.cig--news-card-heading a:hover {
  color: var(--color-blue-light);
}
/* Line Clamp */
.cig--line-clamp-text{
  padding: 15px 0;
  margin: 20px 0;
  overflow: hidden;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
p.cig--news-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: #383c44;
  line-height: 1.5em;
  font-size: 16px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .cig--news-card-wrapper {
    max-width: 100%;
  }
}