

/* CARD */
.collab-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}



/* TEXT */
.collab-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.collab-list {
  padding: 0;
  margin: 20px 0;
}

.collab-list li {
  list-style: none;
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #f9fafc;
  border-left: 4px solid var(--accent-red);
  border-radius: 6px;
  transition: 0.3s;
}

/* HOVER */
.collab-list li:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateX(5px);
}

/* GALLERY */
.collab-gallery {
  margin-top: 40px;
}

.collab-gallery h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

/* IMAGES */
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
  border: 2px solid #eee;
}

/* HOVER */
.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .collab-card {
    padding: 20px;
  }

  .section-title {
    font-size: 22px;
  }

}