.latest-itnews-wrapper {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 2px solid #eee;
  }
  .latest-itnews-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
  }
  .latest-itnews-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .latest-itnews-featured {
    flex: 0 0 55%;
  }
  .latest-itnews-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
  }
  .latest-itnews-caption {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
    font-weight: bold;
    color:#000;
  }
  .latest-itnews-side {
    flex: 0 0 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .latest-itnews-side ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: contents;
  }
  .latest-itnews-side li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .latest-itnews-side li .thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f1f1f1;
  }
  .latest-itnews-side li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .latest-itnews-side li .text {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    color:#000;
  }
  @media (max-width: 768px) {
    .latest-itnews-grid {
      flex-direction: column;
    }
    .latest-itnews-featured,
    .latest-itnews-side {
      flex: 1 1 100%;
    }
    .latest-itnews-side {
      grid-template-columns: 1fr 1fr;
    }
  }