.strength {
  color: var(--grey-000);
  background: linear-gradient(180deg, #325bba 1.73%, #0f2e77 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength__geared-title, .strength__heading {
  color: var(--grey-000);
}

.strength__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.strength__content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.strength__content-line {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.strength__content-line strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1px;
  vertical-align: bottom;
}

.strength__ft-image {
  width: 418.182px;
  height: auto;
}

.strength__gallery {
  margin-top: 40px;
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.strength__gallery-item {
  width: 100%;
  height: auto;
}

.strength__gallery-image {
  width: 100%;
  height: auto;
}

@media (width <= 768px) {
  .strength__content {
    margin-top: 20px;
    max-width: 100%;
    gap: 12px;
  }
  .strength__content-text {
    display: block;
    text-align: left;
  }
  .strength__content-line strong {
    font-size: 20px;
    line-height: 150%;
  }
  .strength__ft-image {
    max-width: 240px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .strength__gallery {
    margin-top: 20px;
    grid-template-columns: minmax(0, 312px);
    gap: 32px;
  }
}