/* Section wrapper */
.actrust-news-section {
  background: #f6f5f4; /* subtle light background as in screenshot */
  padding: 40px 60px;
  box-sizing: border-box;
}

/* Header */
.actrust-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.actrust-news-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #0a0a0a;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* More link on the right */
.actrust-more-news {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.actrust-more-news .actrust-more-arrow {
  font-size: 20px;
  transform: translateY(-1px);
}

/* Grid */
.actrust-remote-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: start;
}

/* Card */
.actrust-remote-post {
  border: none;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Thumbnail container centers the image */
.actrust-rp-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 18px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Requested thumbnail size: 400x358 */
.actrust-rp-thumb-img {
  object-fit: cover;
  display: inline-block;
  border-radius: 0;
  box-shadow: none;
}

/* Ensure image doesn't blow layout on small columns */
.actrust-rp-thumb img {
  width: 100%;
  height: auto;
}

/* Title style (centered, multi-line, slightly larger) */
.actrust-rp-body {
  width: 100%;
  max-width: 323px; /* limit width so title wraps similar to screenshot */
  margin: 0 auto;
}

.actrust-rp-title {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 14px;
  font-weight: normal;
  color: #3D4043;
  font-family: "PT Sans", Sans-serif;
}

/* Date style */
.actrust-rp-date {
  color: #3D4043;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "PT Sans", Sans-serif;
}

/* Responsive behaviour: fewer columns and smaller thumbnails */
@media (max-width: 1400px) {
  .actrust-remote-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .actrust-rp-thumb-img,
  .actrust-rp-thumb img {
    width: 323px;
    height: 204px;
  }
  .actrust-rp-body {
    max-width: 340px;
  }
}

@media (max-width: 1024px) {
  .actrust-remote-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .actrust-remote-posts-grid {
    grid-template-columns: 1fr;
  }
  .actrust-news-section {
    padding: 24px;
  }
  .actrust-news-title {
    font-size: 22px;
  }
}
```