/* Blog Detail - Kinetic Premium Editorial Theme */

:root {
    --accent-neon: #00ff00;
    --dark-bg: #0a0a0a;
    --light-bg: #f7f7f7;
    --text-muted: #666;
    --glass-white: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

.kinetic-theme.blog-detail-page {
    /* remove forced white bg to allow default #f7f7f7 to show */
    color: #000;
    font-family: 'Urbanist', sans-serif;
}

/* Kinetic Hero - Matching Service Style */
.kinetic-hero {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kinetic-bg-text {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.05);
    line-height: 0.8;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
    text-transform: uppercase;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.hero-left-content {
    flex: 1.2;
}

.k-subtitle {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: -15px;
    color: #888;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.k-main-title {
    font-size: 100px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -4px;
    color: #000;
    text-transform: uppercase;
}

.blog-meta-minimal {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
}

.blog-meta-minimal span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-meta-minimal i {
    color: var(--accent-neon);
}

/* Visual Card from Service Detail */
.hero-right-visual {
    flex: 0.8;
    perspective: 1200px;
}

.k-visual-card {
    background: #fff;
    padding: 15px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.k-visual-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.k-card-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.motion-blur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transition: 1.2s ease;
}

.k-visual-card:hover .motion-blur-img {
    filter: blur(0);
}

/* Studio Section for Intro */
.k-studio-section {
    padding: 120px 0;
    text-align: center;
    /* background removed to show global fixed text */
}

.k-studio-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 50px;
}

.dot-neon {
    width: 12px;
    height: 12px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-neon);
}

.k-studio-text {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -3px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.k-shape-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff !important;
    padding: 10px 45px;
    border-radius: 100px;
    position: relative;
    margin: 0 15px;
    overflow: visible;
}

.s-neon {
    background: var(--accent-neon);
    color: #000 !important;
}

.k-shape-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.6;
}

/* Article Body Grid - Expansion for more text */
.blog-article-grid {
    padding-bottom: 150px;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.article-main-text {
    font-size: 21px;
    line-height: 1.8;
    color: #333;
}

.article-main-text p {
    margin-bottom: 40px;
}

.article-main-text h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin: 80px 0 30px;
    letter-spacing: -2px;
}

.article-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-card {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.sidebar-quote {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
}

.sidebar-icon {
    font-size: 40px;
    color: var(--accent-neon);
    margin-bottom: 20px;
}

/* Feature Grid Style Content */
.content-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.content-card {
    background: #000;
    color: #fff;
    padding: 50px;
    border-radius: 40px;
}

.content-card.light {
    background: #eee;
    color: #000;
}

/* Navigation Cards - Preserved */
.blog-nav-bottom {
    padding: 120px 0;
    background: #f7f7f7;
}

.blog-nav-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.nav-article-card {
    flex: 1;
    text-decoration: none;
    color: #000;
    padding: 50px;
    background: #fff;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.nav-article-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 1200px) {
    .k-main-title { font-size: 80px; }
    .k-studio-text { font-size: 56px; }
    .blog-grid-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .k-subtitle { font-size: 48px; }
    .k-main-title { font-size: 60px; }
    .k-studio-text { font-size: 36px; }
    .blog-nav-grid { flex-direction: column; }
}
