.training-highlight-wrapper {
  background-size: cover;
  background-position: center 1%;
  background-image: url('https://imagedelivery.net/vY-vCKIOBZleXI1sar0vwQ/ddcac7af-49c2-493c-b33d-4bc211cf4d00/EverwikiBlogPost');
  padding: 60px 20px;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
}

.training-highlight-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1280px;
  margin: auto;
}

.training-highlight-box {
  background: #1f2d3d;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  padding: 0;
  width: 100%;
}

.training-highlight-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.training-highlight-box-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.training-highlight-content {
  flex: 1 1 25%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.training-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 16px;
  margin: 0 0;
}

.training-title {
  margin: 0 0;
  padding: 0 0 16px 0;
}

.training-title a {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-600);
  color: rgba(var(--color-white), 1);
  line-height: var(--line-height-120);
  text-decoration: none;
  word-break: keep-all;
}

.training-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  max-height: calc(1.6em * 3);
  margin: 0 0;
  display: none;
}

.training-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
  display: none;
}

.training-status.ongoing {
  background: #fff;
  color: #1f2d3d;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.training-highlight-image {
  flex: 1 1 50%;
  overflow: hidden;
}

.training-highlight-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-box,
.support-box {
  display: flex;
  flex-direction: column;
  flex: 1 1 45%;
  justify-content: flex-end;
  border-radius: 16px;
  min-height: 400px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-box {
  background-image: url('/wp-content/uploads/2025/07/about-box_background_800x800.jpg');
}

.support-box {
  background-image: url('/wp-content/uploads/2025/07/support-box_background_800x800.jpg');
}

.about-box::before,
.support-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-black), 0.1);
  z-index: 1;
}

.about-box-inner,
.support-box-inner {
  padding: 40px 40px;
  background-color: transparent;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-box-inner-boddy,
.support-box-inner-boddy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-box-inner h3,
.support-box-inner h3 {
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-600);
  color: rgba(var(--color-white), 1);
  line-height: var(--line-height-120);
  word-break: var(--wb-keep-all);
  margin: 0 0;
  z-index: 3;
  letter-spacing: -0.02em;
}

.about-box-inner h3 span,
.support-box-inner h3 span {
  color: var(--color-steel-blue);
}

.round-btn {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-600);
  color: rgba(var(--color-white), 1);
  line-height: var(--line-height-100);
  padding: 16px 16px;
  background: #1f2d3d;
  box-sizing: border-box;
  width: max-content;
  display: flex;
  border-radius: 32px;
  text-decoration: unset;
  z-index: 4;
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.about-box.scroll-fade-up {
  transition-delay: 0.2s;
}

.support-box.scroll-fade-up {
  transition-delay: 0.4s;
}

@media screen and (max-width: 960px) {
  .training-highlight-inner {
    flex-direction: column;
    gap: 16px;
  }
  .training-highlight-box-inner {
    flex-direction: column;
    gap: 0px;
  }
  .training-highlight-image {
    order: 1;
  }
  .training-highlight-content {
    order: 2;
    padding: 32px 24px;
    box-sizing: border-box;
    width: 100%;
  }
  .training-title a {
    font-size: var(--font-size-24);
  }
  .about-box,
  .support-box {
    min-height: unset;
  }
  .about-box-inner,
  .support-box-inner {
    padding: 32px 24px;
  }
  .about-box-inner h3, .support-box-inner h3 {
    font-size: var(--font-size-32);
  }
}