body.insight-single-page{
background:#0f2c38;
color:white;
}

/* ================= HERO ================= */

.article-hero{
padding:80px 0 40px;
background:linear-gradient(rgba(19,47,61,0.92),rgba(19,47,61,0.92)),
url("https://images.unsplash.com/photo-1492724441997-5dc865305da7") center/cover no-repeat;
border-bottom:1px solid rgba(225,200,133,0.35);
}

.article-hero h1{
font-size:46px;
color:var(--gold);
margin-top:20px;
max-width:900px;
line-height:1.25;
}

.article-meta{
margin-top:18px;
font-size:14px;
opacity:.8;
}

.article-meta .divider{
margin:0 8px;
opacity:.6;
}

/* ================= BREADCRUMB ================= */

.breadcrumb{
font-size:14px;
margin-bottom:10px;
}

.breadcrumb a{
color:var(--gold);
text-decoration:none;
}

.breadcrumb span{
color:white;
opacity:.7;
margin:0 6px;
}

.breadcrumb .current{
color:white;
}

/* ================= ARTICLE LAYOUT ================= */

.article-body{
min-height:800px;
}

.article-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
align-items:flex-start;
}

.article-cover{
max-height:500px;
}

.article-content{
font-size:17px;
line-height:1.9;
max-width:760px;
}

.article-cover{
width:100%;
height:500px;
object-fit:cover;
border-radius:12px;
margin:25px 0 35px;
display:block;
}

.article-content p{
line-height:1.9;
margin-bottom:20px;
color:#d0d8dc;
}

.article-content h2{
color:var(--gold);
margin:40px 0 10px;
}

/* ================= SIDEBAR ================= */

.article-sidebar{
margin-top:40px;
}

.article-sidebar h3{
color:var(--gold);
margin-bottom:20px;
}

.related-post{
display:flex;
gap:14px;
margin-bottom:18px;
align-items:center;
text-decoration:none;
color:white;
transition:opacity .3s ease;
}

.related-post:hover{
opacity:.8;
}

.related-post img{
width:70px;
height:70px;
object-fit:cover;
border-radius:6px;
flex-shrink:0;
}

.related-post p{
font-size:14px;
line-height:1.4;
margin:0;
}


.article-content img{
width:100%;
height:auto;
display:block;
margin:30px 0;
}

.article-cover{
object-fit:cover;
}

/* ================= SHARE SECTION ================= */

.article-share-bottom{
margin:50px 0;
padding:10px 0;
position:relative;
}

.article-share-bottom::before,
.article-share-bottom::after{
content:"";
display:block;
height:1px;
background:rgba(225,200,133,0.35);
width:100%;
position:absolute;
left:0;
}

.article-share-bottom::before{
top:0;
}

.article-share-bottom::after{
bottom:0;
}

.article-share-bottom h4{
color:var(--gold);
margin-bottom:10px;
font-weight:600;
}

.share-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.share-buttons a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
border:1px solid rgba(225,200,133,0.45);
color:var(--gold);
text-decoration:none;
transition:.3s ease;
}

.share-buttons a:hover{
background:var(--gold);
color:#132F3D;
}
/* ================= READING PROGRESS BAR ================= */

.reading-progress{
position:fixed;
top:0;
left:0;
height:4px;
background:var(--gold);
width:0%;
z-index:9999;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

.article-layout{
grid-template-columns:1fr;
gap:50px;
}

.article-sidebar{
position:relative;
top:auto;
}

}

@media(max-width:768px){

.article-hero{
padding:100px 0 60px;
}

.article-hero h1{
font-size:34px;
}

.article-content{
font-size:16px;
}

}

@media(max-width:480px){

.article-hero h1{
font-size:28px;
}

.article-meta{
font-size:13px;
}

.share-buttons a{
width:36px;
height:36px;
}

}




.article-excerpt{
font-style:italic;
font-size:18px;
color:#d0d8dc;
margin-bottom:25px;
}

.featured-image figcaption,
.article-image figcaption{
font-size:13px;
color:#bfc9ce;
margin-top:8px;
font-style:italic;
}

.article-image{
margin:35px 0;
}

/* FEATURED IMAGE */

.featured-image{
margin:30px 0 10px;
}

.featured-image img{
width:100%;
height:auto;
border-radius:10px;
}

/* INLINE ARTICLE IMAGES */

.article-image{
margin:40px 0;
}

.article-image img{
width:100%;
height:auto;
border-radius:10px;
display:block;
}

/* IMAGE CAPTION */
figcaption{
font-size:13px;
margin-top:0px;
opacity:.75;
font-style:italic;
line-height:1.4;
}


.article-tags{
margin-top:15px;
display:flex;
gap:10px;
flex-wrap:wrap;
align-items:center;
}

.article-tags strong{
color:#ffffff;
font-size:14px;
margin-right:5px;
}

