section.sub-headline h1 {
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  section.sub-headline h1 {
    max-width: 100%;
  }
}
section.sub-headline p {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.5;
  margin: 20px 0 0;
}
@media screen and (max-width: 1680px) {
  section.sub-headline p {
    font-size: 21px;
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 1366px) {
  section.sub-headline p {
    font-size: 18px;
    margin: 12px 0 0;
  }
}
section.blog-list {
  margin-bottom: 150px;
}
@media screen and (max-width: 560px) {
  section.blog-list {
    margin-top: 30px;
  }
}
section.blog-list .container {
  display: flex;
  flex-direction: column;
}
section.blog-list .detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem 2rem;
}
@media screen and (max-width: 1024px) {
  section.blog-list .detail {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  section.blog-list .detail {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
}
section.blog-list .detail .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: 0.2s;
}
section.blog-list .detail .item .img-area {
  height: 225px;
  width: 100%;
  overflow: hidden;
  transform: rotateX(15deg) rotateY(15deg);
  transform-style: preserve-3d;
  border-radius: 30px;
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  section.blog-list .detail .item .img-area {
    transform: rotateX(14deg) rotateY(14deg);
  }
}
section.blog-list .detail .item .img-area img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
section.blog-list .detail .item .img-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
  opacity: 0.2;
  z-index: 2;
}
section.blog-list .detail .item p {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.5;
  margin: 24px 0 0;
}
@media screen and (max-width: 1680px) {
  section.blog-list .detail .item p {
    font-size: 21px;
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 1366px) {
  section.blog-list .detail .item p {
    font-size: 18px;
    margin: 12px 0 0;
  }
}
@media screen and (max-width: 560px) {
  section.blog-list .detail .item p {
    padding-left: 16px;
  }
}
section.blog-list .detail .item h4 {
  margin: 8px 0 0;
}
@media screen and (max-width: 1366px) {
  section.blog-list .detail .item h4 {
    margin: 4px 0 0;
  }
}
@media screen and (max-width: 560px) {
  section.blog-list .detail .item h4 {
    padding-left: 16px;
    margin-bottom: 24px;
  }
}
section.blog-list .detail .item:hover .img-area img {
  transform: scale(1.2);
}
section.blogs:before {
  display: none;
}
section.blog-detail {
  text-align: left;
}
section.blog-detail p {
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: 500;
  opacity: 0.75;
}
@media screen and (max-width: 1680px) {
  section.blog-detail p {
    font-size: 21px;
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 1366px) {
  section.blog-detail p {
    font-size: 18px;
    margin: 12px 0 0;
  }
}
section.blog-detail img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  border-radius: 20px;
}
@media screen and (max-width: 1366px) {
  section.blog-detail img {
    margin: 12px 0 0;
  }
}