.blog-title1 {
  line-height: 60px;
  letter-spacing: -1px;
  color: #131313;
  font-size: 60px;
  font-weight: 700;
}

.blog-title2 {
  line-height: 32px;
  letter-spacing: -0.5px;
  color: #131313;
  font-size: 24px;
  font-weight: 700;
}


.blog-hero-section {
  margin-top: 120px;
  padding: 100px 0;
  background-color: #fff;
}

.blog-hero-section .blog-description {
  margin-top: 16px;
  line-height: 32px;
  letter-spacing: -1px;
  color: #666;
  font-size: 24px;
  font-weight: 600;
}

.blogs-body-section {
  padding: 0 0 100px;
  background-color: #fff;
}

.blogs-body-section .blogs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blogs-body-section .blog-link {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 32px;
}

.blogs-body-section .blog-txt-box {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.blogs-body-section .blog-img-box {
  overflow: hidden;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.blogs-body-section .blog-img-box img {
  width: 100%;
  transform: scale(1.01);
  transition: all ease 0.3s;
}

.blogs-body-section .blog-category {
  line-height: 22px;
  color: #999;
  font-size: 16px;
  font-weight: 700;
}

.blogs-body-section .blog-top-txt {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.blogs-body-section .blog-title2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blogs-body-section .blog-date {
  line-height: 22px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.blogs-body-section .new-window {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}

.blogs-body-section .new-window span {
  display: inline-block;
  padding-right: 18px;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  background: url('/new/images/mkt/blog/bg-new-window.png') no-repeat center right;
}

.blogs-body-section .blog-link:hover .new-window {
  opacity: 1;
  visibility: visible;
}

.blogs-body-section .blog-link:hover .blog-img-box img {
  transform: scale(1.1);
}

.blogs-body-section .btn-wrap {
  margin-top: 40px;
}

.blogs-body-section .blogs-list .blogs-item {
  display: none;
}

@media (max-width: 1024px) {
  .blog-hero-section {
    margin-top: 76px;
    padding: 50px 0;
  }

  .blogs-body-section {
    padding-bottom: 50px;
  }

  .blogs-body-section .blogs-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 801px) {
  .blogs-body-section .blog-link {
    flex-flow: column-reverse;
    width: 100%;
    max-width: 340px;
    margin: auto;
    padding: 0;
  }

  .blogs-body-section .blog-img-box {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    aspect-ratio: 3 / 2;
  }

  .blogs-body-section .blog-img-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .blogs-body-section .blog-link:hover  .blog-img-box img {
    transform: scale(1) translate(-50%, -50%);
  }

  .blogs-body-section .blog-txt-box {
    padding: 0 16px 16px;
    gap: 16px;
  }

  .blogs-body-section .blog-title2 {
    line-height: 24px;
    font-size: 18px;
  }

  .blogs-body-section .new-window {
    opacity: 1;
    visibility: visible;
  }
}