

/* CARD */
.nss-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

/* HEADER */
.nss-header h1 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* IMAGE + TEXT */
.nss-image {
  float: left;
  width: 280px;
  margin-right: 20px;
}

.nss-image img {
  width: 100%;
  border-radius: 10px;
}

.nss-text p {
  line-height: 1.8;
  font-size: 14px;
}

/* CLEAR */
.clearfix {
  clear: both;
}

/* EVENTS */
.camp-section {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.camp-title {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 16px;
}

/* CAROUSEL */
.camp-carousel img {
  width: 100%;
  border-radius: 8px;
}

/* NAV BUTTONS */
.owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  border-radius: 5px;
  margin: 5px;
}

.owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* MOBILE */
@media(max-width:768px){
  .nss-image {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }
}