.article-tags span{
color:var(--gold);
font-size:14px;
font-weight:500;
}


/* COMMENT LAYOUT */


.article-comments{
margin-top:60px;
padding:0;
background:none;
border-radius:0;
border-top:5px solid rgba(225,200,133,0.35);
margin-bottom: 100px;
}

.article-comments h3{
color:var(--gold);
margin-bottom:10px;
}

.comment-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.comment-form input,
.comment-form textarea{
padding:14px;
background:transparent;
border:1px solid rgba(225,200,133,0.4);
border-radius:6px;
color:white;
}

.comment-form button{
background:var(--gold);
border:none;
padding:14px;
border-radius:6px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.comment-form button:hover{
opacity:.9;
}

/* ================= COMMENTS ================= */

.article-comments{
margin-top:60px;
background:rgba(255,255,255,0.03);
padding:35px;
border-radius:10px;
}

.article-comments h3{
color:#D4AF37;
margin-bottom:10px;
}

.article-comments p{
font-size:14px;
opacity:.7;
margin-bottom:20px;
}

.comment-form input,
.comment-form textarea{

width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid rgba(255,255,255,0.15);
background:transparent;
color:#fff;
border-radius:6px;
outline:none;

}

.comment-form textarea{
resize:vertical;
}

.comment-submit{

background:#D4AF37;
color:#000;
padding:14px 28px;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:600;

}

.comment-submit:hover{
opacity:.9;
}


/* ================= COMMENT LIST ================= */

.comment-list{
margin-top:40px;
}

.comment-item{
border-top:1px solid rgba(212,175,55,.45);
padding:22px 0;
margin-top:15px;
}

.comment-item strong{
color:#D4AF37;
font-size:15px;
display:block;
margin-bottom:4px;
}

.comment-item span{
font-size:12px;
opacity:.7;
display:block;
margin-bottom:10px;
}

.comment-item p{
line-height:1.7;
color:#d6dde2;
}

.comment-date{
font-size:12px;
opacity:.7;
margin-bottom:8px;
display:block;
}

.single-comment p{
margin:0;
line-height:1.6;
}


/* ================= DELETE BUTTON ================= */
.comment-delete{
font-size:12px;
color:#c9a33a;
text-decoration:none;
display:inline-block;
margin-top:8px;
}

.comment-delete:hover{
opacity:.7;
}

.related-post img{
width:70px;
height:70px;
object-fit:cover;
border-radius:6px;
flex-shrink:0;
}

.article-meta{
display:flex;
align-items:center;
gap:15px;
margin-top:10px;
font-size:14px;
opacity:.9;
}

.author-info{
display:flex;
align-items:center;
gap:10px;
}

.author-avatar{
width:32px;
height:32px;
border-radius:50%;
object-fit:cover;
}

.meta-right{
gap:10px;
align-items:center;
}

.article-category{
display:inline-block;
background:rgba(225,200,133,0.15);
color:var(--gold);
padding:5px 12px;
border-radius:20px;
font-size:12px;
letter-spacing:.5px;
margin-bottom:0px;
}


.article-hero .breadcrumb{
margin-bottom:8px;
}

.article-category{
margin-bottom:6px;
}

.article-title{
margin-top:0;
margin-bottom:8px;
}


/* ===== ARTICLE HERO PROFESSIONAL REPAIR ===== */
.insight-single-page .article-hero {
    min-height: 440px !important;
    height: auto !important;
    max-height: none !important;
    margin-top: 80px !important;
    padding: 70px 0 56px !important;
    display: flex !important;
    align-items: center !important;
    background:
        linear-gradient(90deg, rgba(8,26,34,0.98) 0%, rgba(8,26,34,0.93) 36%, rgba(8,26,34,0.72) 64%, rgba(8,26,34,0.54) 100%),
        var(--article-hero-image, url('/GT-Website/assets/images/post.webp')) center right/cover no-repeat !important;
    border-bottom: 1px solid rgba(225,200,133,0.35);
}

.insight-single-page .article-hero .hero-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 980px;
}

.insight-single-page .article-hero .breadcrumb {
    max-width: 100%;
    row-gap: 6px;
    color: rgba(255,255,255,0.78);
}

.insight-single-page .article-hero .breadcrumb .current {
    max-width: 520px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.insight-single-page .article-title {
    max-width: 980px;
    margin: 18px auto 14px;
    font-size: clamp(34px, 5vw, 58px) !important;
    line-height: 1.14;
    letter-spacing: 0;
}

.insight-single-page .article-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(225,200,133,0.16);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

.insight-single-page .article-meta {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 1;
    color: rgba(255,255,255,0.86);
}

.insight-single-page .author-info,
.insight-single-page .meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-single-page .author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(225,200,133,0.45);
}

