/*
 * Blog Page Styles
 * archive.php + single.php + search.php
 */

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ===== HERO SECTION ===== */
.blog-hero-section {
    position: relative;
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #070714 0%, #0f0f2e 40%, #1a0a2e 100%);
    overflow: hidden;
    text-align: center;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    animation: blogHeroGlow 15s ease-in-out infinite alternate;
}

@keyframes blogHeroGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-2%, 2%) rotate(3deg); }
}

.blog-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.15;
    animation: blogParticleFloat 8s infinite;
}

.blog-hero-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.blog-hero-particle:nth-child(2) { top: 70%; left: 85%; animation-delay: 1s; animation-duration: 9s; }
.blog-hero-particle:nth-child(3) { top: 30%; left: 75%; animation-delay: 2s; animation-duration: 6s; }
.blog-hero-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 0.5s; animation-duration: 8s; }
.blog-hero-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 3s; animation-duration: 10s; }
.blog-hero-particle:nth-child(6) { top: 20%; left: 45%; animation-delay: 1.5s; animation-duration: 7.5s; }
.blog-hero-particle:nth-child(7) { top: 60%; left: 5%; animation-delay: 2.5s; animation-duration: 11s; }
.blog-hero-particle:nth-child(8) { top: 90%; left: 60%; animation-delay: 0.8s; animation-duration: 6.5s; }

@keyframes blogParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.25; }
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.blog-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f0d68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-breadcrumbs {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 32px;
    font-size: 13px;
    color: #64748b;
}

.blog-hero-breadcrumbs a {
    color: #d4af37 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-hero-breadcrumbs a:hover {
    color: #d4af37;
}

.blog-hero-breadcrumbs .separator {
    color: #475569;
    font-size: 10px;
}

.blog-hero-breadcrumbs .current {
    color: #d4af37;
}

/* ===== SECTION HEADER (shared) ===== */
.blog-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px;
    line-height: 1.2;
}

.blog-section-subtitle {
    color: #94a3b8;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BLOG LAYOUT ===== */
.blog-content-area {
    background: #070714;
    padding: 60px 0 80px;
}

.blog-content-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}

.blog-posts-section {
    min-width: 0;
}

/* ===== FEATURED POST ===== */
.blog-featured-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.blog-featured-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-featured-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    height: auto !important;
    min-height: 295px !important;
}

.blog-featured-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    max-width: none !important;
    transition: transform 0.6s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-image .featured-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 50px;
    color: #070714;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-featured-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 24px 24px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-category {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-featured-category:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #f0d68a;
}

.blog-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
}

.blog-featured-title a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured-title a:hover {
    color: #d4af37;
}

.blog-featured-excerpt {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-featured-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-featured-author .avatar,
.blog-featured-author img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    border-radius: 50% !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    max-width: none !important;
    flex-shrink: 0;
}

.blog-featured-author .author-name {
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 600;
}

.blog-featured-author .author-name a {
    color: #e2e8f0;
    text-decoration: none;
}

.blog-featured-author .author-name a:hover {
    color: #d4af37;
}

.blog-featured-meta .post-date {
    color: #64748b;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-featured-meta .post-date i {
    font-size: 10px;
}

.blog-featured-meta .post-read-time {
    color: #64748b;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-featured-meta .post-read-time i {
    font-size: 12px;
}

/* ===== ARCHIVE HEADER ===== */
.archive-header-box {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 36px;
}

.archive-header-box h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: #f1f5f9;
    margin: 0 0 4px;
}

.archive-header-box .archive-count {
    color: #94a3b8;
    font-size: 14px;
}

.archive-header-box .archive-count span {
    color: #d4af37;
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 13px;
    color: #64748b;
}

.breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #d4af37;
}

.breadcrumbs .separator {
    color: #475569;
    font-size: 10px;
}

.breadcrumbs .current {
    color: #d4af37;
}

.single-post-hero .blog-hero-breadcrumbs {
    justify-content: flex-start;
    padding: 0 0 20px;
}

/* ===== POSTS GRID ===== */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    max-width: none !important;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image .post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50px;
    color: #070714;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-image .post-category:hover {
    background: #d4af37;
    transform: translateY(-1px);
}

