@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.inner {
  width: 1600px;
  margin: 0 auto;
}

.inquiry-page {
  padding: 200px 0 180px;
}

.inquiry-title {
  margin-bottom: 120px;
}

.inquiry-title h1 {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.inquiry-title p {
  width: 620px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.01em;
}

.inquiry-card-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.inquiry-card {
  width: 343px;
  height: 500px;
  border-radius: 16px;
  background: #f5f6f8;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 56px;
  text-align: center;
}

.inquiry-icon-box {
  width: 140px;
  height: 140px;
  margin-bottom: 40px;
  border-radius: 12px;
  background: #fff;

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

.inquiry-icon-box img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.inquiry-card h2 {
  margin-bottom: 24px;
  color: #111;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.inquiry-card p {
  margin-bottom: 36px;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.inquiry-card-btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: #1d1d1f;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  font-size: 16px;
  font-weight: 500;
}

.inquiry-card-btn span {
  font-size: 18px;
  line-height: 1;
}

.inquiry-card-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .inner {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }

  .inquiry-page {
    padding: 100px 0 100px;
  }

  .inquiry-title {
    margin-bottom: 32px;
  }

  .inquiry-title h1 {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .inquiry-title p {
    width: 100%;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #888888;
  }

  .inquiry-title p br {
    display: none;
  }

  .inquiry-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .inquiry-card {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    padding: 36px 12px;
  }

  .inquiry-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;

    margin-bottom: 24px;
    border-radius: 12px;
    background: #fff;

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

    flex-shrink: 0;
  }

  .inquiry-icon-box img {
    width: 30px;
    height: 30px;
  }

  .inquiry-card h2 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }

  .inquiry-card p {
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: #777;
  }

  .inquiry-card-btn {
    width: 100%;
    max-width: 126px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    gap: 6px;

    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  .inquiry-card-btn span {
    font-size: 15px;
    font-weight: 500;
  }
}