.insight-single-page .article-body {
    padding: 64px 0 20px;
}

.insight-single-page .article-layout {
    grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
    justify-content: center;
}

.insight-single-page .article-sidebar {
    position: sticky;
    top: 110px;
    margin-top: 0;
    padding: 26px;
    border: 1px solid rgba(225,200,133,0.16);
    background: rgba(255,255,255,0.035);
    border-radius: 10px;
}

.insight-single-page .article-excerpt {
    padding-left: 22px;
    border-left: 3px solid var(--gold);
}

.insight-single-page .featured-image {
    margin: 36px 0 30px;
}

.insight-single-page .article-cover {
    height: auto;
    max-height: 520px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
    .insight-single-page .article-hero {
        min-height: 360px !important;
        padding: 52px 0 44px !important;
    }

    .insight-single-page .article-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .insight-single-page .article-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 560px) {
    .insight-single-page .article-hero .breadcrumb .current {
        max-width: 240px;
    }

    .insight-single-page .article-meta {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
}
/* ===== ARTICLE REQUESTED ALIGNMENT UPDATE ===== */
.insight-single-page .article-hero .hero-overlay {
    align-items: flex-start !important;
    text-align: left !important;
}

.insight-single-page .article-hero .breadcrumb {
    justify-content: flex-start !important;
}

.insight-single-page .article-title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: clamp(30px, 4.1vw, 50px) !important;
    max-width: 880px;
}

.insight-single-page .article-hero .article-meta {
    display: none !important;
}

.insight-single-page .article-content > .article-meta {
    display: flex !important;
    justify-content: flex-start;
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(225,200,133,0.18);
    color: rgba(255,255,255,0.86);
}

.insight-single-page .article-content > .article-meta .author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

@media (max-width: 560px) {
    .insight-single-page .article-content > .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== COMPACT RESPONSIVE ARTICLE LAYOUT ===== */
.insight-single-page .article-hero {
    min-height: 0 !important;
    padding: clamp(26px, 3.1vw, 38px) 0 clamp(27px, 3.2vw, 40px) !important;
}

.insight-single-page .article-title {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    font-size: clamp(27px, 3.2vw, 42px) !important;
    line-height: 1.15 !important;
}

.insight-single-page .article-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.insight-single-page .article-category {
    min-height: 27px;
    padding: 5px 12px;
    font-size: 12px;
}

.insight-single-page .article-body {
    min-height: 0;
    padding: clamp(34px, 4.2vw, 48px) 0 14px;
}

.insight-single-page .article-layout {
    gap: clamp(28px, 3vw, 42px);
}

.insight-single-page .article-content {
    font-size: 16px;
    line-height: 1.72;
}

.insight-single-page .article-content > .article-meta {
    margin: 0 0 16px;
    padding-bottom: 14px;
}

.insight-single-page .article-excerpt {
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.65;
}

.insight-single-page .featured-image {
    margin: 20px 0 24px;
}

.insight-single-page .featured-image .article-cover {
    margin: 0;
    border-radius: 8px 8px 0 0;
}

.insight-single-page .featured-image figcaption {
    margin: 0;
    padding: 9px 12px 10px;
    border-radius: 0 0 8px 8px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(225,200,133,0.13);
    border-top: 0;
    color: #bfcdd2;
    line-height: 1.4;
}

.insight-single-page .article-content p {
    line-height: 1.72;
    margin-bottom: 16px;
}

.insight-single-page .article-content h2 {
    margin: 28px 0 9px;
}

.insight-single-page .article-share-bottom {
    margin: 34px 0;
    padding: 16px 0;
}

.insight-single-page .article-comments {
    margin: 36px 0 44px;
    padding: clamp(20px, 3vw, 28px);
    border-top-width: 2px;
}

.insight-single-page .comment-form {
    gap: 11px;
    margin-top: 16px;
}

.insight-single-page .comment-form input,
.insight-single-page .comment-form textarea {
    margin-bottom: 0;
}

.insight-single-page .article-sidebar {
    padding: 21px;
}

@media (max-width: 900px) {
    .insight-single-page .article-hero {
        min-height: 0 !important;
        padding: 27px 0 29px !important;
    }

    .insight-single-page .article-body {
        padding-top: 30px;
    }
}

@media (max-width: 560px) {
    .insight-single-page .article-hero {
        margin-top: 70px !important;
        min-height: 0 !important;
        padding: 22px 0 24px !important;
        background:
            linear-gradient(90deg, rgba(8,26,34,0.94), rgba(8,26,34,0.73)),
            var(--article-hero-image, url('/GT-Website/assets/images/post.webp')) center right/cover no-repeat !important;
    }

    .insight-single-page .article-layout {
        gap: 24px;
    }

    .insight-single-page .article-content > .article-meta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .insight-single-page .article-comments {
        margin-top: 28px;
    }
}