.blog-card-image .no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.3);
    font-size: 40px;
}

.blog-card-body {
    padding: 20px 22px 22px;
}

.blog-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-card-title a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #d4af37;
}

.blog-card-excerpt {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-author .avatar,
.blog-card-author img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    border-radius: 50% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    max-width: none !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    flex-shrink: 0;
}

.blog-card-author .author-name {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.blog-card-date {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-date i {
    font-size: 11px;
}

/* ===== PAGINATION ===== */
.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-color: transparent;
    color: #070714;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    padding: 0 14px;
    gap: 6px;
    font-size: 13px;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: #64748b;
    min-width: auto;
    height: auto;
}

/* ===== NO RESULTS ===== */
.no-results-box {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 20px;
}

.no-results-box i {
    font-size: 48px;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.no-results-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    color: #f1f5f9;
    margin: 0 0 10px;
}

.no-results-box p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0 0 24px;
}

.no-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border: none;
    border-radius: 50px;
    color: #070714;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.no-results-btn:hover {
    background: linear-gradient(135deg, #c49b2f, #b8942a);
    color: #070714;
}

.no-results-btn i {
    font-size: 14px !important;
    margin: 0 !important;
    color: inherit !important;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100% !important;
}

.blog-sidebar .widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
}

.blog-sidebar .widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-sidebar .widget-title .title-line {
    display: none;
}

.blog-sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-sidebar .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar .widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.blog-sidebar .widget ul li a:hover {
    color: #d4af37;
    padding-left: 4px;
}

.blog-sidebar .widget ul li .post-count {
    float: right;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* Search widget in sidebar */
.blog-sidebar .widget_search .search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.blog-sidebar .widget_search .search-form:focus-within {
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-sidebar .widget_search .search-form label {
    flex: 1;
    margin: 0;
}

.blog-sidebar .widget_search .search-field {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #f1f5f9;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.blog-sidebar .widget_search .search-field::placeholder {
    color: #64748b;
}

.blog-sidebar .widget_search .search-submit {
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: #d4af37;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
}

.blog-sidebar .widget_search .search-submit:hover {
    color: #f0d68a;
}

/* Recent posts widget */
.blog-sidebar .widget_recent_entries ul li,
.blog-sidebar .widget_recent_comments ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.blog-sidebar .widget_recent_entries ul li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-sidebar .widget_recent_entries .post-date {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* Trending Topics widget */
.blog-sidebar .widget_trending .trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding: 0;
}

.blog-sidebar .widget_trending .trending-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.blog-sidebar .widget_trending .trending-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
    color: #d4af37;
    transform: translateY(-2px);
}

/* Categories widget icon spacing */
.blog-sidebar .widget_categories .widget-title i {
    margin-right: 8px;
    color: #d4af37;
}

/* Tag cloud */
.blog-sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar .tagcloud a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-sidebar .tagcloud a:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-2px);
}

/* Categories widget */
.blog-sidebar .widget_categories ul li,
.blog-sidebar .widget_archive ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-sidebar .widget_categories ul li a,
.blog-sidebar .widget_archive ul li a {
    flex: 1;
}

/* Sidebar newsletter */
.sidebar-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02)) !important;
    border-color: rgba(212, 175, 55, 0.15) !important;
    text-align: center;
    padding: 32px 24px !important;
}

.sidebar-cta h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #f1f5f9;
    margin: 0 0 8px;
}

.sidebar-cta p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0 0 20px;
    line-height: 1.5;
}

.sidebar-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 10px;
    color: #070714;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

/* ===== POST HERO ===== */
.single-post-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.single-post-hero.has-image {
    background: #070714;
}

.single-post-hero-image {
    position: absolute;
    inset: 0;
}

.single-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-image .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #070714 0%, rgba(7, 7, 20, 0.8) 50%, rgba(7, 7, 20, 0.65) 100%);
}

.single-post-hero.no-image {
    background: linear-gradient(135deg, #070714 0%, #0f0f2e 40%, #1a0a2e 100%);
    min-height: 350px;
}

.single-post-hero .container {
    width: 100%;
}

.single-post-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 0 60px;
    text-align: left;
    margin-left: 0;
}

