/** Shopify CDN: Minification failed

Line 31:0 Unexpected "<"
Line 93:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.image-links-text {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.image-links-text .item {
  text-align: center;
  max-width: 700px;
}
.image-links-text .item img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.image-links-text .item p {
  margin-top: 10px;
  font-size: 16px;
  color: #444;
}
<style>
  .yotif-pillars {
    text-align: center;
    padding: 20px 0;
  }

  .yotif-pillars h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .yotif-pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
  }

  .yotif-pillars-item {
    width: 225px;
    text-align: center;
    margin-bottom: 5px;
  }

  .pillar-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 5 / 2;
    margin-bottom: 10px;
  }

  .pillar-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .yotif-pillars-item h3 {
    font-size: 13px;
    margin: 6px 0 4px;
  }

  .yotif-pillars-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }

  @media screen and (max-width: 600px) {
    .yotif-pillars-item {
      width: 70%;
      margin-bottom: 5px;
    }
    .yotif-pillars-grid {
      gap: 5px;
    }
    .pillar-image-wrapper {
      aspect-ratio: 4 / 2;
    }
  }
</style>