.hiw-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.hiw-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.hiw-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.hiw-card {
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px #3c92ca;
}
.hiw-card p,
.hiw-left p {
  font-size: 0.95rem;
  font-family: "Rubik", sans-serif;
}

.hiw-left h2 {
  font-family: "Anton", sans-serif;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.hiw-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
}

.hiw-icon img {
  max-width: 80px;
}

@media (max-width: 768px) {
  .hiw-wrapper {
    grid-template-columns: 1fr;
  }
}