.single-post-hero-content .post-categories {
    margin-bottom: 16px;
}

.single-post-hero-content .post-categories a {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-hero-content .post-categories a:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.single-post-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.single-post-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.single-post-hero-meta .author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-post-hero-meta .author-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    object-fit: cover;
}

.single-post-hero-meta .author-meta .author-name {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.single-post-hero-meta .author-meta .author-name a {
    color: #e2e8f0;
    text-decoration: none;
}

.single-post-hero-meta .author-meta .author-name a:hover {
    color: #d4af37;
}

.single-post-hero-meta .meta-item {
    color: #94a3b8;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-hero-meta .meta-item i {
    font-size: 12px;
}

/* ===== SINGLE POST CONTENT ===== */
.single-post-content-area {
    background: #070714;
    padding: 0 0 80px;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding-top: 40px;
}

.single-post-body {
    min-width: 0;
}

/* Post content typography */
.single-post-body .post-content {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.single-post-body .post-content > * {
    margin-bottom: 1.5em;
}

.single-post-body .post-content h1,
.single-post-body .post-content h2,
.single-post-body .post-content h3,
.single-post-body .post-content h4,
.single-post-body .post-content h5,
.single-post-body .post-content h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #f1f5f9;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.single-post-body .post-content h1 { font-size: 32px; }
.single-post-body .post-content h2 { font-size: 28px; border-bottom: 1px solid rgba(212, 175, 55, 0.1); padding-bottom: 10px; }
.single-post-body .post-content h3 { font-size: 22px; }
.single-post-body .post-content h4 { font-size: 18px; }

.single-post-body .post-content p {
    margin-bottom: 1.5em;
}

.single-post-body .post-content a {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}

.single-post-body .post-content a:hover {
    color: #f0d68a;
}

.single-post-body .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5em 0;
}

.single-post-body .post-content .wp-caption {
    max-width: 100%;
    margin: 1.5em 0;
}

.single-post-body .post-content .wp-caption img {
    margin: 0;
}

.single-post-body .post-content .wp-caption-text {
    color: #64748b;
    font-size: 13px;
    text-align: center;
    padding: 10px 0 0;
    font-style: italic;
}

.single-post-body .post-content blockquote {
    margin: 2em 0;
    padding: 24px 28px;
    background: rgba(212, 175, 55, 0.04);
    border-left: 4px solid #d4af37;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.7;
}

.single-post-body .post-content blockquote p {
    margin-bottom: 0;
}

.single-post-body .post-content blockquote cite {
    display: block;
    margin-top: 12px;
    color: #d4af37;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.single-post-body .post-content ul,
.single-post-body .post-content ol {
    padding-left: 24px;
    margin-bottom: 1.5em;
}

.single-post-body .post-content ul li,
.single-post-body .post-content ol li {
    margin-bottom: 8px;
}

.single-post-body .post-content ul li::marker {
    color: #d4af37;
}

.single-post-body .post-content pre {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
}

.single-post-body .post-content code {
    background: rgba(212, 175, 55, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #f0d68a;
}

.single-post-body .post-content pre code {
    background: none;
    padding: 0;
}

.single-post-body .post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border-radius: 12px;
    overflow: hidden;
}

.single-post-body .post-content th,
.single-post-body .post-content td {
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: left;
}

.single-post-body .post-content th {
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
}

.single-post-body .post-content td {
    color: #94a3b8;
    font-size: 14px;
}

.single-post-body .post-content hr {
    border: none;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
    margin: 2em 0;
}

.single-post-body .post-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 1.5em 0;
}

.single-post-body .post-content .wp-block-button {
    margin: 1.5em 0;
}

.single-post-body .post-content .wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 10px;
    color: #070714;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-body .post-content .wp-block-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.single-post-body .post-content .wp-block-pullquote {
    margin: 2em 0;
    padding: 32px 40px;
    background: rgba(212, 175, 55, 0.04);
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    text-align: center;
}

.single-post-body .post-content .wp-block-pullquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #f1f5f9;
    font-style: italic;
    line-height: 1.5;
}

