.grid-icon-list .icon {
  flex: 0 0 20%; /* Fixed 20% of the parent's width */
  aspect-ratio: 1/1; /* Maintain square shape */
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-icon-list .icon picture {
  width: 100%; /* Full size of wrapper */
  height: 100%; /* Full size of wrapper */
  border-radius: 50%;
  background-color: white;
  border: #76B655 solid 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-icon-list .icon picture img {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .grid-icon-list .icon {
    flex: 0 0 25%; /* Fixed 20% of the parent's width */
  }
}
@media (max-width: 429.98px) {
  .grid-icon-list .icon {
    flex: 0 0 25%; /* Fixed 20% of the parent's width */
  }
  .grid-icon-list .icon picture img {
    max-width: 30px;
    max-height: 30px;
  }
}
.grid-icon-list .text {
  align-self: center;
  font-family: "MagistralWebBook", serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding-left: 20px; /* Optional spacing between image and text */
}
@media (max-width: 767.98px) {
  .grid-icon-list .text {
    flex: 0 0 75%; /* Fixed 20% of the parent's width */
    font-size: 1.125rem;
  }
}
@media (max-width: 429.98px) {
  .grid-icon-list .text {
    flex: 0 0 75%; /* Fixed 20% of the parent's width */
    padding-left: 10px;
  }
}
.grid-icon-list .item {
  padding-bottom: 20px;
}