/* Feat IMG */
.cig--feat-ls-parent {

  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 220px;
  width: auto;
}


.cig--ls-page-body-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.cig--ls-grid-wrapper {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cig--ls-grid-item {
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  max-width: 254px;
  flex: 1 1 calc(30% - 8px);
  height: fit-content;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-soft);
}

img.cig--ls-grid-feat-img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #a47e62, #fff) 1;
}

.cig--ls-grid-content-wrapper {
  background: rgb(255, 255, 255);
  padding: 10px 10px 20px 10px;
  text-align: center;
}

h4.cig--ls-grid-heading {
  color: var(--color-blue-dark);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.cig--ls-grid-content-wrapper a {
  color: var(--color-blue-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

@media only screen and (max-width: 1024px) {
  .cig--ls-grid-item {
    max-width: 192px;
    flex: 1 1 calc(30% - 8px);
  }
}
@media only screen and (max-width: 768px) {
  .cig--ls-grid-wrapper {
    gap: 20px;
  }
  .cig--ls-grid-item {
    max-width: 100%;
    flex: 1 1 calc(50% - 10px);
  }
}
@media only screen and (max-width: 375px) {
  .cig--ls-grid-wrapper {
    gap: 40px;
  }
  .cig--ls-grid-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
  img.cig--ls-grid-feat-img {
    width: 100%;
    height: 168px;
  }
}
