.latest-news .item {
  width: calc(100% / 3 - 20px);
  display: flex !important;
  border-radius: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  outline: 2px solid transparent;
  transition: .2s;
}

.latest-news .item:hover {
  /* outline: 2px solid #455AA2; */
   box-shadow: rgb(9, 127, 245) 0px 0px 0px 2.496px;
}

.latest-news .item h3 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--heading_color);
  margin-top: 20px;
  font-weight: 600;
}

.latest-news .item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.latest-news .item .text {
  border: 1px solid rgba(207, 215, 230, 0.5);
  border-radius: 20px;
  border-top: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 30px;
  padding-bottom: 27px;
  height: 100%;
  width: 100%;
}

.latest-news .item p {
  margin-bottom: 0;
  font-size: 16px;
}

.latest-news .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.latest-news .cat, .latest-news .date {
  background-color: transparent;
  color: #505a63;
  pointer-events: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.latest-news .meta-item {
    display: flex;
    gap: 8px;
    align-items: center;
}
@media (max-width: 1199px) {
  .latest-news .item {
    /* width: calc(100%/3 - 11px); */
    width: calc(100%/3 - 20px);
  }

  .latest-news .item .text {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .latest-news .item h3 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .latest-news .item .text {
    padding: 15px;
  }

  .latest-news .cat, .latest-news .date {
    font-size: 12px;
  }

  .latest-news .date {
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .latest-news .item {
    width: 100%;
  }

}