.editorial .content {
  width: 48.2%;
  gap: 60px;
}

.editorial .content>div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editorial ul li {
  line-height: 26px !important;
}

.editorial ul {
  gap: 16px !important;
}

.editorial .shadow {
  aspect-ratio: 621/389;
}

.editorial .image img {
  aspect-ratio: 621/389;
}

.editorial .image-center {
  display: none !important;
}

.editorial button.editorial__button,
.editorial a.editorial__button {
  cursor: pointer;
  background-color: transparent;
  padding: 11px 32px;
  border: 2px solid #2501c3;
  display: flex;
  height: fit-content;
  width: max-content;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #2501c3;
  text-align: center;
  text-decoration-line: none !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.editorial button.editorial__button:hover,
.editorial a.editorial__button:hover {
  background-color: #2501c3;
  color: white;
}

.editorial button.editorial__button:hover img {
  filter: brightness(0) invert(1);
}

.editorial .grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  gap: 16px !important;
}

.editorial .grid .item {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.editorial .grid .item>img {
  max-height: 100px;
}

@media (max-width: 1199px) {
  .editorial .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .editorial ul li {
    line-height: 24px !important;
  }

  .editorial .image-center.show-image {
    display: flex !important;
  }

  .editorial .image.hide-image {
    display: none !important;
  }

  .editorial button.editorial__button,
  .editorial a.editorial__button {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .editorial .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 499px) {
  .editorial .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}