/* ============================================
   BLOG POST STYLING - Brand Matching
   ============================================ */

/* Import Alice font if not already loaded */
@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');

/* Blog Post Container & Body Text */
.single-post .entry-content,
.single-post article,
.post .entry-content,
article.post,
.hentry .entry-content {
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Blog Post Title (H1) - Colorful Gradient */
.single-post .entry-title,
.single-post h1.entry-title,
article.post h1,
.hentry h1.entry-title {
    font-family: 'Alice', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3A86FF, #6366f1, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* H2 Headings - Blue to Purple Gradient */
.single-post .entry-content h2,
.post .entry-content h2,
article.post h2 {
    font-family: 'Alice', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #3A86FF, #6366f1, transparent) 1;
}

/* H3 Headings - Purple to Pink Gradient */
.single-post .entry-content h3,
.post .entry-content h3,
article.post h3 {
    font-family: 'Alice', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 35px 0 15px;
}

/* H4 Headings - Pink to Cyan Gradient */
.single-post .entry-content h4,
.post .entry-content h4,
article.post h4 {
    font-family: 'Alice', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0 12px;
}

/* H5 Headings - Cyan to Blue Gradient */
.single-post .entry-content h5,
.post .entry-content h5,
article.post h5 {
    font-family: 'Alice', serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #3A86FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0 10px;
}

/* H6 Headings - Solid Accent Blue */
.single-post .entry-content h6,
.post .entry-content h6,
article.post h6 {
    font-family: 'Alice', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #3A86FF;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs in Blog Posts */
.single-post .entry-content p,
.post .entry-content p,
article.post p {
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* Blog Post Links */
.single-post .entry-content a,
.post .entry-content a,
article.post .entry-content a {
    color: #3A86FF;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.single-post .entry-content a:hover,
.post .entry-content a:hover,
article.post .entry-content a:hover {
    color: #6366f1;
    border-bottom-color: #6366f1;
}

/* Blockquotes - Stylish with gradient border */
.single-post .entry-content blockquote,
.post .entry-content blockquote,
article.post blockquote {
    font-family: 'Alice', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #3A86FF, #6366f1, #ec4899) 1;
    padding: 20px 30px;
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 0 8px 8px 0;
}

/* Lists in Blog Posts */
.single-post .entry-content ul,
.single-post .entry-content ol,
.post .entry-content ul,
.post .entry-content ol {
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
    padding-left: 30px;
}

.single-post .entry-content li,
.post .entry-content li {
    margin-bottom: 10px;
}

/* Code blocks */
.single-post .entry-content code,
.post .entry-content code {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(99, 102, 241, 0.1));
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #6366f1;
}

.single-post .entry-content pre,
.post .entry-content pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
    border: 1px solid rgba(58, 134, 255, 0.3);
}

/* Blog Archive / Post List Titles */
.archive .entry-title a,
.blog .entry-title a,
.search-results .entry-title a {
    font-family: 'Alice', serif;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #3A86FF, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.archive .entry-title a:hover,
.blog .entry-title a:hover,
.search-results .entry-title a:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Post Meta - Date, Author, Categories */
.single-post .entry-meta,
.post .entry-meta {
    font-family: 'Alice', serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
}

.single-post .entry-meta a,
.post .entry-meta a {
    color: #3A86FF;
    transition: color 0.3s ease;
}

.single-post .entry-meta a:hover,
.post .entry-meta a:hover {
    color: #ec4899;
}

/* Post Categories & Tags */
.single-post .cat-links a,
.single-post .tags-links a,
.post .cat-links a,
.post .tags-links a {
    font-family: 'Alice', serif;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(99, 102, 241, 0.1));
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #3A86FF;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.single-post .cat-links a:hover,
.single-post .tags-links a:hover,
.post .cat-links a:hover,
.post .tags-links a:hover {
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    color: #fff;
}

/* Images in Blog Posts */
.single-post .entry-content img,
.post .entry-content img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(58, 134, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post .entry-content img:hover,
.post .entry-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(58, 134, 255, 0.25);
}

/* Captions */
.single-post .wp-caption-text,
.post .wp-caption-text {
    font-family: 'Alice', serif;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

/* Tables in Blog Posts */
.single-post .entry-content table,
.post .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: 'Alice', serif;
}

.single-post .entry-content th,
.post .entry-content th {
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    color: #fff;
    padding: 12px 15px;
    text-align: left;
}

.single-post .entry-content td,
.post .entry-content td {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 15px;
    color: #444;
}

.single-post .entry-content tr:hover td,
.post .entry-content tr:hover td {
    background: rgba(58, 134, 255, 0.05);
}

/* Mobile Responsive for Blog Posts */
@media (max-width: 768px) {

    .single-post .entry-title,
    .single-post h1.entry-title {
        font-size: 1.8rem;
    }

    .single-post .entry-content h2,
    .post .entry-content h2 {
        font-size: 1.5rem;
    }

    .single-post .entry-content h3,
    .post .entry-content h3 {
        font-size: 1.3rem;
    }

    .single-post .entry-content p,
    .post .entry-content p {
        font-size: 1rem;
    }

    .single-post .entry-content blockquote,
    .post .entry-content blockquote {
        padding: 15px 20px;
        font-size: 1.05rem;
    }
}

/* ============================================
   AUTHOR BOX STYLING
   ============================================ */

.iv-author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 50px 0 40px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.iv-author-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3A86FF, #6366f1, #ec4899, #06b6d4);
}

.iv-author-avatar {
    margin-bottom: 20px;
}

.iv-author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #3A86FF, #6366f1, #ec4899) border-box;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.2);
}

.iv-author-info {
    flex: 1;
}

.iv-author-name {
    font-family: 'Alice', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iv-author-bio {
    font-family: 'Alice', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 500px;
}

.iv-author-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.iv-author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(99, 102, 241, 0.1));
    color: #3A86FF;
    transition: all 0.3s ease;
}

.iv-author-social a:hover {
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

/* ============================================
   COMMENT SECTION STYLING
   ============================================ */

.iv-comment-login-notice {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.08), rgba(99, 102, 241, 0.08));
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #3A86FF, #6366f1, #ec4899) 1;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-family: 'Alice', serif;
}

