/*
Theme Name: artncraft
Template: astra
*/

/*======================================
GLOBAL
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.site{
    background:#fff;
	
}

.ac-blog-page{
    background:#fff;
	
	
}

.ac-container{
    width:100%;
    max-width:1600px;
    margin; 0 auto;
	padding:0 30px;
}


img{
    display:block;
    width:100%;
    height:auto;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}


body,
button,
input,
textarea,
select{
    font-family:'Lato', sans-serif;
}

html,
body{
    overflow-x:hidden;
}


/*======================================
HERO SECTION
======================================*/
.ac-hero-section{
    width: 105vw;
	max-width:105vw;
    margin-left: calc(50% - 50vw);
	margin-right:calc(50% - 50vw);

    height: 55vh;
    position: relative;
     background-image:url("https://artncraft.biz/blogs/wp-content/uploads/2026/07/1.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
	overflow:hidden;
	
}

.ac-hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
} 

.ac-hero-content{
	 width:100%;	
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.ac-hero-content h1{
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.ac-hero-content p{
    max-width:700px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#f8f8f8;
}

/*======================================
FEATURED SECTION
======================================*/

.ac-featured-section{
    padding:40px 0 80px;
	margin-top: 20px;
}

.ac-featured-wrapper{
    display:grid;
    grid-template-columns:1.7fr 1.3fr;
    gap:22px;
    align-items:start;
}

/*======================================
FEATURED LEFT
======================================*/

.ac-featured-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
	width: 100%;
}

.ac-featured-image{
    overflow:hidden;
}

.ac-featured-image img{
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.ac-featured-card:hover img{
    transform:scale(1.05);
}

.ac-featured-content{
    padding:24px;
}

.ac-post-meta{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    margin-bottom:18px;
    color:#777;
}

.ac-category a{
    color:#000;
    font-weight:600;
}

.ac-dot{
    color:#999;
}

.ac-featured-title{
    font-size:20px;
    line-height:1;
    margin-bottom:14px;
}

.ac-featured-title a{
    color:#222;
}

.ac-featured-title a:hover{
    color:#000;
}

.ac-featured-excerpt{
    color:#666;
	font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

/*======================================
FEATURED RIGHT
======================================*/

.ac-featured-right{
    display:flex;
    flex-direction:column;
    gap:24px;
	
}

.ac-small-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
	padding:20px;
}

.ac-small-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.ac-small-thumb{
    flex:0 0 110px;
    overflow:hidden;
}

.ac-small-thumb img{
    width:110px;
    height:90px;
    object-fit:cover;
    transition:.4s;
}

.ac-small-card:hover img{
    transform:scale(1.08);
}

.ac-small-content{
    padding:0px 14px 0px 0;
    flex:1;
}

.ac-small-content h3{
    font-size:16px;
    line-height:1.3;
    margin-bottom:0px;
}

.ac-small-content h3 a{
    color:#222;
}

.ac-small-content h3 a:hover{
    color:#000;
}

.ac-small-date{
    display:block;
    font-size:12px;
    color:#888;
}


/*======================================
LATEST ARTICLES
======================================*/

.ac-latest-section{
    padding:0px 0 90px;
}

.ac-section-heading{
    text-align:center;
    margin-bottom:40px;
}

.ac-section-heading h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.ac-section-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}


/*======================================
BLOG GRID
======================================*/

.ac-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}


/*======================================
BLOG CARD
======================================*/

.ac-blog-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.ac-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.ac-blog-image{
    overflow:hidden;
}

.ac-blog-image img{
    height:190px;
    object-fit:cover;
    transition:.4s;
}

.ac-blog-card:hover img{
    transform:scale(1.08);
}

.ac-blog-content{
    padding:16px;
}

.ac-blog-title{
    font-size:18px;
    line-height:1.4;
    margin:6px 0;
	display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:50px;
}

.ac-blog-title a{
    color:#222;
}

.ac-blog-title a:hover{
    color:#000;
}

.ac-blog-excerpt{
    color:#666;
    line-height:1.8;
    margin-bottom:14px;
	 display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


/*======================================
BUTTONS
======================================*/

.ac-read-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    color:#000;
    transition:.3s;
}

.ac-read-btn::after{
    content:"→";
    transition:.3s;
}

