#thinkagile-hx #ai-workloads-section {
  background-color: #eaeef5;
  padding: 4rem 2rem;
  text-align: center;
}

#thinkagile-hx #ai-workloads-section .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

#thinkagile-hx #ai-workloads-section h2 {
  font-family: var(--font-gotham-bold);
  font-size: clamp(2rem, 4vw, 2.625rem);
  line-height: 120%;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

#thinkagile-hx #ai-workloads-section .intro {
  font-family: var(--font-gotham-book);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-gray);
  max-width: 70ch;
  margin: 0 auto 3rem;
  text-align: center;
}

#thinkagile-hx #ai-workloads-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#thinkagile-hx #ai-workloads-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#thinkagile-hx #ai-workloads-section .feature-item:nth-child(4) {
  grid-column: 1.5 / 2.5;
  justify-self: center;
}

#thinkagile-hx #ai-workloads-section .feature-item:nth-child(5) {
  grid-column: 2.5 / 3.5;
  justify-self: center;
}

#thinkagile-hx #ai-workloads-section .feature-item .icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

#thinkagile-hx #ai-workloads-section .feature-item .icon svg {
  width: 100%;
  height: 100%;
}

#thinkagile-hx #ai-workloads-section .feature-item p {
  font-family: var(--font-gotham-book);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  text-align: center;
}

#thinkagile-hx #ai-workloads-section .cta-button {
  display: inline-block;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  font-family: var(--font-gotham-bold);
  font-size: 1rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#thinkagile-hx #ai-workloads-section .cta-button:hover {
  background-color: var(--color-primary-red-alt);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

#thinkagile-hx #ai-workloads-section .cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1024px) {
  #thinkagile-hx #ai-workloads-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 767px) {
  #thinkagile-hx #ai-workloads-section {
    padding: 3rem 1.5rem;
  }

  #thinkagile-hx #ai-workloads-section .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #thinkagile-hx #ai-workloads-section .intro {
    margin-bottom: 2.5rem;
  }
}

