.detail-news-card {
	background-color: var(--bg-white);
	border-radius: 14px;
}

.detail-news-card .detail-news-card-body {
	padding: 24px 26px;
}

.detail-news-card .listing-card {
	margin: 14px 0px;
	cursor: pointer;
}

.detail-news-card .image-listing {
	width: 100%;
	height: 200px;
}

.detail-news-card-title {
	margin: 14px 0px;
}

.info-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
}

.info-wrapper .detail-news-card-date h6 {
	color: #777777;
	font-size: 14px;
}

.detail-news-card-info {
	padding: 12px;
}

.info-wrapper .detail-news-created h6 {
	color: #777777;
	font-size: 14px;
}

.detail-news-card-title h6 {
	color: var(--text-black);
}

.detail-news-card .image-listing img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.listing-card-title h5 {
	color: var(--text-black);
	padding-bottom: 12px;
}

.detail-news-card-body p {
	color: #666666;
	margin-bottom: 14px;
}

.detail-news-image {
	height: 400px;
	width: 100%;
	border-radius: 12px;
}

.detail-news-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 12px;
}

.image-wrapper {
	margin: 24px 0px 24px 0px;
}

.image-title {
	color: #777777;
	margin-top: 14px;
}

.image-list-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-horizontal {
	height: 140px;
}

.image-vertical {
	height: 288px;
}

.image-normal {
	height: 140px;
}

.hashtag-list ol {
	padding: 20px 0px;
}

.hashtag-list li {
	display: block;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	width: fit-content;
}

.hashtag-list li:hover {
	color: var(--bs-danger);
	transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.detail-news-action {
	padding: 20px 0px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.button-share-wrapper {
	padding: 8px 24px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-share-wrapper h5 {
	margin: 0;
	font-size: 16px;
}

.button-share-wrapper svg {
	width: 12px;
	height: 12px;
	margin-right: 6px;
	position: relative;
	top: -1px;
}

.button-share-wrapper:hover {
	transition: 0.5s ease-in-out;
	background-color: var(--bg-gray);
}

.detail-news-banner {
	width: 100%;
	height: 50vh;
}

.detail-news-banner img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.detail-news-title {
	position: absolute;
	bottom: 40px;
	z-index: 10;
	left: 85px;
}

.detail-news-title h4 {
	font-size: 24px;
	font-weight: bold;
	color: var(--text-white);
	text-shadow: 3px 3px 8px black;
}

.banner-section {
	position: relative;
}

.detail-news-info {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.detail-news-info-date {
	padding: 10px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail-news-info-date svg {
	width: 12px;
	height: 12px;
	margin-right: 6px;
	position: relative;
	top: -1px;
}

.detail-news-info-date p {
	color: var(--text-black);
	margin-bottom: 0px;
}

.detail-news-info-category {
	padding: 10px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail-news-info-category p {
	color: var(--text-black);
	margin-bottom: 0px;
}

.detail-news-info-category svg {
	width: 14px;
	height: 14px;
	margin-right: 6px;
	position: relative;
	top: -1px;
}

.image-ads-wrapper {
	width: 100%;
	height: auto;
}

.image-ads-wrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.image-ads-top {
	padding-top: 60px;
	padding-bottom: 40px;
}

@media (max-width: 768px) {
	.banner-section {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.detail-news-banner {
		height: auto;
		padding-bottom: 10px;
	}

	.detail-news-banner img {
		width: 100%;
		height: auto;
	}

	.detail-news-title {
		left: 10px;
		right: 10px;
		text-align: center;
		position: static;
		/*margin-top: 10px;*/
	}

	.detail-news-title h4 {
		color: var(--text-black);
		text-shadow: none;
	}
}