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

.check {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.check__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-base);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .check__title {
    font-size: 1.1rem;
  }
}
.check__reason {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 2.5rem;
}
.check__reason ul {
  list-style: none;
  padding: 0;
}
.check__reason ul li {
  margin-bottom: 25px;
}
.check__reason ul li strong {
  display: block;
  font-size: 1.1rem;
  color: #333d4b;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}
.check__reason ul li strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #007aff;
  border-radius: 50%;
}
.check__reason ul li p {
  font-size: 15px;
  color: #6b7684;
  line-height: 1.6;
}
.check__reason ul li:last-child {
  margin-bottom: 0;
}
.check__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.check__wrap article {
  width: calc(33.33% - 11px);
  background: #fff;
  border: 1px solid #e5e8eb;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .check__wrap article {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .check__wrap article {
    width: 100%;
  }
}
.check__wrap article img {
  width: 45px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
}
.check__wrap article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333d4b;
  margin-bottom: 1rem;
}
.check__wrap article p {
  font-size: 0.9rem;
  color: #6b7684;
  line-height: 1.5;
  word-break: keep-all;
}
.check__wrap article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #007aff;
}
.check__tip {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .check__tip {
    flex-wrap: wrap;
  }
}
.check__tip .note {
  width: 100%;
  border-left: 4px solid #dee2e6;
  padding: 5px 0 5px 20px;
}
.check__tip .note h4 {
  font-weight: 700;
  color: #333d4b;
  margin-bottom: 0.5rem;
}
.check__tip .note p {
  font-size: 0.9rem;
  color: #6b7684;
  word-break: keep-all;
}