.single-post-body .post-content .wp-block-pullquote cite {
    color: #d4af37;
    font-size: 14px;
    font-style: normal;
}

.single-post-body .post-content .wp-block-separator {
    width: 80px;
    margin: 2em auto;
    border-color: #d4af37;
}

.single-post-body .post-content .wp-block-quote {
    border-left-color: #d4af37;
}

.single-post-body .post-content .wp-block-media-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 1.5em 0;
    align-items: center;
}

.single-post-body .post-content .wp-block-media-text img {
    border-radius: 12px;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.post-tags .tag-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-2px);
}

/* ===== AUTHOR BOX ===== */
.single-post-author-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
}

.single-post-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.single-post-author-box .author-info {
    flex: 1;
}

.single-post-author-box .author-info .author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 4px;
}

.single-post-author-box .author-info .author-name a {
    color: #f1f5f9;
    text-decoration: none;
}

.single-post-author-box .author-info .author-name a:hover {
    color: #d4af37;
}

.single-post-author-box .author-info .author-bio {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== POST NAVIGATION ===== */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.post-navigation .nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation .nav-link:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.post-navigation .nav-link.prev-link {
    text-align: left;
}

.post-navigation .nav-link.next-link {
    text-align: right;
}

.post-navigation .nav-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-navigation .nav-link.next-link .nav-label {
    justify-content: flex-end;
}

.post-navigation .nav-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.3;
    transition: color 0.3s;
}

.post-navigation .nav-link:hover .nav-title {
    color: #d4af37;
}

/* ===== RELATED POSTS ===== */
.related-posts-section {
    margin-top: 48px;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.01);
}

.related-posts-section .related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 4px;
}

.related-posts-section .related-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin: 0 0 28px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.related-post-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.related-post-card .related-image {
    height: 170px;
    overflow: hidden;
}

.related-post-card .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-post-card:hover .related-image img {
    transform: scale(1.06);
}

.related-post-card .related-body {
    padding: 14px 14px 16px;
}

.related-post-card .related-category {
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.related-post-card .related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.related-post-card .related-title a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-card .related-title a:hover {
    color: #d4af37;
}

.related-post-card .related-date {
    color: #64748b;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-post-card .related-image .no-thumb {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(7,7,20,0.95) 100%);
    color: rgba(212,175,55,0.25);
    font-size: 36px;
    position: relative;
}

.related-post-card .related-image .no-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(212,175,55,0.08), transparent 60%);
}

.related-post-card .related-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.related-post-card .related-read-more:hover {
    gap: 10px;
}

.related-post-card .related-date i {
    font-size: 11px;
}

/* ===== COMMENTS ===== */
.comments-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.comments-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 28px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comment-list .comment:last-child {
    border-bottom: none;
}

.comment-list .comment-body {
    display: flex;
    gap: 16px;
}

.comment-list .comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-list .comment-content {
    flex: 1;
}

.comment-list .comment-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 2px;
}

.comment-list .comment-author-name a {
    color: #f1f5f9;
    text-decoration: none;
}

.comment-list .comment-author-name a:hover {
    color: #d4af37;
}

