/* About Objectives Block - Frontend Styles */
.synpact-about-objectives {
  width: calc(100% + 5vw);
  margin: 2vh 0 5vh -5vw;
  padding: 0;
}

.synpact-about-objectives .objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2vh;
  width: 100%;
}

.synpact-about-objectives .objective-item {
  padding: 3vh 2vw;
  border-radius: 20px;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.synpact-about-objectives .objective-text {
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  color: #f1f2eb;
  margin: 0;
  line-height: 1.6;
  /* text-align: center; */
  font-weight: 400;
}

@media (max-width: 768px) {
  .synpact-about-objectives {
    width: 100%;
    margin: 2vh 0 5vh 0;
    padding: 0;
  }
  .synpact-about-objectives .objectives-grid {
    grid-template-columns: 1fr;
  }

  .synpact-about-objectives .objective-item {
    padding: 2vh 4vw;
    min-height: auto;
  }

  .synpact-about-objectives .objective-text {
    font-size: 14px;
  }
}
