/* Single Blog Page - Clean & Simple Design */

/* Main blog container */
.single-blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Blog post card */
.blog-post-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero image */
.blog-hero-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    display: none;
}

/* Blog header */
.blog-header {
    padding: 30px;
    text-align: left;
}

.blog-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #3182ce;
}

/* Meta information */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i:not(.fa) {
    font-size: 1rem;
    color: #3182ce;
}

/* Blog content */
.blog-content {
    padding: 0 30px 30px;
    line-height: 1.7;
    color: #2d3748;
    font-size: 1rem;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
    color: #1a202c;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.6rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.blog-content blockquote {
    background: #f7fafc;
    border-left: 4px solid #3182ce;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 4px;
}

/* Tags */
.blog-tags {
    padding: 0 30px 30px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: #4a5568;
    margin-right: 10px;
    font-size: 0.9rem;
}

.tag-item {
    padding: 6px 12px;
    background: #edf2f7;
    color: #4a5568;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.tag-item:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

/* Author box */
.author-box {
    margin: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.author-info p {
    margin: 0;
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Navigation */
.post-navigation {
    margin: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.nav-link {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.nav-link:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.nav-link small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Social sharing */
.social-sharing {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #fafafa;
}

.social-sharing h4 {
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
    font-size: 1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Fallback text for when icons don't load */
.social-btn:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

.social-btn.facebook { 
    background: #1877f2; 
}
.social-btn.facebook:before {
    content: "\f09a"; /* fa-facebook */
}

.social-btn.twitter { 
    background: #1da1f2; 
}
.social-btn.twitter:before {
    content: "\f099"; /* fa-twitter */
}

.social-btn.linkedin { 
    background: #0077b5; 
}
.social-btn.linkedin:before {
    content: "\f0e1"; /* fa-linkedin */
}

.social-btn.pinterest { 
    background: #bd081c; 
}
.social-btn.pinterest:before {
    content: "\f0d2"; /* fa-pinterest */
}

/* Alternative with text fallback */
.social-btn span {
    display: none;
    font-size: 0.7rem;
    font-weight: bold;
}

/* If FontAwesome fails, show text */
.no-fontawesome .social-btn:before {
    display: none;
}

.no-fontawesome .social-btn span {
    display: block;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Add social sharing styles that can be used with any HTML structure */
.social-share-wrapper {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.social-share-wrapper h4 {
    margin: 0 0 15px 0;
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
}

.social-share-btn.facebook {
    background: #1877f2;
}

.social-share-btn.twitter {
    background: #1da1f2;
}

.social-share-btn.linkedin {
    background: #0077b5;
}

.social-share-btn.pinterest {
    background: #bd081c;
}

.social-share-btn.whatsapp {
    background: #25d366;
}

/* Fix for FontAwesome icons in meta */
.blog-details-content .fa {
    margin-right: 5px;
    color: #3182ce;
}

/* Fix for existing post meta icons */
.blog-details-content h6 .fa {
    margin-right: 8px;
    color: #3182ce;
    font-size: 0.9rem;
}

.blog-details-content h6 .fa-comments-o:before {
    content: "\f0e6";
    font-family: FontAwesome;
}

/* Make sure FontAwesome loads properly */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont3e6e.eot');
    src: url('../fonts/fontawesome-webfont3e6e.eot?#iefix') format('embedded-opentype'),
         url('../fonts/fontawesome-webfont3e6e.woff2') format('woff2'),
         url('../fonts/fontawesome-webfont3e6e.woff') format('woff'),
         url('../fonts/fontawesome-webfont3e6e.ttf') format('truetype'),
         url('../fonts/fontawesome-webfont3e6e.svg#FontAwesome') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* General FontAwesome icon fixes */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Common social media icons */
.fa-facebook:before { content: "\f09a"; }
.fa-twitter:before { content: "\f099"; }
.fa-linkedin:before { content: "\f0e1"; }
.fa-pinterest:before { content: "\f0d2"; }
.fa-comments-o:before { content: "\f0e6"; }
.fa-calendar:before { content: "\f073"; }
.fa-user:before { content: "\f007"; }
.fa-folder:before { content: "\f07b"; }
.fa-tags:before { content: "\f02c"; }

/* Comments section */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* ===============================================
   ULTRA SIMPLE SIDEBAR UI
   =============================================== */

/* Main sidebar container */
.widget-area,
#secondary {
    background: transparent;
    padding: 0;
}

/* Individual widget styling */
.widget {
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 0;
}

/* Widget titles */
.widget-title,
.widget h2,
.widget h3,
.widget h4 {
    background: #f0f0f0;
    color: #333;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

/* Widget content */
.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: #0073aa;
}

/* Search widget */
.widget_search .search-form {
    padding: 15px;
}

.widget_search input[type="search"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.widget_search input[type="submit"] {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    width: 100%;
}

/* Text widget */
.widget_text .textwidget {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
}

/* Tag cloud */
.widget_tag_cloud .tagcloud {
    padding: 15px;
}

.widget_tag_cloud a {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 12px !important;
}

.widget_tag_cloud a:hover {
    background: #0073aa;
    color: white;
}

/* Calendar */
.widget_calendar table {
    width: 100%;
    margin: 15px;
    font-size: 12px;
}

.widget_calendar th,
.widget_calendar td {
    padding: 5px;
    text-align: center;
    border: 1px solid #eee;
}

.widget_calendar th {
    background: #f0f0f0;
    font-weight: bold;
}

/* Categories/Archives count */
.widget_categories .post-count,
.widget_archive .post-count {
    background: #0073aa;
    color: white;
    padding: 1px 5px;
    font-size: 11px;
    border-radius: 2px;
    float: right;
}

/* Recent posts date */
.widget_recent_entries .post-date {
    color: #666;
    font-size: 12px;
    display: block;
    margin-top: 3px;
}

/* ===============================================
   MODERN SIDEBAR UI DESIGN
   =============================================== */

/* Sidebar container with modern styling */
.sidebar,
.widget-area,
#secondary {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Modern widget cards */
.widget {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    margin-bottom: 30px;
    padding: 0;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Modern widget headers - simplified and cleaner */
.widget-title,
.widget h2,
.widget h3,
.widget h4 {
    background: #ffffff;
    color: #2d3748;
    padding: 20px 25px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    border: none;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    border-bottom: 3px solid #e2e8f0;
}

.widget-title:after,
.widget h2:after,
.widget h3:after,
.widget h4:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1 0%, #3182ce 100%);
    border-radius: 2px;
}

/* Remove the shimmer animation */
.widget-title:before,
.widget h2:before,
.widget h3:before,
.widget h4:before {
    display: none;
}

/* Modern content styling */
.widget-content,
.widget .textwidget,
.widget ul,
.widget ol {
    padding: 0;
    margin: 0;
}

/* Modern list styling */
.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 16px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.widget li:last-child {
    border-bottom: none;
}

.widget li:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    padding-left: 35px;
}

.widget li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.widget li:hover:before {
    transform: scaleY(1);
}

/* Modern link styling */
.widget a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.widget a:hover {
    color: #667eea;
}

/* Premium Search Widget - simplified */
.widget_search {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border: none;
    position: relative;
}

.widget_search .search-form {
    padding: 30px 25px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.widget_search input[type="search"] {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.widget_search input[type="search"]:focus {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.widget_search input[type="search"]::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.widget_search input[type="submit"] {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.widget_search input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.6);
}

/* Special styling for search widget header */
.widget_search .widget-title,
.widget_search h2 {
    background: transparent;
    color: white;
    text-align: center;
    font-size: 16px;
    border-bottom: none;
}

.widget_search .widget-title:after,
.widget_search h2:after {
    display: none;
}

/* Modern Categories and Archives */
.widget_categories li,
.widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
}

.widget_categories .post-count,
.widget_archive .post-count {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Modern Recent Posts */
.widget_recent_entries li {
    padding: 20px 25px;
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.widget_recent_entries li:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, transparent 100%);
}

.widget_recent_entries li:before {
    content: '📝';
    position: absolute;
    left: 25px;
    top: 22px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_recent_entries li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_recent_entries li:hover {
    padding-left: 55px;
}

.widget_recent_entries .post-date {
    color: #a0aec0;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-weight: 500;
}

.widget_recent_entries .post-date:before {
    content: '🕒';
    margin-right: 6px;
    font-size: 12px;
}

.widget_recent_entries a {
    font-weight: 600;
    line-height: 1.4;
    color: #2d3748;
    display: block;
}

.widget_recent_entries a:hover {
    color: #667eea;
}

/* Premium Tag Cloud */
.widget_tag_cloud {
    background: linear-gradient(145deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.widget_tag_cloud:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23667eea" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23764ba2" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23667eea" opacity="0.1"/></svg>');
    pointer-events: none;
}

.widget_tag_cloud .tagcloud {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.widget_tag_cloud a {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    background: white;
    color: #4a5568;
    text-decoration: none;
    font-size: 13px !important;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.widget_tag_cloud a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.widget_tag_cloud a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.widget_tag_cloud a:hover:before {
    left: 0;
}

/* Modern Text Widget */
.widget_text {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.widget_text .textwidget {
    padding: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    position: relative;
}

.widget_text .textwidget p {
    margin-bottom: 16px;
    position: relative;
}

.widget_text .textwidget p:first-child:first-letter {
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0 8px 0 0;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget_text .textwidget p:last-child {
    margin-bottom: 0;
}

/* Modern Calendar */
.widget_calendar {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

.widget_calendar table {
    width: calc(100% - 50px);
    margin: 25px;
    border-collapse: separate;
    border-spacing: 3px;
    font-size: 13px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.widget_calendar th,
.widget_calendar td {
    padding: 12px 8px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.widget_calendar th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.widget_calendar td {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.widget_calendar td:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
}

.widget_calendar td a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: inline-block;
    min-width: 25px;
    height: 25px;
    line-height: 9px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.widget_calendar td a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.2);
    border-color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Recent comments styling */
.widget_recent_comments li {
    padding: 12px 18px;
    border-left: 3px solid #ffc107;
}

.widget_recent_comments li:hover {
    background: #fff3cd;
    border-left-color: #fd7e14;
}

/* Navigation menu styling */
.widget_nav_menu ul {
    padding: 0;
}

.widget_nav_menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.widget_nav_menu li:before {
    content: '→';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_nav_menu li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_nav_menu a {
    display: block;
    padding: 16px 25px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.widget_nav_menu a:hover {
    color: #667eea;
    padding-left: 55px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

/* Modern Recent Comments */
.widget_recent_comments li {
    padding: 18px 25px;
    border-left: none;
    position: relative;
}

.widget_recent_comments li:before {
    content: '💬';
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_recent_comments li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_recent_comments li:hover {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
    padding-left: 55px;
}

/* Modern Meta Widget */
.widget_meta li {
    position: relative;
}

.widget_meta li:before {
    content: "✨";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_meta li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_meta li:hover {
    padding-left: 55px;
}

/* Modern RSS Widget */
.widget_rss li {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.widget_rss li:before {
    content: '📡';
    position: absolute;
    left: 25px;
    top: 22px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_rss li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_rss li:hover {
    padding-left: 55px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.widget_rss .rss-date {
    color: #a0aec0;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 6px;
    font-weight: 500;
}

.widget_rss .rss-date:before {
    content: '📅';
    margin-right: 6px;
    font-size: 10px;
}

/* Pages widget styling */
.widget_pages li {
    position: relative;
}

.widget_pages li:before {
    content: "📄";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_pages li:hover:before {
    opacity: 1;
    left: 30px;
}

.widget_pages li:hover {
    padding-left: 55px;
}

/* Responsive design */
@media (max-width: 768px) {
    .single-blog-container {
        padding: 20px 15px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-header,
    .blog-content,
    .blog-tags,
    .author-box,
    .post-navigation,
    .social-sharing,
    .comments-area {
        margin: 20px;
        padding: 20px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.6rem;
    }
    
    .blog-content {
        font-size: 0.95rem;
    }
    
    .social-buttons {
        gap: 8px;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .blog-header,
    .blog-content,
    .blog-tags,
    .author-box,
    .post-navigation,
    .social-sharing,
    .comments-area {
        margin: 15px;
        padding: 15px;
    }
}

/* Simple fade animation */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .social-sharing,
    .post-navigation {
        display: none;
    }
    
    .blog-post-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .single-blog-container {
        background: white;
    }
}

/* Loading animation for widgets */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget {
    animation: fadeInUp 0.6s ease-out;
}

.widget:nth-child(1) { animation-delay: 0.1s; }
.widget:nth-child(2) { animation-delay: 0.2s; }
.widget:nth-child(3) { animation-delay: 0.3s; }
.widget:nth-child(4) { animation-delay: 0.4s; }
.widget:nth-child(5) { animation-delay: 0.5s; }
