.secure-section__title {
  color: var(--text-c);
}

.secure-section__post-list {
  margin-top: 50px;
  display: grid;
  gap: 40px;
}

.secure-section__post-list.secure-section__posts-per-row-2 {
   grid-template-columns: repeat(auto-fill, minmax(min(28rem, 100%), 1fr));
}

.secure-section__post-list.secure-section__posts-per-row-3 {
   grid-template-columns: repeat(auto-fill, minmax(min(22rem, 100%), 1fr));
}

.secure-section__style-grey {
   background-color: var(--light-c);
}

@media (max-width: 768px) {
   .secure-section__post-list {
      gap: 20px;
   }
}