:root {
  --dhs-training-text-color: #7ac9f1;
  --dhs-training-border-color: #bc6c25;
  --dhs-training-footer-bg: #ab774b;
}

.dhs-training-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.dhs-training-title {
  color: var(--dhs-training-text-color);
  font-family: 'Amita', cursive;
  margin: 20px auto;
  width: 100%;
  max-width: 450px;
  font-size: 2rem;
  text-align: center;
  border-bottom: 10px double var(--dhs-training-border-color7);
  padding-bottom: 10px;
  text-shadow: 2px 2px 4px #1999f8;
}

.dhs-training-gallery-wrapper {
  padding: 20px 0;
}

.dhs-training-img-wrapper {
  position: relative;
}

.dhs-training-img {
  width: 100%;
  max-width: 450px;
  height: 300px;
  object-fit: cover;
  margin: 10px;
  border: 10px solid var(--dhs-training-text-color);
  filter: sepia(100%);
  transition: all 1s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.dhs-training-img:hover {
  border: 5px solid #fff;
  transform: scale(1.05);
  filter: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.dhs-training-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.378);
  padding: 6px 12px;
  border-radius: 5px;
}

.dhs-training-caption h4 {
  font-size: 1rem;
  margin: 0;
}

.dhs-training-caption p {
  font-size: 0.8rem;
  margin: 0;
  color: white;
}

@media (max-width: 767.98px) {
  .dhs-training-title {
    font-size: 2.2rem;
    max-width: 90%;
  }
  .dhs-training-img {
    max-width: 90%;
    height: 200px;
    margin: 5px;
  }
}