.trainings-1200 {
  padding: 0.5rem 1rem;
  text-align: center;
}

.trainings-container-1200 {
  width: 100%;
  max-width: 1400px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  /* Remove flex so Bootstrap grid works as intended */
}
.training-box {
  border: 1px solid rgba(255, 255, 255);
  color: hsl(0, 0%, 100%);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.5rem 1.2rem hsla(0, 0%, 0%, 0.25);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  word-break: break-word;
  box-sizing: border-box;
  padding: 1rem 1rem;
}
@media (max-width: 991.9px) {
  .training-box  {
    min-height: 100px;
  }
}

/* Icon and h4 layout for training box title */
.training-box-icon-title {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.9px) {
  .training-box-icon-title  {
    flex-direction: row-reverse;
    gap: 1rem;
  }
}

.training-box-sop {
  background-color: hsl(120, 100%, 30%);
}

.training-box-tp {
  background-color: hsl(300, 100%, 20%);
}

.training-box-gpc {
  background-color: hsl(195, 100%, 30%);
}

.training-box-syo {
  background-color: hsl(38, 97%, 44%);
}

.training-box-sds {
  background-color: hsl(24, 100%, 41%);
}

.training-box-scm {
  background-color: hsl(215, 22%, 34%);
}

.training-box-rso {
  background-color: hsl(340, 100%, 30%);
}

.training-box-sat {
  background-color: hsl(321, 12%, 23%);
}

.training-box:hover {
  border: 1px solid rgba(255, 255, 255);
  filter: brightness(1.10);
  transform: translateY(-4px);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.35);
}

.training-icon {
  text-align: center;
  margin: auto;
  margin-top: 0rem;
}

.training-box .training-box-caption {
  font-size: var(--font-size-5);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: left;
  padding-left: 0;
  padding-top: 0.5rem;
}
@media (max-width: 991.9px) {
  .training-box .training-box-caption {
    padding-top: 0rem;
  }
}

.training-box-body {
  color: white;
  margin-bottom: 1em;
  font-size: var(--font-size-6);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  padding-left: 0;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 100%;
  min-width: 0;
}

.training-box .training-box-details {
  font-size: var(--font-size-6);
  font-weight: 500;
  color: inherit;
  padding-bottom: 0.5rem;
  margin-top: auto;
  display: flex;
  gap: 0.25rem;
  padding-left: 0;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 48;
}
.training-icon .material-symbols-outlined,
.material-symbols-outlined.responsive-icon {
  font-size: var(--icon-size-1);
  display: inline-block;
  vertical-align: middle;
}