.comment-list .comment-time {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.comment-list .comment-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.comment-list .comment-text p {
    margin: 0 0 8px;
}

.comment-list .comment-text p:last-child {
    margin-bottom: 0;
}

.comment-list .reply {
    margin-top: 10px;
}

.comment-list .reply a {
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.comment-list .reply a:hover {
    color: #f0d68a;
}

.comment-list .children {
    list-style: none;
    margin-left: 64px;
    padding: 0;
}

.comment-list .children .comment {
    border-bottom: none;
    padding-bottom: 0;
}

/* Comment form */
.comment-respond {
    margin-top: 36px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
}

.comment-reply-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 4px;
}

.comment-reply-title small a {
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 12px;
}

.comment-notes {
    color: #64748b;
    font-size: 13px;
    margin: 0 0 20px;
}

.comment-form {
    display: grid;
    gap: 18px;
}

.comment-form p {
    margin: 0;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
    display: grid;
    gap: 6px;
}

.comment-form label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.comment-form label .required {
    color: #d4af37;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: rgba(212, 175, 55, 0.3);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: 4px;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border: none;
    border-radius: 10px;
    color: #070714;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

.comment-form .comment-form-cookies-consent label {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

/* ===== BLOG CTA SECTION ===== */
.blog-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #070714 0%, #0f0f2e 50%, #070714 100%);
}

.blog-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px;
    background: rgba(212, 175, 55, 0.04);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta-card::before,
.blog-cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-cta-card::before {
    top: -150px;
    left: -150px;
}

.blog-cta-card::after {
    bottom: -150px;
    right: -150px;
}

.blog-cta-card .cta-content {
    position: relative;
    z-index: 1;
}

.blog-cta-card .cta-icon {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.blog-cta-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px;
}

.blog-cta-card p {
    color: #94a3b8;
    font-size: 15px;
    max-width: 660px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.blog-cta-card .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 12px;
    color: #070714;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.2);
}

/* CTA benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 0 28px;
    flex-wrap: wrap;
}

.cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.cta-benefits span i {
    color: #d4af37;
    font-size: 14px;
}

.blog-recent-mobile {
    display: none;
}

.blog-recent-mobile .widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
}

.blog-recent-mobile .widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-recent-mobile .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent-mobile .widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-recent-mobile .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-recent-mobile .widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.blog-recent-mobile .widget ul li a:hover {
    color: #d4af37;
    padding-left: 4px;
}

.blog-recent-mobile .post-date {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .blog-hero-title {
        font-size: 40px;
    }

    .container {
        padding: 0 24px;
    }

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

    .blog-sidebar {
        display: none;
    }

    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .single-post-layout .blog-sidebar {
        display: none;
    }

    .mobile-sidebar-widgets {
        display: block;
        margin-top: 40px;
    }

    .blog-featured-card {
        flex-direction: column;
    }

    .blog-featured-image {
        flex: none;
        max-width: none;
        min-height: 260px;
    }

    .blog-featured-content {
        flex: none;
        max-width: none;
    }

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

    .single-post-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 20px 0 56px;
    }

    .blog-hero-title {
        font-size: 38px;
    }

    .blog-hero-subtitle {
        font-size: 15px;
    }

    .blog-content-area {
        padding: 40px 0 60px;
    }

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

    .blog-sidebar {
        order: -1;
    }

    .blog-sidebar .widget_recent_entries {
        display: none;
    }

    .blog-recent-mobile {
        display: block;
    }

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

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

    .blog-featured-title {
        font-size: 22px;
    }

    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .single-post-hero {
        min-height: 350px;
    }

    .single-post-hero-title {
        font-size: 26px;
    }

    .post-navigation {
        flex-direction: column;
    }
    .post-navigation .next-link {
        text-align: left;
    }

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

    .single-post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comments-section .children {
        margin-left: 24px;
    }

    .blog-cta-section {
        padding: 60px 0;
    }

    .blog-cta-card {
        padding: 40px 24px;
    }

    .blog-cta-card h2 {
        font-size: 22px;
    }

    .blog-section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 12px;
    }

    .blog-hero-section {
        padding: 16px 0 48px;
    }

    .blog-hero-title {
        font-size: 30px;
    }

    .blog-hero-breadcrumbs {
        padding: 12px 0 24px;
        font-size: 12px;
    }
}

/* ===== BLOG PAGE CONTAINER ===== */
.page-template-page-blogs .container {
    padding: 0;
}

/* ===== HERO SHAPES ===== */
.blog-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d4af37, transparent 70%);
    top: -200px;
    right: -100px;
    animation: heroShapeFloat1 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #d4af37, transparent 70%);
    bottom: -150px;
    left: -80px;
    animation: heroShapeFloat2 25s ease-in-out infinite;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #d4af37, transparent 70%);
    top: 40%;
    left: 60%;
    animation: heroShapeFloat3 15s ease-in-out infinite;
}

@keyframes heroShapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
}

@keyframes heroShapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes heroShapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.2); }
}

/* ===== TRENDING TOPICS ===== */
.blog-trending-section {
    background: rgba(7, 7, 20, 0.95);
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.blog-trending-bar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trending-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.trending-label i {
    font-size: 14px;
    animation: trendingPulse 2s ease-in-out infinite;
}

@keyframes trendingPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}