.ac-read-btn:hover{
    color:#000;
}

.ac-read-btn:hover::after{
    transform:translateX(6px);
}

.ac-load-more-wrap{
    text-align:center;
    margin-top:40px;
}

.ac-load-more-btn{
    background:#05233b;
    color:#fff;
    border:none;
    padding:16px 42px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.ac-load-more-btn:hover{
    background:#000;
}


/*======================================
NO POSTS
======================================*/

.ac-no-posts{
    text-align:center;
    padding:40px 20px;
    color:#777;
    font-size:18px;
}


/*======================================
SMOOTH TRANSITIONS
======================================*/

.ac-featured-card,
.ac-small-card,
.ac-blog-card,
.ac-load-more-btn,
.ac-read-btn,
.ac-featured-image img,
.ac-small-thumb img,
.ac-blog-image img{
    transition:all .35s ease;
}


/*======================================
RESPONSIVE
======================================*/


/* Laptop */

@media (max-width:1200px){

    .ac-container{
        max-width:95%;
    }

    .ac-featured-wrapper{
        gap:30px;
    }

    .ac-blog-grid{
        gap:25px;
    }

}


/* Tablet */

@media (max-width:992px){

    .ac-hero-section{
        padding:70px 0;
    }

    .ac-hero-content h1{
        font-size:40px;
    }

    .ac-featured-wrapper{
        grid-template-columns:1fr;
    }

    .ac-featured-image img{
        height:380px;
    }

    .ac-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* Mobile */


@media (max-width:768px){


    .ast-container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .ac-container{
        max-width:100%;
        padding:0;
    }

    .ac-hero-section{
        height:320px;
        min-height:320px;
        padding:0 15px;
    }
	
	.ac-hero-content{
	 width:80%;
    margin:auto;
    text-align:center;
}

    .ac-hero-content h1{
        font-size:30px;
        line-height:1.2;
        margin-bottom:12px;
    }

    .ac-hero-content p{
        font-size:15px;
        line-height:1.6;
    }

    .ac-featured-section{
        padding:30px 0 40px;
    }

    .ac-latest-section{
        padding:20px 0 50px;
    }

    .ac-featured-wrapper{
        grid-template-columns:1fr;
        gap:20px;
    }

    .ac-featured-image img{
        height:220px;
    }

    .ac-featured-content{
        padding:18px;
    }

    .ac-featured-title{
        font-size:22px;
        line-height:1.4;
    }

    /* Right Side Cards */

    .ac-featured-right{
        gap:15px;
    }

    .ac-small-card{
        flex-direction:row;
        align-items:center;
        gap:15px;
		height: 90px;
    }

    .ac-small-thumb{
        width:95px;
        min-width:95px;
        flex:0 0 95px;
    }

    .ac-small-thumb img{
        width:95px;
        height:80px;
        object-fit:cover;
    }

    .ac-small-content{
        padding:0;
    }

    .ac-small-content h3{
        font-size:15px;
        line-height:1.4;
    }

    .ac-small-date{
        font-size:12px;
    }

    /* Section Heading */

    .ac-section-heading{
        margin-bottom:30px;
    }

    .ac-section-heading h2{
        font-size:28px;
    }

    .ac-section-heading p{
        font-size:15px;
    }

    /* Latest Blog */

    .ac-blog-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .ac-blog-image img{
        height:220px;
    }

    .ac-blog-content{
        padding:18px;
    }

    .ac-blog-title{
        font-size:20px;
        line-height:1.4;
    }

    .ac-blog-excerpt{
        font-size:15px;
    }

    .ac-load-more-btn{
        width:100%;
    }

}

/* Small Mobile */

@media (max-width:576px){

    .ac-hero-section{
        padding:50px 0;
    }

    .ac-hero-content h1{
        font-size:30px;
    }

    .ac-featured-title{
        font-size:24px;
    }

    .ac-blog-title{
        font-size:22px;
    }

    .ac-featured-content,
    .ac-blog-content{
        padding:20px;
    }

    .ac-featured-image img{
        height:240px;
    }

    .ac-small-thumb img{
        height:180px;
    }

    .ac-blog-image img{
        height:200px;
    }

    .ac-load-more-btn{
        width:100%;
        padding:15px;
    }

}


/*
 * Single.php - CSS
 * */
  
/*==================================================
SINGLE BLOG PAGE
==================================================*/

.ast-container{
    max-width:1400px !important;
    width:100% !important;
    padding-left:30px !important;
    padding-right:30px !important;
}


/*======================================
HERO
======================================*/

.ac-single-hero{
    padding:25px 0 40px;
    background:#fff;
    text-align:left;
}

.ac-single-hero-content{
    max-width:1200px;
    
}

.ac-single-title{
    font-size:40px;
    line-height:1.3;
    color:#222;
    margin-top:15px;
    font-weight:700;
}


/*======================================
FEATURED IMAGE
======================================*/

.ac-single-featured-image{
    padding-bottom:10px;
	margin-top: 20px;
}

.ac-single-featured-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:14px;
    display:block;
}


/*======================================
MAIN LAYOUT
======================================*/

.ac-single-wrapper-section{
    padding-bottom:80px;
}

.ac-single-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}


