.custom_container {
	max-width: 1351px;
	margin: 0 auto;
	width: 100%;
  padding: 0 30px;
}
.new-main {
    background: #fff;
    padding: 40px 0;
}
.custom_box {
	display: grid;
	gap: 20px;
	grid-template-columns: 70% 30%;
}
.custom_main {
	background: #fff;
	padding: 80px 0px 80px 0px;
}
.custom-post-grid h3 {
	font-size: 18px;
	letter-spacing: 0px;
	color: #151515;
	line-height: 28px;
	margin: 0px;
	font-family: 'Poppins', sans-serif;
}
.custom-post-grid .grid-item {
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,20%);
    padding: 30px 20px !important;
}
.archive .page-title,.search-results .page-title {
	color: #FFFFFF;
	font-family: "Poppins", Sans-serif;
	font-size: 90px;
	font-weight: 600;
	line-height: 44px;
}
.grid-item img {
	width: 100%;
    max-width: 300px;
}
.custom-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
}

.custom-blog-sidebar form {
    width: 100%;
}

.custom-blog-sidebar input,
.custom-blog-sidebar select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.custom-blog-sidebar select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='70,100 40,50 100,50' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

.pagination-wrapper {
	margin-top: 50px;
	text-align: center;
	justify-content: center;
    display: flex;
}
.custom-post-grid .btn-post a{
    background: #000;
  padding: 10px 20px;
  color: #fff;
  border: 1px solid #000;
}
.custom-post-grid .btn-post a:hover{background: #fff;color: #000;}
.custom-post-grid h3 a {
	color: #000;
}
.custom-post-grid p {
	font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}
.custom-post-grid {
    display: grid;
    gap: 20px;
}
.btn-post {
	padding-top: 20px;
}
.custom-post-grid .grid-item {
    border: 1px solid #ccc;
    padding: 15px;
    transition: box-shadow 0.3s;
}

.custom-post-grid .grid-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pagination-wrapper ul {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
}

.pagination-wrapper li a,
.pagination-wrapper li span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination-wrapper li span.current {
    background: #333;
    color: #fff;
    border-color: #333;
}
@media (max-width: 1024px) {
.archive .page-title, .search-results .page-title {
	font-size: 40px;
}
}
@media (max-width: 767px) {
    .custom_box {
        display: flex;
        flex-direction: column-reverse;
        padding: 0 20px;
    }
    .custom-blog-sidebar {
        width: 100%;
        max-width: unset;
    }
    .custom-post-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .custom-post-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}