/* ===== ABOUT ===== */
.abo {
  background: #fff;
  padding: 120px 0 160px;
  margin-top: 0;
}

.abo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}



/* 반응형 */
@media (max-width:1024px) {
  .abo-card {
    height: 360px;
    border-radius: 28px;
  }
}

@media (max-width:768px) {
  .abo {
    padding: 80px 0 120px;
  }

  .abo__inner {
    padding: 0 20px;
  }

  .abo__title {
    font-size: 32px;
  }

  .abo-card {
    height: 300px;
    border-radius: 22px;
  }
}

/* ===== MOBILE RESET (이미지 안 보이던 문제 해결) ===== */
@media (max-width: 768px) {

  .abo-card {
    width: 100%;
    /* PC 고정 폭 제거 */
    max-width: 100%;
    height: 260px;

    margin-left: 0;
    margin-right: 0;
    /* 음수 마진 제거 */

    border-radius: 18px;
  }

  /* 이미지 영역 중앙 정렬 */
  .abo-img {
    inset: 0;
    background-position: center center !important;
  }
}



.inquiry-title {
  width: 100%;
  padding: 140px 0;
  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
}

.inquiry-title h2 {
  font-size: 52px;
  font-weight: 700;
  color: #3db6c6;
  margin: 0;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .inquiry-title {
    padding: 110px 0;
  }

  .inquiry-title h2 {
    font-size: 46px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .inquiry-title {
    padding: 135px 0;
  }

  .inquiry-title h2 {
    font-size: 34px;
  }
}


@media screen and (max-width: 1024px) {
  .layout__basic {
    padding: 0 24px !important;
    margin-top: -21% !important;
    margin-bottom: 10% !important;
  }
}

/***************************문의하기*******************************************************************/

.inq-form {
  width: 100%;
  border-top: 1px solid #eee;
}

.layout__basic {
  max-width: 1500px;
  padding: 0 50px;
  margin: 0 auto;
  margin-top: -3%;
  margin-bottom: 5%;
}

.inq-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.inq-label {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.inq-label span {
  color: #3db6c6;
  margin-left: 4px;
}

.inq-field input,
.inq-field textarea,
.inq-field select {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
}

.inq-field textarea {
  height: 140px;
  padding: 14px;
  resize: none;
}

.inq-email {
  display: flex;
  gap: 10px;
}

.inq-email input {
  flex: 1;
}

.inq-email select {
  width: 180px;
}

/* Attachment */
.inq-file {
  display: flex;
  gap: 14px;
  align-items: center;
}

.file-plus {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: #3db6c6;
}

.file-btn {
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* note */
.inq-note {
  font-size: 12px;
  color: #3db6c6;
  margin: 12px 0 0 220px;
}

/* Anti spam */
.inq-spam {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inq-spam img {
  height: 32px;
}

.inq-spam input {
  width: 160px;
}

.inq-spam p {
  font-size: 13px;
  color: #666;
}

/* Submit */
.inq-submit {
  padding: 60px 0 0;
  text-align: center;
}

.inq-submit button {
  width: 220px;
  height: 64px;
  border-radius: 10px;
  border: none;
  background: #3db6c6;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .inq-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inq-note {
    margin-left: 0;
  }

  .inq-email {
    flex-direction: column;
  }

  .inq-email select {
    width: 100%;
  }

  .inq-submit button {
    width: 100%;
  }
}

/* 허니팟 input 완전 숨김 */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}