.post-container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.post-container.content {
  max-width: 900px;
}

.post-container.post-not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-header {
	margin-bottom: 2rem;
}

.post-title {
  font-family: 'Roboto';
}

.post-header .post-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #111827;
}

.post-card .post-title {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	overflow: hidden;
  display: -webkit-box;
  --list-title-line-clamp: 3;
	max-height: calc(var(--list-title-line-clamp) * 1.8rem);
  line-clamp: var(--list-title-line-clamp);
  -webkit-line-clamp: var(--list-title-line-clamp);
  -webkit-box-orient: vertical;
	text-overflow: ellipsis;
	margin-bottom: 8px;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	margin-bottom: 1rem;
  font-size: 1rem;
	color: #6b7280;
}

.post-author {
	font-weight: 600;
}

.post-image-container {
	margin: 2rem 0;
	position: relative;
	width: 100%;
	aspect-ratio: 1.5;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-image-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(17px);
	transform: scale(1.2);
	z-index: 1;
	opacity: 0.5;
}

.post-image-container .post-image {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.post-card .post-image-container {
  width: 400px;
  height: 250px;
  overflow: hidden;
  margin: 0;
}

.post-card .post-image {
  width: 400px;
  height: 250px;
}

.post-card .post-image {
  object-position: center;
  object-fit: scale-down;
}

.post-content {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #374151;
}

.post-content p {
	margin-bottom: 1.5rem;
}

.post-content h1,
.post-content h2 {
	font-weight: 700;
	margin: 2rem 0 1rem;
}

.post-content h1 {
  font-size: 2.25rem;
  margin: 2rem 0 1rem;
}

.post-content h2 {
	font-size: 1.5rem;
}

.post-card .post-info {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grow.container {
	flex-grow: 1;
}

.breadcrumbs {
	font-size: 16px;
	margin-bottom: 2rem;
}

.page-header {
	padding: 1rem 0;
	max-height: 3.5rem;
}

.page-header.sticky {
	position: sticky;
	top: 65px;
	z-index: 40;
}

.page-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	border-left: 4px solid #f85c70;
	/* 0056b3 */
	/* border-right: 4px solid #f85c70; */
	padding-left: 1rem;
	/* 003366 */
	color: #f85c70;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
  align-items: center;
}

.post-card {
	display: flex;
	background-color: #fff;
	margin-bottom: 20px;
  width: 100%;
	max-width: 1024px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.post-card:hover {
	box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
}

.news-thumbnail {
	width: 400px;
	height: 250px;
	object-fit: cover;
	flex-shrink: 0;
}

.news-content {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.news-title {
	font-size: 1.8rem;
	margin: 0 0 0.5rem;
	color: #003366;
}

.news-meta {
	font-size: 0.9rem;
	color: #555;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.post-tags {
	color: #0056b3;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.post-tag {
	display: inline-block;
	background-color: var(--slate-200);
	color: var(--slate-700);
	font-size: 0.8rem;
	font-weight: 500;
	padding: 0.25rem 0.75rem;
	border-radius: 0.25rem;
	transition: filter 0.2s ease;
}

.post-tag:hover {
	filter: brightness(0.85);
}

.post-tag.post-author {
	color: var(--blue-400);
}

.post-tag.tag-1 {
	background-color: var(--blue-400);
	color: var(--slate-50);
}

.post-tag.tag-2 {
	background-color: var(--green-500);
	color: var(--slate-50);
}

.post-tag.tag-4 {
	background-color: #ff6b6b;
	color: var(--slate-50);
}

.post-tag.tag-5 {
	background-color: #ff9d73;
	color: var(--slate-50);
}

.post-tag.tag-6 {
	background-color: #7eedea;
	color: var(--slate-50);
}

.post-date {
	color: #6b7280;
	white-space: nowrap;
	align-self: flex-end;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
}

.post-header .post-date {
  padding: 0 0 0 0.75rem;
  border-left: 3px solid #ddd;
}

.post-card .post-info > a {
  color: #3168ac;
}

.post-card .post-info > a:hover {
  color: #71b0ff;
}

.post-card .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-not-found {
  font-size: 1.25rem;
  color: var(--slate-500);
  text-align: center;
}

.btn-clear-filter {
  margin-right: 1rem;
  padding: .5rem;
  color: var(--blue-400) !important;
}

hr {
  background: #dedede;
  border: 0;
  height: 4px;
  margin: 15px 0;
}

.post-not-found #using_filter {
  font-size: initial;
  position: absolute;
  top: 20px;
  color: #000 !important;
}

@media (max-width: 900px) {
  .post-card .post-image {
    width: 100%;
    max-width: unset;
    height: 100%;
  }

	.post-card .post-image-container {
		width: 100%;
	}

	.post-image-container {
		border-radius: 0.25rem;
	}

	.post-card {
		flex-direction: column;
		max-width: 100%;
	}

	.post-image {
		width: 100%;
		height: auto;
		aspect-ratio: 400 / 250;
	}

	.post-content {
		padding: 12px;
	}

	.post-footer {
		align-items: flex-start;
		gap: 8px;
	}

	.post-container {
		padding: 1.5rem 1rem;
	}

  .post-card .post-title {
    --list-title-line-clamp: 4;
		font-size: 1.25rem;
		margin-bottom: 1rem;
  }

	.post-meta {
    justify-content: space-between;
		gap: 0.5rem;
    font-size: 0.875rem;
	}

	.post-content {
		font-size: 1rem;
	}

  .post-card .post-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .post-header .post-date {
    border-left: none;
  }
}

@media (max-width: 480px) {
	.post-title {
		font-size: 1.5rem;
	}

	.post-content h2 {
		font-size: 1.25rem;
	}
}