@charset "utf-8";

.article-list .inner {
  padding: 120px 0 153px;
  display: flex;
  gap: 5%;
  justify-content: space-between;
}

.article-list .cate-list,
.article-list .cate-list .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-list .cate-list > a {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
  color: #000;
  padding-left: 30px;
  transition: 0.4s ease;
  position: relative;
}

.article-list .cate-list .webgene-item {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
  color: #000;
  transition: 0.4s ease;
}

.article-list .cate-list .webgene-item a {
  padding-left: 30px;
  position: relative;
  display: block;
}
.article-list .cate-list > a:hover::before,
.article-list .cate-list .webgene-item a:hover::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.article-main {
  max-width: 1045px;
  width: 78%;
}
.article-main .webgene-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 80px;
}

.article-main .webgene-item {
  max-width: 295px;
  width: 100%;
}

.article-main .webgene-item .element {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-main .webgene-item .element .date .date-month,
.article-main .webgene-item .element .date .date-separate {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.212rem + 1.23vw, 2.688rem);
  color: #000;
}

.article-main .webgene-item .element .date .date-day {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.958rem + 0.71vw, 1.813rem);
  color: #000;
}

.article-main .webgene-item .element .cate {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  text-align: right;
  color: #000;
}

.article-main .webgene-item .thumimg {
  aspect-ratio: 295/264;
  overflow: hidden;
}

.article-main .webgene-item .thumimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--default);
}

.article-main .webgene-item .ItemTit {
  font-weight: 400;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: #000;
}

.article-main .webgene-item .webgene-item:hover .thumimg img {
  transform: scale(1.2);
}

.webgene-pagination {
  grid-column: 1/4;
}

.webgene-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.webgene-pagination ul .number a {
  font-family: var(--font-notosans);
  font-weight: 500;
  font-size: clamp(1.375rem, 1.223rem + 0.65vw, 2rem);

  opacity: 50%;
  transition: var(--default);
}

.webgene-pagination ul .number.selected a {
  color: #000;
  opacity: 1;
}

.article-detail {
  max-width: 795px;
  width: 60%;
  margin: 0 auto;
}

.article-detail .inner {
  padding: 120px 0 160px;
}

.article-detail .blogItemText {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.article-detail .column {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-detail .column .date {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.625rem, 0.564rem + 0.26vw, 0.875rem);
  color: #000;
}

.article-detail .column .cate {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.625rem, 0.564rem + 0.26vw, 0.875rem);
  color: #000;
}

.article-detail .blogDetailImg {
  margin-bottom: 60px;
}

.article-detail .inTit01 {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  line-height: calc(20 / 30);
  color: #000;
}

.article-detail .txt01 {
  font-family: var(--font-notosans);
  font-weight: 500;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  color: #000;
  padding-bottom: 40px;
  border-bottom: 1px solid #afafaf;
  margin-bottom: 40px;
}

.article-detail .morebtn a {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  color: #000;
}

@media (max-width: 1200px) {
  .article-list .inner {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .article-list .inner {
    width: 90%;
  }

  .article-main .webgene-blog {
    grid-template-columns: repeat(2, 1fr);
  }

  .webgene-pagination {
    grid-column: 1/3;
  }

  .article-list .cate-list,
  .article-list .cate-list .webgene-blog {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .article-list .inner {
    flex-direction: column;
    gap: 55px;
  }

  .article-main {
    margin: 0 auto;
    width: 70%;
  }

  .article-detail {
    width: 80%;
    max-width: none;
  }

  .article-main .webgene-item {
    max-width: none;
  }

  .article-detail .inner,
  .article-list .inner {
    padding: 80px 0;
    width: 90%;
  }

  .article-list .cate-list > a:hover::before,
  .article-list .cate-list .webgene-item a:hover::before {
    width: 5px;
    height: 5px;
  }

  .article-list .cate-list .webgene-item a,
  .article-list .cate-list > a {
    padding-left: 20px;
  }

  .article-main .webgene-blog {
    grid-template-columns: repeat(1, 1fr);
  }

  .webgene-pagination {
    grid-column: 1/2;
  }
}
