@charset "UTF-8";
/**
 * CERTIFICATE PAGE SCSS
 * 특허/인증서 페이지
 */
/* ========================================
   Sub Tabs (탭메뉴)
   ======================================== */
.sub-tabs {
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #e1e1e4;
}
.sub-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .sub-tabs-inner {
    overflow-x: auto;
    gap: 0.125rem;
  }
  .sub-tabs-inner::-webkit-scrollbar {
    display: none;
  }
}

.sub-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  color: #505050;
  text-decoration: none;
  border: 0;
  border-bottom: 0.125rem solid transparent;
  height: 100%;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.sub-tab-item:hover {
  color: #367cfe;
}
.sub-tab-item.active {
  color: #367cfe;
  font-weight: 700;
  border-bottom-color: #367cfe;
}
@media only screen and (max-width: 767px) {
  .sub-tab-item {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

/* ========================================
   Page Section
   ======================================== */
.page-section {
  padding: 5rem 0 10rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .page-section {
    padding: 3.75rem 0 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .page-section {
    padding: 2.5rem 0 5rem;
  }
}

.page-title-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .page-title-area {
    margin-bottom: 1.875rem;
  }
}

.title-icon {
  display: inline-flex;
  position: relative;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.title-icon img {
  width: 2.113rem;
  height: 2.113rem;
  display: block;
}
.title-icon img:first-child {
  position: relative;
  z-index: 1;
}
.title-icon-rotate {
  position: absolute;
  left: 0.41125rem;
  top: 0.38688rem;
  transform: rotate(180deg);
  z-index: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .title-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .title-icon img {
    width: 1.75rem;
    height: 1.75rem;
  }
  .title-icon-rotate {
    left: 0.3125rem;
    top: 0.3125rem;
  }
}
@media only screen and (max-width: 767px) {
  .title-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .title-icon img {
    width: 1.375rem;
    height: 1.375rem;
  }
  .title-icon-rotate {
    left: 0.25rem;
    top: 0.25rem;
  }
}

.page-title {
  font-family: "Pretendard", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .page-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   Certificate Content
   ======================================== */
.certificate-page {
  /* 페이징 */
}
.certificate-page .certificate-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .certificate-page .certificate-content {
    gap: 1.875rem;
  }
}
.certificate-page .certificate-count {
  display: flex;
  gap: 0.125rem;
  align-items: center;
  font-family: "Noto Sans CJK KR", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: -0.0234rem;
  color: #505050;
  width: 100%;
}
.certificate-page .certificate-count .count-number {
  color: #367cfe;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .certificate-page .certificate-count {
    font-size: 0.875rem;
  }
}
.certificate-page .certificate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  width: 100%;
  justify-content: flex-start;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .certificate-page .certificate-grid {
    gap: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .certificate-page .certificate-grid {
    gap: 1.25rem;
  }
}
.certificate-page .certificate-item {
  width: calc((100% - 7.5rem) / 4);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 0.0625rem solid #ebedef;
  border-radius: 1.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .certificate-page .certificate-item {
    width: calc((100% - 3.75rem) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .certificate-page .certificate-item {
    width: calc((100% - 1.25rem) / 2);
    padding: 0.75rem;
  }
}
.certificate-page .certificate-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
}
.certificate-page .certificate-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.certificate-page .certificate-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
}
.certificate-page .certificate-title {
  width: 100%;
  padding: 0.625rem;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.125rem);
          backdrop-filter: blur(0.125rem);
  border-radius: 0.5rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  color: #111111;
}
@media only screen and (max-width: 767px) {
  .certificate-page .certificate-title {
    font-size: 0.875rem;
  }
}
.certificate-page .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.625rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 7.0625rem;
}
.certificate-page .pagination ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.certificate-page .pagination li {
  margin: 0;
}
.certificate-page .pagination a,
.certificate-page .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #505050;
  text-decoration: none;
  border: 0;
  border-bottom: 0.125rem solid transparent;
  transition: all 0.3s ease;
}
.certificate-page .pagination a svg,
.certificate-page .pagination span svg {
  width: 2.5rem;
  height: 2.5rem;
}
.certificate-page .pagination a:hover,
.certificate-page .pagination span:hover {
  color: #367cfe;
}
.certificate-page .pagination .current {
  color: #367cfe;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
@media only screen and (max-width: 767px) {
  .certificate-page .pagination {
    padding: 0.375rem 0.5rem;
  }
  .certificate-page .pagination a,
  .certificate-page .pagination span {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
  .certificate-page .pagination a svg,
  .certificate-page .pagination span svg {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.certificate-page .no-content {
  width: 100%;
  text-align: center;
  padding: 3.75rem 1.25rem;
  font-size: 1rem;
  color: #767676;
}
@media only screen and (max-width: 767px) {
  .certificate-page .no-content {
    padding: 2.5rem 1.25rem;
    font-size: 0.875rem;
  }
}