.x2x-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.x2x-page-hero{
    width:100%;
    background:linear-gradient(135deg,#0d6efd 0%,#0a58ca 100%);
    padding:90px 0;
    text-align:center;
    margin-bottom:60px;
}

.x2x-page-hero h1{
    color:#fff;
    font-size:56px;
    margin:0 0 20px;
    line-height:1.15;
}

.x2x-page-hero p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.7;
    max-width:760px;
    margin:0 auto;
}

.x2x-back-link{
    display:inline-block;
    color:#fff;
    margin-bottom:25px;
    text-decoration:none;
}

.x2x-post-meta{
    display:flex;
    justify-content:center;
    gap:20px;
    color:#fff;
    margin-top:10px;
}

.x2x-filter-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-bottom:45px;
}

.x2x-filter{
    border:none;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    background:#eef4ff;
    color:#0d6efd;
    font-weight:600;
}

.x2x-filter.active,
.x2x-filter:hover{
    background:linear-gradient(135deg,#0d6efd 0%,#0a58ca 100%);
    color:#fff;
}

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

.x2x-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.35s ease;
}

.x2x-card:hover{
    transform:translateY(-6px);
}

.x2x-card a{
    text-decoration:none;
    display:flex;
    flex-direction:column;
    height:100%;
}

.x2x-thumb img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.x2x-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.x2x-content h3{
    margin:0 0 16px;
    font-size:26px;
    color:#111827;
    line-height:1.3;
}

.x2x-content p{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:24px;
    flex:1;
}

.x2x-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.x2x-date{
    color:#6b7280;
    font-size:14px;
}

.x2x-readmore{
    color:#0d6efd;
    font-weight:700;
}

.single .site-main{
    max-width:850px;
    margin:0 auto;
    padding:0 20px 40px;
}

.single .entry-content{
    font-size:18px;
    line-height:1.9;
}

.x2x-related-posts{
    padding:80px 0;
}

.x2x-related-posts h2{
    text-align:center;
    margin-bottom:40px;
    font-size:38px;
    color:#0d6efd;
}

@media(max-width:992px){

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

    .x2x-page-hero h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    .x2x-blog-grid{
        grid-template-columns:1fr;
    }

    .x2x-page-hero{
        padding:70px 0;
    }

    .x2x-page-hero h1{
        font-size:34px;
    }

    .x2x-post-meta{
        flex-direction:column;
        gap:8px;
    }
}