/*======================================
CONTENT
======================================*/

.ac-single-content-area{
    min-width:0;
}

.ac-single-content{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.ac-single-content p{
    margin-bottom:22px;
}

.ac-single-content h2{
    font-size:34px;
    color:#222;
    margin:40px 0 20px;
}

.ac-single-content h3{
    font-size:28px;
    color:#222;
    margin:35px 0 18px;
}

.ac-single-content h4{
    font-size:22px;
    color:#222;
    margin:30px 0 15px;
}

.ac-single-content img{
    width:100%;
    height:auto;
    border-radius:12px;
    margin:30px 0;
}

.ac-single-content ul,
.ac-single-content ol{
    margin:20px 0 20px 25px;
}

.ac-single-content li{
    margin-bottom:10px;
}

.ac-single-content a{
    color:#000;
}

.ac-single-content a:hover{
    color:#000;
}

.ac-single-content blockquote{
    border-left:4px solid #0B7D6B;
    padding:20px 25px;
    margin:35px 0;
    background:#f7f7f7;
    font-style:italic;
    border-radius:6px;
}


/*======================================
AUTHOR
======================================*/


.author-box {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    margin: 30px 0;
    align-items: flex-start;
}

.author-avatar {
    flex: 0 0 120px;
    max-width: 120px;
}

.author-avatar img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.author-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
}

.author-position {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-top: -20px;
}

.author-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.author-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaeaea;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-social .social-icon i {
    font-size: 16px;
}

.author-social .social-icon:hover {
    background: #007cba;
    color: #fff;
}
/*======================================
TAGS
======================================*/