.trending-tag {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.trending-tag:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    color: #d4af37;
    transform: translateY(-2px);
}

/* ===== CATEGORY FILTER ===== */
.blog-category-filter-section {
    background: rgba(7, 7, 20, 0.95);
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.blog-category-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-category-filter::-webkit-scrollbar {
    display: none;
}

.cat-filter-item {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cat-filter-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    color: #e2e8f0;
    transform: translateY(-1px);
}

.cat-filter-item.active {
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-color: transparent;
    color: #070714;
    font-weight: 700;
}

/* ===== IMAGE OVERLAYS ===== */
.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(7, 7, 20, 0.4));
    pointer-events: none;
}

.blog-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 20, 0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover .blog-card-image-overlay {
    opacity: 1;
}

/* ===== ENHANCED NO RESULTS ===== */
.no-results-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: noResultsPulse 3s ease-in-out infinite;
}

.no-results-icon-wrap i {
    font-size: 32px;
    color: #d4af37;
    margin: 0;
}

@keyframes noResultsPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(212, 175, 55, 0.1); }
}

.no-results-search {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-search .search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    padding: 4px;
    transition: all 0.3s ease;
}

.no-results-search .search-form:focus-within {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.no-results-search .search-form label {
    flex: 1;
    margin: 0;
}

.no-results-search .search-field {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #f1f5f9;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.no-results-search .search-field::placeholder {
    color: #64748b;
}

.no-results-search .search-submit {
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border: none;
    border-radius: 50px;
    color: #070714;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.no-results-search .search-submit:hover {
    background: linear-gradient(135deg, #c49b2f, #b8942a);
    transform: translateX(2px);
}

/* ===== SIDEBAR CTA ENHANCED ===== */
.sidebar-cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-cta-icon i,
.sidebar-cta-icon svg {
    font-size: 22px;
    color: #d4af37;
}

.sidebar-cta-benefit i,
.sidebar-cta-benefit svg {
    font-size: 14px;
    color: #d4af37;
    margin-right: 8px;
}

/* ===== CTA GLOW ===== */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* ===== BACK TO TOP ===== */
.blog-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border: none;
    color: #070714;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.blog-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blog-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ===== ENHANCED CARD EFFECTS ===== */
.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    max-width: none !important;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image .no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.3);
    font-size: 40px;
}

/* Card subtle border glow on hover */
.blog-card::before,
.blog-featured-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.blog-card,
.blog-featured-card {
    position: relative;
}

.blog-card:hover::before,
.blog-featured-card:hover::before {
    opacity: 1;
}

/* Staggered card animation */
.blog-posts-grid .blog-card {
    animation: cardFadeIn 0.6s ease forwards;
    opacity: 0;
}

.blog-posts-grid .blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-posts-grid .blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-posts-grid .blog-card:nth-child(3) { animation-delay: 0.15s; }
.blog-posts-grid .blog-card:nth-child(4) { animation-delay: 0.2s; }
.blog-posts-grid .blog-card:nth-child(5) { animation-delay: 0.25s; }
.blog-posts-grid .blog-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BLOG STATS ENHANCED ===== */
.blog-hero-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #d4af37;
    display: block;
    line-height: 1.2;
    position: relative;
}

.blog-hero-stat-number::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin: 6px auto 0;
    border-radius: 2px;
}

