@charset "utf-8";

/* 왜 파스칼인가 — Tailwind로 처리 어려운 공통 요소 */
.content-why-wrap {
  background-color: #ffffff;
}

.why-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .why-section-head {
    margin-bottom: 5rem;
  }
}

.why-text {
  font-family: "Optima", "Optima Medium", sans-serif;
}

.why-num {
  position: relative;
  padding-top: 5px;
  line-height: 1.2;
}

.why-num::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0033ff;
}

.why-sec1-visual {
  min-height: 200px;
}

.why-sec1-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--sec1-bg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .why-sec1-wrapper::before {
    background-size: 70% auto;
    opacity: 0.35;
  }

  .why-sec1-visual .relative.z-10 {
    margin-left: auto;
    margin-right: auto;
  }
}