/* Tags Widget Styling */
.ac-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.ac-tag-item {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ac-tag-item:hover {
    background-color: #007cba;
    color: #fff;
    transform: scale(1.05);
}

.ac-no-tags {
    color: #999;
    font-style: italic;
    font-size: 14px;
}

/*======================================
SIDEBAR
======================================*/

.ac-single-sidebar{
    position:sticky;
    top:50px;
}

.ac-sidebar-widget{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.ac-widget-title{
    font-size:22px;
    margin-bottom:20px;
    color:#222;
}

/*======================================
SEARCH FORM
======================================*/

/*
.ac-sidebar-widget .search-form{
    display:flex;
    gap:10px;
}

.ac-sidebar-widget .search-field{
    width:100%;
    height:48px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.ac-sidebar-widget .search-field:focus{
    border-color:#0B7D6B;
}

.ac-sidebar-widget .search-submit{
    padding:0 22px;
    border:none;
    border-radius:8px;
    background:#0B7D6B;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
}

.ac-sidebar-widget .search-submit:hover{
    background:#095c4f;
}
*/

/*======================================
RECENT POSTS
======================================*/
/*
.ac-sidebar-post{
    display:flex;
    gap:15px;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.ac-sidebar-post:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.ac-sidebar-thumb{
    width:90px;
    min-width:90px;
    overflow:hidden;
    border-radius:8px;
}

.ac-sidebar-thumb img{
    width:90px;
    height:80px;
    object-fit:cover;
    transition:.35s;
}

.ac-sidebar-post:hover img{
    transform:scale(1.08);
}

.ac-sidebar-info{
    flex:1;
}

.ac-sidebar-info h4{
    font-size:16px;
    line-height:1.45;
    margin-bottom:6px;
}

.ac-sidebar-info h4 a{
    color:#222;
}

.ac-sidebar-info h4 a:hover{
    color:#000;
}

.ac-sidebar-info span{
    font-size:13px;
    color:#888;
}
*/

/*======================================
CATEGORY LIST
======================================*/

.ac-category-list{
    list-style:none;
    margin:0;
    padding:0;
}

.ac-category-list li{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.ac-category-list li:last-child{
    border-bottom:none;
}

.ac-category-list li a{
    color:#444;
}

.ac-category-list li a:hover{
    color:#000;
}


/*======================================
LATEST ARTICLES
======================================*/

.ac-sidebar-slider{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.ac-slider-item{
    border-radius:10px;
    overflow:hidden;
    background:#fafafa;
    transition:.3s;
}

.ac-slider-item:hover{
    transform:translateY(-4px);
}

.ac-slider-item img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.ac-slider-item h4{
    font-size:17px;
    line-height:1.45;
    padding:15px;
}

.ac-slider-item h4 a{
    color:#222;
}

.ac-slider-item h4 a:hover{
    color:#000;
}

/*======================================
PREVIOUS / NEXT POSTS
======================================*/

.ac-post-navigation{
    padding:0 0 80px;
}

.ac-post-nav{
    display:flex;
    gap:25px;
}

.ac-prev-post,
.ac-next-post{
    background:#fff;
    border-radius:12px;
    padding:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
	flex:1;
}

.ac-prev-post:hover,
.ac-next-post:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.ac-prev-post a,
.ac-next-post a{
    display:flex;
    color:#222;
    font-size:18px;
    line-height:1.5;
    font-weight:600;
	 align-items:center;
    gap:10px;
	
	white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ac-prev-post a:hover,
.ac-next-post a:hover{
    color:#000;
}

.ac-next-post{
    text-align:right;
}


.ac-next-post a{
    justify-content:flex-end;
}

.nav-title{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.nav-arrow{
    flex-shrink:0;
    font-size:20px;
}
/*======================================
RELATED POSTS
======================================*/

.ac-related-posts{
    padding:0 0 90px;
}


/*======================================
TABLE
======================================*/

.ac-single-content table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
}

.ac-single-content table th,
.ac-single-content table td{
    border:1px solid #ddd;
    padding:14px;
}

.ac-single-content table th{
    background:#f5f5f5;
}


/*======================================
CODE
======================================*/

.ac-single-content pre{
    background:#222;
    color:#fff;
    padding:20px;
    border-radius:8px;
    overflow:auto;
    margin:30px 0;
}

.ac-single-content code{
    background:#f3f3f3;
    padding:2px 6px;
    border-radius:4px;
}


/*======================================
IMAGE ALIGNMENTS
======================================*/

.ac-single-content .alignleft{
    float:left;
    margin:0 25px 20px 0;
}

.ac-single-content .alignright{
    float:right;
    margin:0 0 20px 25px;
}

.ac-single-content .aligncenter{
    display:block;
    margin:30px auto;
}


/*======================================
CAPTIONS
======================================*/

.wp-caption{
    max-width:100%;
    margin:30px auto;
}

.wp-caption img{
    margin:0;
}

.wp-caption-text{
    text-align:center;
    font-size:14px;
    color:#777;
    margin-top:10px;
}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

    .ac-single-wrapper{
        gap:30px;
    }

}


@media(max-width:992px){

    .ac-single-wrapper{
        grid-template-columns:1fr;
    }

    .ac-single-sidebar{
        position:static;
    }

    .ac-single-featured-image img{
        height:400px;
    }

    .ac-post-nav{
        grid-template-columns:1fr;
    }

}


@media(max-width:768px){

    .ac-single-hero{
        padding:50px 0 35px;
    }

    .ac-single-title{
        font-size:32px;
    }

    .ac-single-featured-image img{
        height:300px;
    }

    .ac-single-content{
        font-size:16px;
    }

    .ac-single-content h2{
        font-size:28px;
    }

    .ac-single-content h3{
        font-size:24px;
    }

    .ac-sidebar-widget{
        padding:20px;
    }
	
	 .ac-blog-grid{
        display:flex;
        overflow-x:auto;
        gap:18px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        padding-bottom:10px;
    }

    .ac-blog-grid::-webkit-scrollbar{
        display:none;
    }

    .ac-blog-card{
        min-width:85%;
        flex:0 0 85%;
        scroll-snap-align:start;
    }
	
	 .ac-post-nav{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;
		 margin-top: -50px;
		 margin-bottom: -40px;
    }

    .ac-prev-post,
    .ac-next-post{
        padding:0;
        background: transparent;
        box-shadow:none;
        border:none;
    }

    .ac-prev-post a,
    .ac-next-post a{
        display:flex;
        align-items:center;
        justify-content:center;
        height:46px;
        padding:0 16px;
        border:1px solid #ddd;
        border-radius:8px;
        background:#fff;
        font-size:15px;
        font-weight:600;
		 
		
		outline:none;
    -webkit-tap-highlight-color:transparent;
    user-select:none;
    }
	
	.ac-prev-post a:focus,
.ac-next-post a:focus,
.ac-prev-post a:active,
.ac-next-post a:active{
    outline:none;
    box-shadow:none;
}

    .ac-next-post{
        text-align:right;
    }
	
	.ac-author-box{

    flex-direction:column;

    text-align:center;

}
	
	  .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .author-avatar {
        flex: 0 0 100px;
        max-width: 100px;
        margin-bottom: 5px;
    }

    .author-info {
        width: 100%;
    }

    .author-social {
        justify-content: center;
    }

    .author-info h3 {
        font-size: 18px;
    }

    .author-position {
        font-size: 14px;
    }

    .author-bio {
        font-size: 13px;
		margin-top: -12px;
    }

	
	
	
}




@media(max-width:576px){

    .ac-single-title{
        font-size:28px;
    }

    .ac-single-featured-image img{
        height:220px;
        border-radius:10px;
    }

    .ac-sidebar-post{
        gap:12px;
    }

    .ac-sidebar-thumb{
        width:75px;
        min-width:75px;
    }

    .ac-sidebar-thumb img{
        width:75px;
        height:70px;
    }

    .ac-sidebar-info h4{
        font-size:14px;
    }

    .ac-widget-title{
        font-size:20px;
    }

    .ac-prev-post,
    .ac-next-post{
        padding:18px;
    }

    .ac-prev-post a,
    .ac-next-post a{
        font-size:16px;
    }

}

.author-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    /* Background icons ke liye image ya font-awesome use karein */
}


/*======================================
         Category Page
======================================*/

.ac-latest-section {
	margin-top: 50px;
}

/* ===== 3-COLUMN GRID ===== */
.ac-grid-3cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 992px) {
    .ac-grid-3cols {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .ac-grid-3cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px){

.blog-grid{
   
    display:grid;
        grid-template-columns:1fr;
        gap:20px;
}
	.blog-content{
		
		margin-bottom: 20px;
		padding: 10px;
			
	}

/* ===== HEADING CENTER ===== */
.ac-archive-header {
    text-align: center;
    padding: 40px 0 30px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.ac-archive-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ac-archive-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LOAD MORE BUTTON STYLING ===== */
.ac-load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.ac-load-more-wrapper .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ac-load-more-wrapper .page-numbers {
    display: none;  /* Hide all page numbers, sirf Load More visible */
}

.ac-load-more-wrapper .next.page-numbers,
.ac-load-more-wrapper .prev.page-numbers {
    display: inline-block;  /* Sirf Prev/Next dikhe */
}

.ac-load-more-wrapper .next.page-numbers {
    background: #007cba;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,124,186,0.3);
}

.ac-load-more-wrapper .next.page-numbers:hover {
    background: #005a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,124,186,0.4);
}

.ac-load-more-wrapper .prev.page-numbers {
    background: #f0f0f0;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ac-load-more-wrapper .prev.page-numbers:hover {
    background: #ddd;
}

/* Jab last page ho toh "Load More" ko hide karein? */
.ac-load-more-wrapper .next.page-numbers:only-child {
    /* Agar sirf next hai (pehla page) */
}

/* Agar aap chahte ho ki 'Next' ko 'Load More' hi rahe, aur 'Previous' ko hide karein */
.ac-load-more-wrapper .prev.page-numbers {
    display: none;  /* 'Previous' button hide */
}
/* Agar sirf 'Next' ko 'Load More' dikhana hai toh upar wali line hatao */