.iv-comment-login-notice p {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #444;
}

.iv-comment-login-notice p:last-child {
    margin-bottom: 0;
}

.iv-comment-login-notice a {
    color: #3A86FF;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.iv-comment-login-notice a:hover {
    color: #6366f1;
    text-decoration: underline;
}

/* Comment Form Styling */
.comment-form {
    font-family: 'Alice', serif;
}

.comment-form label {
    font-family: 'Alice', serif;
    font-weight: 600;
    color: #333;
}

.comment-form textarea,
.comment-form input[type="text"] {
    font-family: 'Alice', serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus {
    border-color: #3A86FF;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
    outline: none;
}

.comment-form .submit {
    font-family: 'Alice', serif;
    background: linear-gradient(135deg, #3A86FF, #6366f1);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: linear-gradient(135deg, #6366f1, #3A86FF);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

/* Comments List Styling */
.comment-list {
    font-family: 'Alice', serif;
}

.comment-list .comment {
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(58, 134, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(58, 134, 255, 0.1);
}

.comment-list .comment-author {
    font-weight: 700;
    color: #3A86FF;
}

.comment-list .comment-content {
    color: #444;
    line-height: 1.7;
}

/* Mobile Responsive for Author Box */
@media (max-width: 768px) {
    .iv-author-box {
        padding: 25px 15px !important;
        margin: 30px 0 25px;
    }

    .iv-author-avatar img {
        width: 80px;
        height: 80px;
    }

    .iv-author-name {
        font-size: 1.25rem;
    }

    .iv-author-bio {
        font-size: 0.95rem;
    }

    .iv-author-social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .iv-author-social a {
        width: 40px;
        height: 40px;
    }

    .iv-comment-login-notice {
        padding: 20px;
    }

    .iv-comment-login-notice p {
        font-size: 1rem;
    }
}

/* ============================================
   CATEGORY/ARCHIVE PAGE STYLING
   ============================================ */

/* Dark background for category/archive pages */
body.archive,
body.category,
body.tag,
body.author,
body.search,
.archive .site-content,
.category .site-content,
.tag .site-content {
    background-color: #000 !important;
}

/* Category/Archive page titles */
.archive .page-header,
.category .page-header,
.tag .page-header,
.archive .archive-title,
.category .archive-title,
.tag .archive-title,
.archive .page-title,
.category .page-title,
.tag .page-title {
    color: #fff !important;
}

/* Archive description */
.archive .archive-description,
.category .archive-description,
.tag .archive-description,
.archive .taxonomy-description,
.category .taxonomy-description {
    color: var(--text-secondary) !important;
}

/* Post entries in archive/category */
.archive article,
.category article,
.tag article,
.archive .post,
.category .post,
.tag .post {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
}

.archive article:hover,
.category article:hover,
.tag article:hover {
    background-color: rgba(58, 134, 255, 0.05) !important;
    border-color: var(--accent-blue) !important;
    transform: translateY(-2px) !important;
}

/* Post titles in archive/category */
.archive .entry-title,
.category .entry-title,
.tag .entry-title,
.archive .entry-title a,
.category .entry-title a,
.tag .entry-title a {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
}

.archive .entry-title a:hover,
.category .entry-title a:hover,
.tag .entry-title a:hover {
    color: var(--accent-blue) !important;
}

/* Post excerpts/content in archive */
.archive .entry-summary,
.category .entry-summary,
.tag .entry-summary,
.archive .entry-summary p,
.category .entry-summary p,
.tag .entry-summary p,
.archive .entry-content,
.category .entry-content,
.tag .entry-content {
    color: var(--text-secondary) !important;
}

/* Post meta in archive */
.archive .entry-meta,
.category .entry-meta,
.tag .entry-meta,
.archive .entry-meta span,
.category .entry-meta span,
.tag .entry-meta span,
.archive .entry-meta a,
.category .entry-meta a,
.tag .entry-meta a {
    color: var(--text-secondary) !important;
}

/* Links in archive - NO UNDERLINES */
.archive a,
.category a,
.tag a,
.archive .entry-content a,
.category .entry-content a,
.tag .entry-content a,
.archive .entry-meta a,
.category .entry-meta a,
.tag .entry-meta a {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Read more links */
.archive .read-more,
.category .read-more,
.tag .read-more,
.archive .more-link,
.category .more-link,
.tag .more-link {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.archive .read-more:hover,
.category .read-more:hover,
.tag .read-more:hover,
.archive .more-link:hover,
.category .more-link:hover,
.tag .more-link:hover {
    color: #6366f1 !important;
}

/* Pagination */
.archive .pagination,
.category .pagination,
.tag .pagination,
.archive .nav-links,
.category .nav-links,
.tag .nav-links {
    color: #fff !important;
}

.archive .pagination a,
.category .pagination a,
.tag .pagination a,
.archive .page-numbers,
.category .page-numbers,
.tag .page-numbers {
    color: #fff !important;
    text-decoration: none !important;
    border: 1px solid var(--border-color) !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    background: transparent !important;
}

.archive .pagination a:hover,
.category .pagination a:hover,
.tag .pagination a:hover,
.archive .page-numbers:hover,
.category .page-numbers:hover,
.tag .page-numbers:hover {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
}

.archive .page-numbers.current,
.category .page-numbers.current,
.tag .page-numbers.current {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
}

/* Featured images in archive */
.archive .post-image,
.category .post-image,
.tag .post-image,
.archive .featured-image,
.category .featured-image,
.tag .featured-image {
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Sidebar on archive pages */
.archive .sidebar,
.category .sidebar,
.tag .sidebar {
    color: #fff !important;
}

.archive .widget-title,
.category .widget-title,
.tag .widget-title {
    color: #fff !important;
}

.archive .widget a,
.category .widget a,
.tag .widget a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}

.archive .widget a:hover,
.category .widget a:hover,
.tag .widget a:hover {
    color: var(--accent-blue) !important;
}

/* ============================================
   8. ADDITIONAL FIXES - v6.0.0
   ============================================ */

/* SINGLE POST META - White text for date/author */
.single .entry-meta,
.single-post .entry-meta,
.single .entry-meta span,
.single-post .entry-meta span,
.single .posted-on,
.single-post .posted-on,
.single .posted-on a,
.single-post .posted-on a,
.single .byline,
.single-post .byline,
.single .byline a,
.single-post .byline a,
.single .author,
.single-post .author,
.single .author a,
.single-post .author a,
.single .cat-links,
.single-post .cat-links,
.single .cat-links a,
.single-post .cat-links a,
.single .tags-links,
.single-post .tags-links,
.single .tags-links a,
.single-post .tags-links a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}

.single .entry-meta a:hover,
.single-post .entry-meta a:hover {
    color: var(--accent-blue) !important;
}

/* COMMENT FORM - Fix "Logged in as" text visibility */
.single .logged-in-as,
.single-post .logged-in-as,
.single .must-log-in,
.single-post .must-log-in,
.single .comment-notes,
.single-post .comment-notes,
.single .comment-form-comment label,
.single-post .comment-form-comment label {
    color: #fff !important;
}

.single .logged-in-as a,
.single-post .logged-in-as a {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
}

/* Comment form required fields text */
.single .required-field-message,
.single-post .required-field-message,
.single .comment-notes .required,
.single-post .comment-notes .required {
    color: #fff !important;
}

.single .comment-notes .required,
.single-post .comment-notes .required {
    color: #ef4444 !important;
}

/* Comment textarea - ensure text is visible */
.single .comment-form #comment,
.single-post .comment-form #comment,
.single .comment-form textarea,
.single-post .comment-form textarea {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* ============================================
   16. FIX DUPLICATE POSTS ON ARCHIVE
   ============================================ */

/* Ensure the article container itself is visible */
body.iv-custom-archive-layout article.post,
body.archive article.post,
body.category article.post {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
}

/* Ensure content within archive posts is visible */
body.archive article.post .entry-content,
body.archive article.post .entry-summary,
body.category article.post .entry-content,
body.category article.post .entry-summary {
    display: block !important;
    visibility: visible !important;
    color: #cccccc !important;
}

/* Ensure our custom card remains visible and styled */
.iv-archive-post-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    margin-bottom: 20px;
}

/* ============================================
    GRID LAYOUT FOR ARCHIVE PAGES
   ============================================ */

.iv-archive-title a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.iv-archive-title a:hover {
    color: var(--accent-blue) !important;
}

/* Archive meta (author, date) */
.iv-archive-meta {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 12px !important;
}

.iv-archive-meta .iv-author,
.iv-archive-meta .iv-date {
    color: #888 !important;
}

/* Archive excerpt */
.iv-archive-excerpt {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Grid layout for archive pages */
body.iv-custom-archive-layout .site-main {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    padding: 30px 5% !important;
}

body.iv-custom-archive-layout .page-header {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

body.iv-custom-archive-layout article {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

body.iv-custom-archive-layout article:hover {
    background: rgba(58, 134, 255, 0.05) !important;
    border-color: var(--accent-blue) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.15) !important;
}

body.iv-custom-archive-layout article .inside-article {
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Hide default GeneratePress content we don't need */
/* Ensure content is visible and styled */
body.iv-custom-archive-layout article .inside-article>.entry-content,
body.iv-custom-archive-layout article .inside-article>.entry-summary {
    display: block !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 10px !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Style the title inside the card */
body.iv-custom-archive-layout article .entry-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

body.iv-custom-archive-layout article .entry-title a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.iv-custom-archive-layout article .entry-title a:hover {
    color: var(--accent-blue) !important;
}

/* Post meta styling */
body.iv-custom-archive-layout article .entry-meta {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 10px !important;
}

/* Mobile: 1 column */
@media screen and (max-width: 768px) {
    body.iv-custom-archive-layout .site-main {
        grid-template-columns: 1fr !important;
        padding: 20px 15px !important;
    }

    .iv-archive-title {
        font-size: 1.1rem !important;
    }

    .iv-archive-post-content {
        padding: 15px !important;
    }
}

/* Tablet: 2 columns */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    body.iv-custom-archive-layout .site-main {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   SINGLE BLOG POST - MOBILE RESPONSIVENESS
   ============================================ */

@media screen and (max-width: 768px) {

    /* Single post containers - reduce padding dramatically */
    body.single-post .site-content,
    body.single-post #content,
    body.single .site-content,
    body.single .content-area {
        padding: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.single-post article,
    body.single article,
    body.single-post .inside-article,
    body.single .inside-article {
        padding: 15px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Entry content - minimal padding */
    body.single-post .entry-content,
    body.single .entry-content {
        padding: 10px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Post title - responsive size */
    body.single-post .entry-title,
    body.single .entry-title,
    body.single-post h1.entry-title,
    body.single h1.entry-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    /* Post content text - readable size */
    body.single-post .entry-content p,
    body.single .entry-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.2em !important;
        word-wrap: break-word !important;
    }

    /* Post meta */
    body.single-post .entry-meta,
    body.single .entry-meta {
        font-size: 0.85rem !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Featured image */
    body.single-post .post-image,
    body.single-post .featured-image,
    body.single .post-image,
    body.single .wp-post-image {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px !important;
        border-radius: 8px !important;
    }

    /* Images in content */
    body.single-post .entry-content img,
    body.single .entry-content img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Headings in content */
    body.single-post .entry-content h2,
    body.single .entry-content h2 {
        font-size: 1.4rem !important;
        margin-top: 1.5em !important;
    }

    body.single-post .entry-content h3,
    body.single .entry-content h3 {
        font-size: 1.2rem !important;
    }

    /* Lists */
    body.single-post .entry-content ul,
    body.single-post .entry-content ol,
    body.single .entry-content ul,
    body.single .entry-content ol {
        padding-left: 20px !important;
        margin-left: 0 !important;
    }

    /* Blockquotes */
    body.single-post .entry-content blockquote,
    body.single .entry-content blockquote {
        margin: 1em 0 !important;
        padding: 15px 20px !important;
        border-left-width: 3px !important;
    }

    /* Tables */
    body.single-post .entry-content table,
    body.single .entry-content table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
    }

    /* Post navigation */
    body.single-post .post-navigation,
    body.single .post-navigation {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Comments section */
    body.single-post #comments,
    body.single #comments {
        padding: 15px !important;
    }

    body.single-post .comment-list,
    body.single .comment-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    body.single-post #respond,
    body.single #respond {
        padding: 15px !important;
    }

    body.single-post #respond input,
    body.single-post #respond textarea,
    body.single #respond input,
    body.single #respond textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    /* Remove any box shadow that causes visual crowding */
    body.single-post article,
    body.single article {
        box-shadow: none !important;
    }

    /* Prevent horizontal overflow */
    body.single-post,
    body.single {
        overflow-x: hidden !important;
    }

    body.single-post *,
    body.single * {
        max-width: 100% !important;
    }
}

/* ============================================
   37. ARCHIVE POST CARD STYLING - FIX VISIBILITY
   ============================================ */

/* Custom archive post cards - ensure visibility */
.iv-archive-post-card {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.iv-archive-post-card:hover {
    background: rgba(58, 134, 255, 0.05) !important;
    border-color: var(--accent-blue) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.15) !important;
}

/* Archive thumbnail container */
.iv-archive-thumbnail {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    overflow: hidden !important;
}

.iv-archive-thumbnail a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.iv-archive-featured-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.iv-archive-post-card:hover .iv-archive-featured-img {
    transform: scale(1.05) !important;
}

/* Archive post content */
.iv-archive-post-content {
    padding: 20px !important;
    flex: 1 !important;
}

/* Archive title */
.iv-archive-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.4 !important;
}

/* ============================================
   SINGLE POST STAGED STYLES
   Moved from style.css
   ============================================ */

/* Dark background for single posts */
body.single,
body.single-post,
.single .site-content,
.single-post .site-content {
    background-color: #000 !important;
}

/* Center single post content */
body.single .site-content,
body.single-post .site-content {
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Center the main container */
.single #primary,
.single-post #primary {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}

/* Apply padding ONLY to the inner article */
body.single .inside-article,
body.single-post .inside-article {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure article itself is full width of its container */
body.single article.post,
body.single-post article.post {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* GeneratePress specific content wrapper centering */
body.single .container.grid-container,
body.single-post .container.grid-container,
body.single .site-main,
body.single-post .site-main {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Make sure content wrapper is centered on desktop */
@media screen and (min-width: 769px) {

    body.single .site-content>.container,
    body.single-post .site-content>.container,
    body.single .content-area,
    body.single-post .content-area {
        max-width: 900px !important;
        margin: 0 auto !important;
        float: none !important;
        width: 100% !important;
    }
}

/* Comment form dark mode */
.single .comment-form,
.single-post .comment-form {
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-color) !important;
}

.single .comment-form label,
.single-post .comment-form label {
    color: #fff !important;
}

.single .comment-form textarea,
.single-post .comment-form textarea,
.single .comment-form input[type="text"],
.single-post .comment-form input[type="text"],
.single .comment-form input[type="email"],
.single-post .comment-form input[type="email"],
.single .comment-form input[type="url"],
.single-post .comment-form input[type="url"] {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--border-color) !important;
    color: #fff !important;
    font-size: 1rem;
}

.single .comment-form textarea::placeholder,
.single-post .comment-form textarea::placeholder,
.single .comment-form input::placeholder,
.single-post .comment-form input::placeholder {
    color: var(--text-secondary) !important;
}

.single .comment-form textarea:focus,
.single-post .comment-form textarea:focus,
.single .comment-form input:focus,
.single-post .comment-form input:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2) !important;
    outline: none !important;
}

/* Comment login notice dark mode */
.single .iv-comment-login-notice,
.single-post .iv-comment-login-notice {
    background: rgba(58, 134, 255, 0.1) !important;
}

.single .iv-comment-login-notice p,
.single-post .iv-comment-login-notice p {
    color: #fff !important;
}

/* Comments list dark mode */
.single .comment-list .comment,
.single-post .comment-list .comment {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
}

.single .comment-list .comment-content,
.single-post .comment-list .comment-content {
    color: #fff !important;
}

/* Respond section dark mode */
.single #respond,
.single-post #respond,
.single .comment-respond,
.single-post .comment-respond {
    max-width: 100% !important;
    background: transparent !important;
}

.single .comment-reply-title,
.single-post .comment-reply-title {
    color: #fff !important;
}

.single .comment-notes,
.single-post .comment-notes,
.single .logged-in-as,
.single-post .logged-in-as {
    color: var(--text-secondary) !important;
}

.single .logged-in-as a,
.single-post .logged-in-as a {
    color: var(--accent-blue) !important;
}

/* ---- MOBILE BLOG STYLES ---- */
@media screen and (max-width: 768px) {

    /* Single post padding */
    body.single .entry-content,
    body.single-post .entry-content {
        padding: 0 15px !important;
    }

    body.single article,
    body.single-post article {
        padding: 15px !important;
        max-width: 100% !important;
    }

    body.single .entry-title,
    body.single-post .entry-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
    }

    /* Single post images mobile */
    body.single .entry-content img,
    body.single-post .entry-content img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Comments Mobile */
    .comments-area,
    #comments {
        padding: 15px !important;
    }

    .comment-form textarea {
        width: 100% !important;
        min-height: 120px !important;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"] {
        width: 100% !important;
    }

    body.single-post .entry-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.2em !important;
    }

    /* Images - full width on mobile */
    body.single-post .entry-content img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }

    body.single-post .wp-block-image {
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
    }

    body.single-post .wp-block-image img {
        border-radius: 0 !important;
    }

    /* Lists */
    body.single-post .entry-content ul,
    body.single-post .entry-content ol {
        padding-left: 20px !important;
    }

    body.single-post .entry-content li {
        margin-bottom: 8px !important;
    }

    /* Blockquotes */
    body.single-post .entry-content blockquote {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        font-size: 1rem !important;
    }

    /* Code blocks */
    body.single-post .entry-content pre {
        font-size: 0.85rem !important;
        overflow-x: auto !important;
        padding: 15px !important;
    }

    /* Tables on mobile */
    body.single-post .entry-content table {
        display: block !important;
        overflow-x: auto !important;
        width: 100% !important;
    }

    /* Post meta */
    body.single-post .entry-meta {
        font-size: 0.85rem !important;
        flex-wrap: wrap !important;
    }

    /* Author box mobile */
    body.single-post .iv-author-box {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }

    body.single-post .iv-author-avatar {
        margin-bottom: 15px !important;
    }
}


/* ============================================
   SINGLE POST DARK MODE OVERRIDES
   Moved from style.css
   ============================================ */
/* White content text on single articles */
.single .entry-content,
.single-post .entry-content,
.single .entry-content p,
.single-post .entry-content p,
.single .entry-content li,
.single-post .entry-content li,
.single .entry-content span,
.single-post .entry-content span,
.single .entry-content blockquote,
.single-post .entry-content blockquote {
    color: #fff !important;
}

/* Headings in single posts */
.single .entry-content h1,
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4,
.single .entry-content h5,
.single .entry-content h6,
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
    color: #fff !important;
}

/* Article title */
.single .entry-title,
.single-post .entry-title,
.single .entry-header h1,
.single-post .entry-header h1 {
    color: #fff !important;
}

/* Article meta (date, author, etc) */
.single .entry-meta,
.single-post .entry-meta,
.single .entry-meta span,
.single-post .entry-meta span,
.single .entry-meta a,
.single-post .entry-meta a,
.single .posted-on,
.single .byline,
.single .cat-links {
    color: var(--text-secondary) !important;
}

/* Links in single articles - NO UNDERLINES */
.single a,
.single-post a,
.single .entry-content a,
.single-post .entry-content a,
.single .entry-meta a,
.single-post .entry-meta a,
.single .cat-links a,
.single .tags-links a {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Links in single articles - accent blue */
.single .entry-content a,
.single-post .entry-content a {
    color: var(--accent-blue) !important;
}

.single .entry-content a:hover,
.single-post .entry-content a:hover {
    color: #6366f1 !important;
    text-decoration: none !important;
}

/* Comments section - Comprehensive Styling */
.single .comments-area,
.single-post .comments-area {
    color: #fff !important;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.single .comments-title,
.single-post .comments-title {
    color: #fff !important;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Individual comments */
.single .comment-body,
.single-post .comment-body {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.single .comment-content,
.single-post .comment-content,
.single .comment-content p,
.single-post .comment-content p {
    color: #fff !important;
}

/* Comment author info */
.single .comment-author,
.single-post .comment-author,
.single .comment-author .fn,
.single-post .comment-author .fn,
.single .comment-author a,
.single-post .comment-author a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
}

.single .comment-metadata,
.single-post .comment-metadata,
.single .comment-metadata a,
.single-post .comment-metadata a {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    text-decoration: none !important;
}

/* Comment avatar */
.single .comment-author .avatar,
.single-post .comment-author .avatar {
    border-radius: 50% !important;
    border: 2px solid var(--accent-blue) !important;
}

/* Reply link */
.single .reply,
.single-post .reply,
.single .comment-reply-link,
.single-post .comment-reply-link {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.single .comment-reply-link:hover,
.single-post .comment-reply-link:hover {
    color: #6366f1 !important;
}

/* Comment form */
.single .comment-respond,
.single-post .comment-respond {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 30px !important;
    margin-top: 30px;
}

.single .comment-reply-title,
.single-post .comment-reply-title {
    color: #fff !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Form labels */
.single .comment-form label,
.single-post .comment-form label {
    color: #fff !important;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Form inputs */
.single .comment-form input[type="text"],
.single .comment-form input[type="email"],
.single .comment-form input[type="url"],
.single .comment-form textarea,
.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"],
.single-post .comment-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 12px 15px !important;
    width: 100% !important;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus,
.single-post .comment-form input:focus,
.single-post .comment-form textarea:focus {
    border-color: var(--accent-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2) !important;
}

.single .comment-form textarea,
.single-post .comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit button */
.single .comment-form .submit,
.single-post .comment-form .submit,
.single .form-submit input[type="submit"],
.single-post .form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--accent-blue), #6366f1) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 30px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.single .comment-form .submit:hover,
.single-post .comment-form .submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(58, 134, 255, 0.4) !important;
}

/* Comment form notes */
.single .comment-notes,
.single-post .comment-notes,
.single .logged-in-as,
.single-post .logged-in-as {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.single .logged-in-as a,
.single-post .logged-in-as a {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
}

/* Required field indicator */
.single .required,
.single-post .required {
    color: #ef4444 !important;
}

/* Nested/Reply comments */
.single .children,
.single-post .children {
    margin-left: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
}

/* No comments message */
.single .no-comments,
.single-post .no-comments {
    color: var(--text-secondary) !important;
    font-style: italic;
}

/* Login notice for comments */
.single .iv-comment-login-notice,
.single-post .iv-comment-login-notice {
    background: rgba(58, 134, 255, 0.1) !important;
    border: 1px solid var(--accent-blue) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    color: #fff !important;
    text-align: center;
}

.single .iv-comment-login-notice a,
.single-post .iv-comment-login-notice a {
    color: var(--accent-blue) !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Post navigation */
.single .post-navigation,
.single-post .post-navigation,
.single .nav-links a,
.single-post .nav-links a {
    color: #fff !important;
    text-decoration: none !important;
}

/* Related posts */
.single .related-posts,
.single-post .related-posts {
    color: #fff !important;
}

/* Code blocks in articles */
.single .entry-content pre,
.single .entry-content code,
.single-post .entry-content pre,
.single-post .entry-content code {
    background-color: #1a1a2e !important;
    color: #e0e0e0 !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
}

/* Blockquotes */
.single .entry-content blockquote,
.single-post .entry-content blockquote {
    border-left: 4px solid var(--accent-blue) !important;
    background: rgba(58, 134, 255, 0.1) !important;
    padding: 15px 20px !important;
    margin: 20px 0 !important;
    border-radius: 0 6px 6px 0 !important;
}

/* Tables in articles */
.single .entry-content table,
.single-post .entry-content table {
    color: #fff !important;
    border-color: var(--border-color) !important;
}

.single .entry-content th,
.single .entry-content td,
.single-post .entry-content th,
.single-post .entry-content td {
    color: #fff !important;
    border-color: var(--border-color) !important;
}

/* Strong/Bold text */
.single .entry-content strong,
.single-post .entry-content strong,
.single .entry-content b,
.single-post .entry-content b {
    color: #fff !important;
}

/* Emphasis/Italic text */
.single .entry-content em,
.single-post .entry-content em,
.single .entry-content i,
.single-post .entry-content i {
    color: #fff !important;
}

/* ============================================
   GLOBAL LAYOUT STYLES (Migrated from style.css)
   ============================================ */
body.iv-global-layout .entry-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

body.iv-global-layout .entry-content a:hover {
    color: #ec4899;
}

/* Sidebar styling */
body.iv-global-layout .sidebar {
    background: #000;
}

body.iv-global-layout .sidebar .widget {
    background: rgba(58, 134, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

body.iv-global-layout .sidebar .widget-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #3A86FF, #6366f1, transparent) 1;
}

body.iv-global-layout .sidebar a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

body.iv-global-layout .sidebar a:hover {
    color: var(--accent-blue);
}

/* ============================================
   GLOBAL MOBILE & TEXT VISIBILITY (Migrated from style.css)
   ============================================ */
/* Global mobile responsive for layout */
@media (max-width: 768px) {

    body.iv-global-layout .page-header h1,
    body.iv-global-layout .entry-header .entry-title {
        font-size: 1.8rem;
    }

    body.iv-global-layout .inside-article {
        padding: 30px 15px;
    }

    body.iv-global-layout .sidebar .widget {
        padding: 20px;
    }

    body.iv-global-layout .pmpro_checkout input,
    body.iv-global-layout .pmpro_checkout select {
        padding: 10px 12px;
    }

    /* Global layout mobile */
    .iv-global-layout .entry-content {
        padding: 0 15px !important;
    }
}

/* Ensure all pages have dark background and visible text */
body {
    background-color: #000 !important;
}

/* All main content text should be visible on dark pages */
body .site-content,
body .site-content p,
body .site-content li,
body .site-content span,
body .entry-content,
body .entry-content p,
body .entry-content li,
.page .entry-content,
.page .entry-content p,
.single .entry-content p {
    color: #fff !important;
}

/* Headings visible on dark pages */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .entry-title,
body .page-title {
    color: #fff !important;
}