.b9-camps {
  background-color: transparent;
  font-family: 'Outfit', sans-serif;
}

.b9-camps .container-fluid {
  padding: 0 195px;
}

.camp-card {
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #FFFFFF26;
}

.camp-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.camp-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  
  .camp-heading-white {
    color: #ffffff;
    text-transform: uppercase;
  }
  
  .camp-heading-green {
    color: var(--b9-primary-color);
    text-transform: uppercase;
  }
}

.camp-description {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}

.camp-time {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  margin-top: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}

.camp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--b9-primary-color);
  color: #121A22;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  width: 165px;
  height: 56px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
  
  &:hover {
    background-color: var(--b9-primary-hover);
    color: #121A22;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
  }
}

.camp-image-wrapper {
  width: 100%;
  aspect-ratio: 1.53;
  overflow: hidden;
  border-radius: 24px;
}

.camp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .b9-camps .container-fluid {
    padding: 0 80px;
  }
}

@media (max-width: 1024px) {
  .b9-camps {
    padding: 0 0 !important;
  }
  .b9-camps .container-fluid {
    padding: 0 16px;
  }
  .camp-heading {
    font-size: 32px !important;
    line-height: 140% !important;
  }
  .camp-content {
    padding: 14px !important;
    line-height: 160% !important;
  }
  .camp-description {
    font-size: 14px !important;
    line-height: 160% !important;
  }
  .camp-time {
    font-size: 14px !important;
    line-height: 160% !important;
    margin-top: 8px !important;
  }
  .camp-button {
    font-size: 16px !important;
    width: 144px !important;
    height: 48px !important;
  }
  .camp-image-wrapper {
    border-radius: 0 !important;
  }
}

@media (max-width: 576px) {
  .b9-camps {
    padding: 0 0 !important;
  }
  .b9-camps .container-fluid {
    padding: 0 16px;
  }
  .cam-heading {
    font-size: 32px !important;
    line-height: 140% !important;
  }
  .camp-content {
    padding: 16px !important;
    line-height: 160% !important;
  }
  .camp-description {
    font-size: 16px !important;
    line-height: 160% !important;
  }
  .camp-time {
    font-size: 16px !important;
    line-height: 160% !important;
    margin-top: 8px !important;
  }
  .camp-button {
    font-size: 16px !important;
    width: 144px !important;
    height: 48px !important;
  }
  .camp-image-wrapper {
    border-radius: 0 !important;
  }
}
