.contact {
  position: relative;
  width: 100%;
  min-height: 280px;    /* ★ 높이 살짝 증가 */
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/common/collab-banner.png');
  background-size: cover;
  background-position: center;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 30, 0.50);
}

.contact__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
}

.contact__title {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* CTA 버튼: collab-button.png + 텍스트 */
.contact__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 180px;
  cursor: pointer;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.contact__btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.contact__btn__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--r-full);
}

.contact__btn__text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  padding: 0 24px;
}
