.blog-page {
    padding: 110px 30px 80px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.blog-breadcrumb a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: #22d3ee;
}

.single-blog-card {
    width: 100%;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(34,211,238,.15);
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.blog-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    max-width:100%;
    word-break:normal;
}

.blog-content {
    width: 100%;
    max-width: none;
}

.blog-content p,
.blog-content li {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
}

.blog-content h2 {
    font-size: 2.2rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-content ul {
    padding-left: 30px;
}

.blog-content img{
    width:100%;
    height:auto;
    border-radius:20px;
    margin:30px 0;
}

@media(max-width:768px){

    .blog-page{
        padding:120px 20px 60px;
    }

    .single-blog-card{
        padding:24px;
    }

    .blog-title{
        font-size:2.5rem;
    }
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

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

@media(max-width:768px){
    .blog-grid{
        grid-template-columns:1fr;
    }
}


.pcm-blog-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#050816;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.pcm-header-container{
    max-width:1400px;
    margin:auto;
    padding:16px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.pcm-logo img{
    height:70px;
    width:auto;
}

.pcm-nav{
    display:flex;
    gap:32px;
}

.pcm-nav a{
    color:#b8c1cc;
    text-decoration:none;
    font-size:14px;
}

.pcm-nav a:hover{
    color:#22d3ee;
}

.pcm-quote-btn{
    background:#22d3ee;
    color:#000;
    padding:12px 20px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.pcm-blog-footer{
    margin-top:80px;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.pcm-footer-container{
    max-width:1400px;
    margin:auto;
    text-align:center;
}

@media(max-width:1024px){

    .pcm-nav{
        display:none;
    }

    .pcm-logo img{
        height:50px;
    }

    .pcm-quote-btn{
        font-size:14px;
        padding:10px 16px;
    }
}


.faq-title{
    margin-top:60px;
    margin-bottom:30px;
    font-size:2rem;
    font-weight:700;
}

.faq-item{
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    margin-bottom:16px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:22px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:18px;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding:0 22px 22px;
    color:#b8c1cc;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-icon{
    transition:.3s;
    font-size:24px;
}

/* =====================================
   BLOG LISTING PAGE
===================================== */

.pcm-blog-hero{
    padding-top:140px;
    padding-bottom:100px;
    text-align:center;
}

.pcm-blog-title{
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:1.05;
    font-weight:700;
    margin-bottom:24px;
}

.pcm-blog-description{
    max-width:800px;
    margin:0 auto;
    color:#9ca3af;
    font-size:1.15rem;
    line-height:1.8;
}

.pcm-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    border:1px solid rgba(34,211,238,.25);
    background:rgba(34,211,238,.05);
    color:#22d3ee;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.2em;
    margin-bottom:30px;
}

.section-title{
    font-size:2rem;
    margin-bottom:30px;
    font-weight:700;
}

/* =====================================
   FEATURED POSTS
===================================== */

.featured-posts-section{
    padding-bottom:90px;
}

.featured-posts-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.featured-post-card{
    text-decoration:none;
    color:inherit;
    overflow:hidden;
    border-radius:32px;
    border:1px solid rgba(34,211,238,.12);
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(12px);
    transition:.3s;
}

.featured-post-card:hover{
    transform:translateY(-4px);
    border-color:rgba(34,211,238,.3);
}

.featured-image{
    overflow:hidden;
}

.featured-image img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
}

.featured-content{
    padding:30px;
}

.featured-content h3{
    font-size:2rem;
    line-height:1.2;
    margin-bottom:16px;
}

.featured-content p{
    color:#b8c1cc;
    line-height:1.8;
}

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

.blog-posts-section{
    padding-bottom:100px;
}

.pcm-blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.blog-card{
    text-decoration:none;
    color:inherit;
    overflow:hidden;
    border-radius:30px;
    border:1px solid rgba(34,211,238,.12);
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(12px);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-4px);
    border-color:rgba(34,211,238,.3);
}

.blog-card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.blog-card-content{
    padding:24px;
}

.blog-card-content h3{
    font-size:1.5rem;
    line-height:1.3;
    margin-bottom:12px;
}

.blog-card-content p{
    color:#b8c1cc;
    line-height:1.7;
}

.blog-card-date{
    color:#22d3ee;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.1em;
    margin-bottom:14px;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:1024px){

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

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

    .featured-image img{
        height:280px;
    }

    .featured-content h3{
        font-size:1.6rem;
    }
}

@media(max-width:768px){

    .pcm-blog-hero{
        padding-top:140px;
        padding-bottom:70px;
    }

    .pcm-blog-title{
        font-size:2.8rem;
    }

    .pcm-blog-description{
        font-size:1rem;
    }

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

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

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


.blog-category{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(34,211,238,.08);
    border:1px solid rgba(34,211,238,.2);
    color:#22d3ee;
    margin-bottom:20px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.15em;
}

.blog-meta{
    display:flex;
    gap:12px;
    align-items:center;
    color:#9ca3af;
    margin-bottom:30px;
}

@media(max-width:768px){

    .blog-meta{
        flex-wrap:wrap;
        gap:8px;
    }

}

.blog-featured-image{
    margin-bottom:40px;
}

.blog-featured-image img{
    width:100%;
    height:auto;
    border-radius:24px;
    display:block;
}

.blog-tags{
    margin-top:50px;
    margin-bottom:50px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.blog-tag{
    padding:10px 16px;
    border-radius:999px;
    text-decoration:none;
    color:#22d3ee;
    border:1px solid rgba(34,211,238,.2);
    background:rgba(34,211,238,.05);
}

.blog-tag:hover{
    background:rgba(34,211,238,.12);
}

.related-posts{
    margin-top:80px;
}

.related-title{
    font-size:2rem;
    margin-bottom:30px;
    font-weight:700;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.related-card{
    text-decoration:none;
    color:inherit;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(34,211,238,.12);
    background:rgba(0,0,0,.25);
    transition:.3s;
    display: flex;
    flex-direction: column;
}

.related-card:hover{
    transform:translateY(-4px);
    border-color:rgba(34,211,238,.3);
}

.related-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.related-content{
    padding:20px;
    flex: 1;
}

.related-date{
    color:#22d3ee;
    font-size:13px;
    margin-bottom:12px;
}

.related-content h3{
    font-size:1.2rem;
    line-height:1.4;
    margin-bottom:10px;
}

.related-excerpt{
    margin-top:12px;
    color:#b8c1cc;
    line-height:1.7;
    font-size:.95rem;
}

@media(max-width:1024px){

    .related-grid{
        grid-template-columns:1fr;
    }

}