html {
  scroll-behavior: auto;
}
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--borderColor);
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    box-shadow: 0px 2px 30px #f4f6f8;
}
.button.load-more {
	background: var(--primary) !important;
	color: #fff !important;
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 10px 20px;
}
.news-header h1 {
	margin: 0;
    font-size: 25px;
	font-weight: bold;
}
.news-header svg {
    cursor: pointer;
}
.last-news {
	position: relative;
	z-index: 0;
	width: 100%;
	display: flex;
	overflow:hidden;
	border-radius:20px;
}
.last-news .post-thumbnail , .image-wrapper .post-thumbnail {
    width: 100%;
    border-radius: 20px;
    transition: 0.3s;
}
.image-wrapper .post-thumbnail {
	height: 100px;
	object-fit: cover;
}
.last-news .post-thumbnail {
	max-height: 380px;
	object-fit: cover;
}
.last-news .post-title {
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 46.8%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}
.last-news .post-title h2 {
    color: var(--textColorWhite);
	margin: 0;
	font-size: 24px;
}
.last-news:hover .post-thumbnail , .news-item:hover .post-thumbnail {
    opacity: 0.84;
}
.news-item {
    display: grid;
    grid-template-columns: 150px auto;
    gap: 10px;
    border-bottom: 1px solid var(--borderColor);
    padding: 15px;
}
.image-wrapper {
	display: flex;
	width: 150px;
	height: 100px;
	border:1px solid var(--borderColor);
	overflow:hidden;
	border-radius:20px;
}
.detail-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-detail {
    text-align: left;
    color: var(--detailColor);
    font-size: 12px;
    font-weight: bold;
}
.post-title {
    font-weight: bold;
}
.pagination {
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    margin: 0;
    position: relative;
    border-bottom:1px solid var(--borderColor);
}
.navigation-button .active-button svg path {
	stroke: #fff;
}
span.page-numbers.current {
    color: var(--primary);
}
.page-numbers.next , .page-numbers.prev {
	display: none;
}
a.page-numbers {
    color: #b9c5cd;
}
.navigation-button {
	display: flex;
	align-items: center;
	gap: 10px;
}
.navigation-button a {
    background: var(--primary);
    color: var(--textColorWhite);
    border-radius: 5px;
    padding: 5px 7px;
    display: flex;
}
.active-button svg path {
	stroke: var(--textColorWhite);
}
.disable-button {
    background: #d5dce1 !important;
}
.news-header .default-avatar, .news-header .logo-wrapper {
	display: none;
}
.header-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 15px;
}
.news-header .default-avatar {
	width: 30px;
	height: 30px;
	justify-self: end;
	padding:5px;
}
.logo-wrapper {
	align-items: center;
	gap: 10px;
	font-weight: bold;
	font-size: 22px;
}
.logo-wrapper img {
	width: 50px;
}
.post-thumbnail.cover-post {
	height: 400px;
	filter: blur(5px);
}
.image-wrapper .cover-post {
	height: unset !important;
}
.not-loaded {
    min-height:600px;
}
.hide {
    display:none;
}
.dot-buttons {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #d5dce1;
}
.dot-buttons .page-dots {
	cursor: pointer;
}
.dot-buttons .page-dots.current-dot {
	color: var(--primary) !important;
}
.header .user-profile {
	width: 100%;
	display: none;
	align-items: center;
	justify-content: end;
}
.header .user-profile .profile-image {
	width:40px;
	height:40px;
	border-radius:50%;
}
.header-actions {
	display: flex;
	gap: 10px;
}
.option-toggle {
	display: flex;
	position: relative;
	margin-left: 24px;
	cursor: pointer;
}
.option-toggle .option-icon {
    opacity: 0;
	position: absolute;
	transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
}
.option-toggle .option-icon.active {
    opacity: 1;
}
.option-icon.moon.inactive {
  opacity: 0;
  transform: rotate(-180deg);
}
.option-icon.sun.inactive {
  opacity: 0;
  transform: rotate(180deg);
}
.pagination.center {
    justify-content: center;
}
.page-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-numbers .load-more-button {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 14px;
}