/* ===== RESPONSIVE for new sections ===== */
@media (max-width: 768px) {
    .blog-trending-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-category-filter {
        padding: 2px 0;
    }

    .hero-shape.shape-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
    .hero-shape.shape-2 { width: 200px; height: 200px; bottom: -80px; left: -60px; }
    .hero-shape.shape-3 { display: none; }

    .blog-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .trending-label {
        font-size: 12px;
    }

    .cat-filter-item {
        padding: 6px 14px;
        font-size: 12px;
    }

    .blog-hero-stat-number {
        font-size: 22px;
    }

    .blog-card-body {
        padding: 16px 16px 18px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-section-title {
        font-size: 22px;
    }

    .single-post-hero {
        min-height: 280px;
    }

    .single-post-hero .container {
        padding: 0 12px;
    }

    .single-post-hero .blog-hero-breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 2px 6px;
        font-size: 11px;
        padding: 0 0 12px;
        justify-content: flex-start;
        align-items: center;
    }

    .single-post-hero .blog-hero-breadcrumbs a,
    .single-post-hero .blog-hero-breadcrumbs .separator,
    .single-post-hero .blog-hero-breadcrumbs .current {
        white-space: nowrap;
    }

    .single-post-hero .blog-hero-breadcrumbs .current {
        flex: 0 0 100%;
    }

    .single-post-hero-content {
        padding: 32px 0 24px;
    }

    .single-post-hero-title {
        font-size: 22px;
    }

    .single-post-hero-meta {
        gap: 10px;
        font-size: 12px;
    }

    .single-post-content-area .container {
        padding: 0 12px;
    }

    .single-post-body .post-content {
        font-size: 14px;
    }

    .single-post-body .post-content h1 { font-size: 24px; }
    .single-post-body .post-content h2 { font-size: 20px; }
    .single-post-body .post-content h3 { font-size: 16px; }

    .quick-facts-box {
        padding: 14px;
    }

    .quick-facts-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .post-helpful-box {
        padding: 20px;
    }

    .comment-respond {
        padding: 16px;
    }

    .comments-section {
        padding-top: 24px;
    }
}

/* ============================================
   ENHANCED SINGLE BLOG FEATURES
   ============================================ */

/* ===== READING PROGRESS BAR ===== */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(7, 7, 20, 0.8);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.reading-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, #f0d68a);
    border-radius: 0 2px 2px 0;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ===== HERO PARTICLES (no-image fallback) ===== */
.hero-particles-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles-bg .hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.1;
    animation: blogParticleFloat 8s infinite;
}

.hero-particles-bg .hero-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero-particles-bg .hero-particle:nth-child(2) { top: 70%; left: 85%; animation-delay: 1s; animation-duration: 9s; }
.hero-particles-bg .hero-particle:nth-child(3) { top: 30%; left: 75%; animation-delay: 2s; animation-duration: 6s; }
.hero-particles-bg .hero-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particles-bg .hero-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 3s; animation-duration: 10s; }
.hero-particles-bg .hero-particle:nth-child(6) { top: 20%; left: 45%; animation-delay: 1.5s; animation-duration: 7.5s; }

/* ===== HERO EXCERPT ===== */
.single-post-excerpt {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 700px;
    font-style: italic;
}

/* ===== META DIVIDER ===== */
.single-post-hero-meta .meta-divider {
    color: rgba(212, 175, 55, 0.3);
    font-size: 14px;
}

/* ===== SHARE BUTTONS (Hero) ===== */
.hero-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-share-buttons .share-label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(7, 7, 20, 0.6);
    color: #d4af37;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn.tw:hover { background: #000; color: #fff; border-color: #000; }
.share-btn.ig:hover { background: #e4405f; color: #fff; border-color: #e4405f; }
.share-btn.li:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.share-btn.wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn.copy:hover { background: rgba(212, 175, 55, 0.15); }

/* ===== QUICK FACTS BOX ===== */
.quick-facts-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.quick-facts-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f0d68a, #d4af37);
}

.quick-facts-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-facts-header i {
    font-size: 20px;
    color: #d4af37;
}

.quick-facts-header span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
}

.quick-facts-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quick-fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(7, 7, 20, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.quick-fact-item.full-width {
    grid-column: 1 / -1;
}

.quick-fact-item > i {
    font-size: 18px;
    color: #d4af37;
    flex-shrink: 0;
}

.quick-fact-item .qf-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.quick-fact-item .qf-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
}

.quick-fact-item .qf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.quick-fact-item .qf-tags a {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-fact-item .qf-tags a:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

/* ===== HELPFUL RATING BOX ===== */
.post-helpful-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-top: 36px;
    text-align: center;
}

.helpful-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.helpful-question i {
    font-size: 20px;
    color: #d4af37;
}

.helpful-question span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #f1f5f9;
}

.helpful-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.helpful-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(7, 7, 20, 0.6);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
}

.helpful-btn.yes:hover,
.helpful-btn.yes.active {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #10b981;
}

