.glotech-knowledge {
  margin-top: 2rem;
}

.glotech-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.glotech-knowledge-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #fff;
  color: #333;
  text-decoration: none;
}

.glotech-knowledge-tile:hover {
  text-decoration: none;
}

.glotech-knowledge-tile img {
  width: 85px;
  height: 85px;
  flex: 0 0 85px;
  object-fit: contain;
  background: #fff;
}

.glotech-knowledge-tile > div {
  min-width: 0;
}

.glotech-knowledge-tile strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #004e9e;
  font-size: 1rem;
  line-height: 1.2;
}

.glotech-knowledge-tile span {
  display: block;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.3;
}

.glotech-knowledge-all {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: right;
  clear: both;
}

.glotech-knowledge-all a {
  color: #7a7a7a;
  font-weight: 500;
  text-decoration: none;
}

.glotech-knowledge-all a:hover {
  color: #004e9e;
  text-decoration: none;
}

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

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

  .glotech-knowledge-tile {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .glotech-knowledge-grid {
    grid-template-columns: 1fr;
  }
}

.glotech-knowledge-separator {
  width: 80px;
  height: 3px;
  margin: 0 auto 2rem;
  background: #004e9e;
}

.glotech-knowledge h2 {
  margin-bottom: 2rem;
  color: #004e9e;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}