@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #007bff;
  --color-sub: #6c757d;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --color-base: #334155;
  --color-border: #e2e8f0;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error);
}

.dim {
  color: var(--color-gray);
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : contact.scss
 * 역할   : contact페이지 레이아웃
 */
.section__wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .section__wrap {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .section__wrap {
    padding: 4rem 1rem;
  }
}

.section1 {
  width: 100%;
  max-width: 1200px;
  height: auto;
  text-align: center;
}
.section1__title {
  margin-bottom: 1rem;
}
.section1__title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-base);
}
@media screen and (max-width: 1200px) {
  .section1__title h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section1__title h2 {
    font-size: 1.4rem;
  }
}
.section1__title p {
  color: #8b95a1;
}
.section1__items {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.section1__item {
  width: 100%;
  max-width: 650px;
  height: auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e8eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .section1__item {
    max-width: 100%;
  }
}
.section1__item h3 {
  font-weight: 600;
  color: #007aff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section1__item .input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f9fafb;
  padding: 12px 12px 12px 24px;
  border-radius: 1rem;
  border: 1px solid #f2f4f7;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section1__item .input {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section1__item .input .contact__email {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333d4b;
  letter-spacing: -0.01em;
}
.section1__item .input .contact__btn {
  background: #333d4b;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.2s;
  padding: 10px 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .section1__item .input .contact__btn {
    width: 100%;
  }
}
.section1__item .input .contact__btn:hover {
  background: #1a1f27;
}
.section1__item .input .contact__btn:active {
  transform: scale(0.96);
}
.section1__item p {
  color: #6b7684;
}
.section1__item p b {
  color: #333d4b;
}
.section1__footer {
  margin-top: 2rem;
}
.section1__footer p {
  color: #b0b8c1;
}
@media screen and (max-width: 767px) {
  .section1__footer p {
    font-size: 0.9rem;
    text-wrap: balance;
  }
}