/* ==========================================================================
   Single Post Page Styles
   ========================================================================== */

.single-post-template {
    background: #ffffff;
}

/* Single Post Hero */
.single-post-hero {
    position: relative;
    padding: 220px 0 160px;
    background-color: #0b1830;
    overflow: hidden;
}

.single-post-hero .banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.single-post-hero .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9) 0%, rgba(11, 24, 48, 0.7) 100%);
    z-index: 2;
}

.single-post-hero .container-1200 {
    position: relative;
    z-index: 10;
}

.post-meta-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #4facfe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-meta-top span i {
    margin-right: 8px;
}

.single-post-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.post-author-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.post-author-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4facfe;
}

/* Article Content Area */
.post-content-wrap {
    padding: 100px 0;
}

.post-main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
}

.post-article {
    max-width: 850px;
}

.post-featured-image-main {
    margin-bottom: 60px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.post-featured-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body-content {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #334155;
}

.post-body-content p {
    margin-bottom: 30px;
}

.post-body-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1830;
    margin: 60px 0 30px;
    letter-spacing: -1px;
}

.post-body-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1830;
    margin: 40px 0 20px;
}

.post-body-content blockquote {
    background: #f8fafc;
    border-left: 5px solid #4facfe;
    padding: 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: #0b1830;
    border-radius: 0 20px 20px 0;
}

/* Sidebar */
.post-sidebar .sidebar-widget {
    background: #f8fafc;
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4facfe;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info h5 a {
    text-decoration: none;
    color: #0b1830;
    transition: color 0.3s;
}

.recent-post-info h5 a:hover {
    color: #4facfe;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #64748b;
}

/* Post Navigation */
.post-navigation-custom {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.nav-link-box {
    max-width: 45%;
}

.nav-link-box span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4facfe;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nav-link-box a {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b1830;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s;
}

.nav-link-box a:hover {
    color: #4facfe;
}

@media (max-width: 1024px) {
    .post-main-layout {
        grid-template-columns: 1fr;
    }

    .single-post-title {
        font-size: 3rem;
    }
}
