/* Post News template styles */
.post-news {
  padding: 30px 0;
  background: #dde3ec;
}

.post-news .container {
	width: min(960px, 92vw);
	--pad: clamp(16px, 3vw, 28px);
}

.post-news .breadcrumbs {
	margin-bottom: 20px;
}

.post-news__article {
    margin-inline: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.post-news__header {
  margin-bottom: 24px;
}

.post-news__title {
  margin: 0 0 8px;
  line-height: 1.15;
}

.post-news__meta {
  display: inline-block;
  font-size: 0.95rem;
  opacity: 0.7;
}

.post-news__featured {
  margin: clamp(12px, 3vw, 24px) 0;
}

.post-news__thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.post-news__content {
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
}

.post-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.post-news__terms {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-news__term {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.post-news__term:hover {
  transform: translateY(-1px);
  background: rgba(0,0,0,.04);
}

.post-news__nav {
  margin-top: clamp(28px, 5vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 16px;
}

.post-news__nav a {
  text-decoration: none;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    row-gap: 0;
    color: rgba(0,0,0,0.5);
}

.breadcrumbs li {
    color: rgba(0,0,0,0.5);
}

.breadcrumbs a {
    color: #1d1d1d;
}

@media only screen and (max-width: 767px) {
    .breadcrumbs ol {
        justify-content: flex-start;
    }
}
