/* Custom 5 columns grid layout */
.col-md-5col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-5col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .col-md-5col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .col-md-5col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Ensure proper spacing in 5 column layout */
.c-row .col-md-5col .c-blog_item {
  margin-bottom: 30px;
}

/* Adjust thumbnail for smaller columns */
.col-md-5col .c-blog__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
