/* container */
.page-wrap {
	max-width: 1300px;
	/* narrow center column like screenshot */
	margin: 36px auto;
}

/* Page title */
.news-title {
	font-size: 28px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1.1;
}

/* layout */
.main-row {
	gap: 32px;
}

.left-col {
	width: 75%;
}

.right-col {
	width: 25%;
}

/* article list */
.news-list .news-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 30px 0;
	border-bottom: 1px solid #E4E4E466; 
}

.news-list .thumb {
	width: 170px;
	height: 100px;
	border-radius: 6px;
	overflow: hidden;
	flex: 0 0 110px;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.news-list .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.news-list .meta {
	font-size: 14px;
	color: #d7a60c;
	margin-bottom: 6px;
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 600;
}

.news-list h3 {
	margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

.news-list p.excerpt {
	margin: 4px 0 0;
  font-size: 15px;
  color: #5f6469;
}

/* sidebar */
.sidebar .card {
	border-radius: 6px;
	border: 1px solid var(--divider);
	background: #f0f0f0;
	padding: 25px;
}

.popular-list .pop-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 20px 0px 20px;
	border-bottom: 1px solid #aca6a6;
}

.popular-list .pop-item:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.popular-list .pop-thumb {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0
}

.popular-list h5 {
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.1;
}

.popular-list small {
	color: var(--muted);
	font-size: 14px
}

/* pagination */
.pagination {
	justify-content: center;
	margin-top: 28px
}

.page-footer-cta {
	margin-top: 34px;
	border-top: 1px solid var(--divider);
	padding-top: 18px;
	text-align: center
}

/* breadcrumbs / small header row */
.top-label {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 8px
}

/* responsive */
@media (max-width:991px) {
	.page-wrap {
		padding: 0 18px;
		max-width: 100%
	}

	.left-col,
	.right-col {
		width: 100%
	}

	.main-row {
		flex-direction: column
	}

	.news-list .news-item {
		gap: 12px
	}

	.news-list .thumb {
		width: 120px;
		height: 76px
	}
}

.shadow-pagination .page-link {
    border: none;
    padding: 8px 14px;
    margin: 0 5px;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 600;
    color: #333;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    transition: 0.25s ease;
}

.shadow-pagination .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 12px rgba(0,0,0,0.15);
}

.shadow-pagination .active .page-link {
    background: #ffc107;
    color: #000;
}

.shadow-pagination .disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}
.popular-list .pop-thumb img {
	max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .card h5 {
	margin-bottom: 0 !important;
}
.sidebar .card h5 a {
	color: #000;
	text-decoration: none;
}
.news-list h3 a {
	color: #000;
	text-decoration: none;
}
.page-wrap {
	padding-bottom: 40px;
}



  /* Listing */
  .blog-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: 0.25s ease;
    margin-bottom: 26px;
  }
  .blog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  }

  .blog-item img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
  }

  .category {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: #d8a80e;
    margin-bottom: 8px;
  }

  .blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #121212;
  }
  .blog-title:hover {
    color: #d8a80e;
  }

  .meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
  }

  .excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  }

  a.blog-link {
    text-decoration: none;
    color: inherit;
  }

  /* Sidebar */
  .sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .side-blog {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
  }

  .side-blog img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
  }

  .side-blog-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
  }

  .side-blog-title:hover { 
    color: #d8a80e;
  }
  .page-title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
  }