.helpful-btn.no:hover,
.helpful-btn.no.active {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.helpful-thanks {
    margin-top: 16px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== ENHANCED AUTHOR BOX ===== */
.author-badge-label {
    position: absolute;
    top: 12px;
    left: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.single-post-author-box {
    position: relative;
    padding-top: 48px;
}

.author-social {
    margin-top: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ===== DROP CAP ===== */
.single-post-body .post-content p.drop-cap::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 700;
    color: #d4af37;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 6px;
    padding: 4px 8px 4px 0;
}

/* ===== SIDEBAR TABLE OF CONTENTS ===== */
.widget_toc {
    display: none;
}

.widget_toc.has-items {
    display: block;
}

.sidebar-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-toc-list li {
    margin-bottom: 2px;
}

.sidebar-toc-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.toc-counter {
    font-size: 10px;
    font-weight: 800;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 7px 0 0;
    flex-shrink: 0;
}

.sidebar-toc-link:hover,
.sidebar-toc-link.active {
    background: rgba(212, 175, 55, 0.06);
    border-left-color: #d4af37;
    color: #d4af37;
}

/* ===== SIDEBAR NEWSLETTER ===== */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter-form input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(7, 7, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.sidebar-newsletter-form input:focus {
    border-color: #d4af37;
}

.sidebar-newsletter-form input::placeholder {
    color: #64748b;
}

.sidebar-newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border: none;
    border-radius: 8px;
    color: #070714;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ===== FLOATING SHARE SIDEBAR ===== */
.floating-share-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-80px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-share-sidebar.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
}

.floating-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: #d4af37;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.floating-share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.floating-share-btn.fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.floating-share-btn.tw:hover { background: #000; color: #fff; border-color: #000; }
.floating-share-btn.ig:hover { background: #e4405f; color: #fff; border-color: #e4405f; }
.floating-share-btn.li:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.floating-share-btn.wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.floating-share-btn.copy:hover { background: rgba(212, 175, 55, 0.15); }

/* ===== ENHANCED TAGS ===== */
.post-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 1200px) {
    .floating-share-sidebar {
        display: none;
    }
}

.mobile-sidebar-widgets {
    display: none;
}

.mobile-sidebar-widgets .widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 24px;
}

.mobile-sidebar-widgets .widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-sidebar-widgets .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-widgets .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-sidebar-widgets .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-sidebar-widgets .widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.mobile-sidebar-widgets .widget ul li a:hover {
    color: #d4af37;
    padding-left: 4px;
}

.mobile-sidebar-widgets .widget ul li .post-count {
    float: right;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.mobile-sidebar-widgets .widget_recent_entries ul li,
.mobile-sidebar-widgets .widget_recent_entries ul li a {
    display: block;
}

.mobile-sidebar-widgets .widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.mobile-sidebar-widgets .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-sidebar-widgets .tagcloud a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-sidebar-widgets .tagcloud a:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-sidebar-widgets {
        display: block;
        margin-top: 32px;
    }

    .blog-sidebar .widget_categories,
    .blog-sidebar .widget_tag_cloud,
    .blog-sidebar .widget_recent_entries,
    .blog-sidebar .widget_trending {
        display: none;
    }

    .quick-facts-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .quick-fact-item {
        padding: 10px;
    }
    
    .hero-share-buttons {
        justify-content: center;
    }

    .hero-share-buttons .share-label {
        width: 100%;
        text-align: center;
    }
    
    .single-post-excerpt {
        font-size: 15px;
    }
    
    .reading-progress-bar {
        height: 3px;
    }
    
    .floating-share-sidebar {
        display: none;
    }
    
    .quick-facts-box {
        padding: 20px;
    }
    
}

/* SVG icon fallbacks */
.blog-featured-meta .post-date svg,
.blog-featured-meta .post-read-time svg,
.blog-card-date svg,
.blog-sidebar .widget-title svg,
.single-post-hero-meta .meta-item svg,
.cta-benefits span svg,
.trending-label svg,
.no-results-icon-wrap svg,
.no-results-box svg,
.no-results-btn svg,
.related-post-card .related-date svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}
