.page-head {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1400/700;
}

.page-head-bg {
  position: relative;
  margin: 8px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1400/700;
}
.page-head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-head-bg:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-head-content {
  position: absolute;
  color: white;
  bottom: 120px;
  left: 100px;
  right: 32px;
  max-width: 900px;
}
.page-head-content .h2 {
  margin-bottom: 24px;
}

@media (max-width: 1400px) {
  .page-head-content {
    left: 80px;
    bottom: 80px;
  }
}
@media (max-width: 1100px) {
  .page-head-content {
    left: 80px;
    bottom: 80px;
  }
  .page-head-content .h2 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .page-head, .page-head-bg {
    aspect-ratio: 1;
  }
  .page-head-content {
    left: 16px;
    right: 16px;
    bottom: 48px;
  }
  .page-head-content .h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .post-subtitle {
    font-size: 14px;
  }
  .page-head-bg {
    margin: 0;
    border-radius: 0;
  }
}
.post-body {
  max-width: 960px;
  margin: 120px auto 80px;
  padding: 0 32px;
}

.post-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.breadcrumbs-list {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: Medium;
}
.breadcrumbs-list svg {
  fill: #212530;
  width: 5px;
  height: 9px;
}
.breadcrumbs-list li {
  color: #7A7C83;
}
.breadcrumbs-list li:first-child a {
  text-decoration: none;
  color: #7A7C83;
  transition: ease 0.3s;
}
.breadcrumbs-list li:first-child a:visited {
  color: #7A7C83;
}
.breadcrumbs-list li:first-child a:hover {
  color: #1582E7;
}

.post-info {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #64666E;
  font-size: 14px;
}

.divider {
  width: 1.5px;
  height: 14px;
  border-radius: 2px;
  background-color: #64666E;
}

.ck-post h2 {
  font-size: 42px;
  font-family: Semi;
  line-height: 1.3;
  margin: 56px 0 24px;
}
.ck-post h3 {
  font-size: 32px;
  font-family: Semi;
  line-height: 1.5;
  margin: 48px 0 16px;
}
.ck-post h4 {
  font-size: 24px;
  font-family: Semi;
  line-height: 1.3;
  margin: 36px 0 16px;
}
.ck-post p {
  margin-bottom: 12px;
  color: #64666E;
  line-height: 1.5;
}
.ck-post p strong {
  color: #4D5159;
  font-family: Semi;
}

.image {
  margin: 56px 0;
}
.image img {
  width: 100%;
  height: auto;
  aspect-ratio: unset !important;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

blockquote {
  border-left: 2px solid #1582E7;
  padding-left: 24px;
  margin: 24px 0;
}
blockquote p {
  font-style: italic;
  line-height: 1.5;
  font-family: Medium;
  color: #64666E;
}

@media (max-width: 768px) {
  .post-body {
    padding: 0 16px;
    margin: 48px 0 32px;
  }
  .breadcrumbs-nav {
    display: none;
  }
  .post-head {
    margin-bottom: 16px;
  }
  .ck-post p {
    margin-bottom: 8px;
  }
  .ck-post p strong {
    font-family: Medium;
  }
  .ck-post h2 {
    font-size: 24px;
    margin: 32px 0 16px;
  }
  .ck-post h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }
  .ck-post h4 {
    font-size: 18px;
    margin: 24px 0 10px;
  }
  blockquote {
    padding-left: 12px;
  }
  .image {
    margin: 24px 0;
  }
}
.posts-wrap {
  margin: 120px 0 80px;
}

.page-header {
  max-width: 800px;
  padding: 0 16px;
  text-align: center;
  margin: 0 auto 64px;
}
.page-header .h3 {
  margin-bottom: 24px;
}
.page-header .blog-text {
  line-height: 1.5;
  font-family: Medium;
  color: #7A7C83;
}

.posts {
  display: flex;
  gap: 32px;
  row-gap: 64px;
  flex-wrap: wrap;
}

.post-item {
  flex: 1 1 31%;
  border-bottom: 1px solid #E9E9EA;
  max-width: 384px;
  text-decoration: none;
  color: #2C303A;
}
.post-item:visited {
  color: #2C303A;
}
.post-item .post-img {
  display: flex;
  width: 100%;
  aspect-ratio: 392/260;
  border-radius: 8px;
  overflow: hidden;
}
.post-item .post-img img {
  transition: ease 0.3s;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.post-item:hover img {
  transform: scale(1.05);
}

.post-title {
  font-size: 20px;
  font-family: Semi;
  line-height: 1.7;
  margin: 20px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-excerpt {
  font-family: Medium;
  color: #7A7C83;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-more {
  margin: 64px auto 80px;
}

@media (max-width: 1100px) {
  .post-item {
    flex: 1 1 48%;
  }
}
@media (max-width: 768px) {
  .posts-wrap {
    margin: 32px 16px 48px;
  }
  .page-header {
    margin: 0 0 24px;
  }
  .page-header .h3 {
    margin-bottom: 6px;
  }
  .page-header .blog-text {
    font-size: 14px;
  }
  .posts {
    padding: 0;
    row-gap: 24px;
  }
  .post-title {
    margin: 12px 0 6px;
    line-height: 1.5;
    font-size: 16px;
  }
  .post-excerpt {
    font-size: 14px;
  }
  .show-more {
    margin: 24px 0 48px;
  }
}
.read-article-brand {
  margin-top: 48px;
}

@media (max-width: 768px) {
  .read-article-brand {
    margin-top: 24px;
  }
}