/*
Theme Name: Theme 4 - Typewriter Style
Theme URI: https://vs3.net
Author: Pau Inocencio
Author URI: https://vs3.net
Description: A minimal WordPress theme with typewriter-style typography-focused design with maximum simplicity.
Tags: blog, minimal, clean, simple, responsive, typewriter
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tripeak-test-four
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Roboto+Mono:wght@400&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #4B4B4B;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
    color: #353535;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 30px;
    margin-top: 2rem;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5, h6 {
    font-size: 18px;
}

p {
    margin-bottom: 1rem;
}

/* Links - Scoped to content areas only */
#page .entry-content a:not(.wp-block-button__link):not([class*="button"]),
#page .post-content a:not(.wp-block-button__link):not([class*="button"]),
#page .comment-content a:not(.wp-block-button__link):not([class*="button"]),
#page .widget a:not(.wp-block-button__link):not([class*="button"]),
#page .archive-description a,
#page .posts-container a:not(.tripeak-category-btn) {
    color: #353535;
    text-decoration: underline;
    text-decoration-color: #F2E39B;
    font-weight: 400;
}

#page .entry-content a:not(.wp-block-button__link):not([class*="button"]):hover,
#page .post-content a:not(.wp-block-button__link):not([class*="button"]):hover,
#page .comment-content a:not(.wp-block-button__link):not([class*="button"]):hover,
#page .widget a:not(.wp-block-button__link):not([class*="button"]):hover,
#page .archive-description a:hover,
#page .posts-container a:not(.tripeak-category-btn):hover {
    text-decoration: underline;
    text-decoration-color: #353535;
}

/* Site title links - no underline */
#page .site-branding a,
#page .site-title a,
#page .site-title-heading a,
#page footer .site-title a,
#page .site-header a {
    text-decoration: none !important;
}

/* Ensure button links are white */
#page .wp-block-button__link,
#page a[class*="button"] {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Category buttons */
#page .tripeak-category-btn:not(.active) {
    text-decoration: none !important;
}

#page .tripeak-category-btn.active {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Links within headings should inherit heading font weight */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #F2E39B;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    text-decoration: underline;
    text-decoration-color: #353535;
}

/* Header Styles */
.site-header {
    margin-bottom: 40px;
}

.site-branding {
    text-align: left;
}

/* Site Logo */
.site-logo {
    margin-bottom: 15px;
}

.site-logo .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo .custom-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.site-title,
.site-title-heading {
    font-size: 30px;
    margin: 0 0 8px 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #353535;
}

.site-title a,
.site-title-heading a {
    color: #353535;
    font-weight: inherit;
    text-decoration: none;
}

.site-title a:hover,
.site-title-heading a:hover {
    text-decoration: underline;
    text-decoration-color: #F2E39B;
}

.site-description {
    font-size: 15px;
    color: #4B4B4B;
    margin: 0;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Main Content */
.site-main {
    margin-bottom: 3rem;
}

/* ==========================================================================
   Archive Header (Category/Tag/Author Pages - Below Buttons)
   ========================================================================== */

.archive-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.archive-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #353535;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.archive-header .archive-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #353535;
    max-width: 100%;
}

.archive-header .archive-description p {
    margin-bottom: 1rem;
}

.archive-header .archive-description p:last-child {
    margin-bottom: 0;
}
/* Bottom category description (after pagination) */
.archive-description-bottom {
    margin-top: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 100%;
}

.archive-description-bottom p {
    margin-bottom: 1.75rem;
}

.archive-description-bottom p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .archive-description-bottom {
        font-size: 1rem;
        line-height: 1.7;
        padding-top: 2rem;
    }
}


/* Mobile adjustments for archive header */
@media (max-width: 768px) {
    .archive-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .archive-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .archive-header .archive-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
   Category Filter Buttons
   ========================================================================== */

.tripeak-category-filter {
    margin-bottom: 2rem;
    margin-top: 0;
}

.tripeak-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.tripeak-category-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    color: #353535;
    background-color: transparent;
    border: 1px solid #353535;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: capitalize;
    font-family: 'Roboto Mono', 'Courier', monospace;
}

.tripeak-category-btn:hover {
    background-color: #F2E39B;
    border-color: #353535;
    color: #353535;
    text-decoration: none;
}

.tripeak-category-btn.active {
    background-color: #353535;
    border-color: #353535;
    color: #F2E39B;
}

.tripeak-category-btn.active:hover {
    background-color: #353535;
    border-color: #353535;
    color: #F2E39B;
}

/* Posts Listing */
.posts-container h2 {
    font-size: 30px;
    margin-bottom: 35px;
}

.post-list {
    list-style: none;
    padding-left: 0;
}

.post-item {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.post-item::before {
    content: "•";
    color: #353535;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.post-item a {
    background-color: transparent;
    color: #353535;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.post-item a:hover {
    background-color: #F2E39B;
    text-decoration: none;
}

.post-meta {
    display: none;
}

/* Single Post Styles */
.single-post .entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 30px;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.entry-content {
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1.2rem;
}

.entry-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.3rem;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid #F2E39B !important;
    color: #666;
    font-style: italic;
}

/* ==========================================================================
   Easy Table of Contents (EZ-TOC)
   ========================================================================== */
#ez-toc-container {
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 2px solid #F2E39B;
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    box-shadow: none;
}

#ez-toc-container .ez-toc-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

#ez-toc-container .ez-toc-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #353535;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#ez-toc-container nav {
    margin-top: 0;
}

#ez-toc-container ul,
#ez-toc-container ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ez-toc-container li {
    margin-bottom: 0.25rem;
}

#ez-toc-container li:last-child {
    margin-bottom: 0;
}

#ez-toc-container a {
    display: block;
    padding: 0.2rem 0;
    color: #353535;
    text-decoration: underline;
    text-decoration-color: #F2E39B;
    text-underline-offset: 2px;
    font-family: 'Roboto Mono', 'Courier', monospace;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

#ez-toc-container a:hover {
    color: #353535;
    background-color: rgba(242, 227, 155, 0.2);
}

#ez-toc-container ul li {
    font-weight: 500;
}

#ez-toc-container ul ul {
    margin-top: 0.15rem;
    margin-left: 1.25rem;
}

#ez-toc-container ul ul li {
    font-weight: 400;
    font-size: 13px;
}

/* Toggle button (JS mode) */
#ez-toc-container .ez-toc-toggle {
    background: transparent;
    border: 1px solid #353535;
    color: #353535;
    padding: 4px 12px;
    border-radius: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#ez-toc-container .ez-toc-toggle:hover {
    background: #F2E39B;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 15px;
    color: #4B4B4B;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    text-align: left;
}


/* Footer Navigation as Rows */
.footer-navigation {
    margin: 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-menu li:not(:last-child)::after {
    content: " | ";
    color: #4B4B4B;
    margin: 0 8px;
    font-weight: 400;
}

.footer-menu a {
    color: #353535;
    text-decoration: underline;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #4B4B4B;
    text-decoration: underline;
}

/* Recent Articles and Best Posts Sections */
.recent-articles {
    margin: 40px 0 40px 0;
}

.best-posts {
    margin-bottom: 40px;
}

.recent-articles h3,
.best-posts h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.recent-posts,
.best-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-posts li,
.best-posts-list li {
    margin: 0 0 10px 0;
    padding: 0;
}

.recent-posts a,
.best-posts-list a {
    color: #666;
    text-decoration: underline;
    text-decoration-color: #F2E39B;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.recent-posts a:hover,
.best-posts-list a:hover {
    color: #333;
    text-decoration-color: #E6D47A;
}

/* Social Links Section - Updated to remove underlines and improve spacing */
.social-links {
    margin-bottom: 40px;
}

/* Add underlines to social links */
.site-footer .social-links-container .social-link,
.site-footer .social-links-container .social-link span,
.site-footer .social-links-container .social-link:hover,
.site-footer .social-links-container .social-link:hover span {
    text-decoration: underline !important;
}

.social-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.site-footer .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline !important;
    color: #666 !important;
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-right: 40px;
}

.site-footer .social-link:hover {
    color: #333 !important;
    text-decoration: none !important;
}

.site-footer .social-link:last-child {
    margin-right: 0;
}

.site-footer .social-link span {
    text-decoration: none !important;
}

.site-footer .social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-footer .social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(40%);
    flex-shrink: 0;
}

.site-footer .social-link:hover img {
    filter: brightness(0) saturate(100%) invert(20%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
        justify-content: flex-start;
    }
    
    .footer-menu li:not(:last-child)::after {
        content: " | ";
        color: #4B4B4B;
        margin: 0 8px;
        font-weight: 400;
    }
    
    .social-links-container {
        gap: 0 25px;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .site-footer .social-link {
        font-size: 15px;
        margin-right: 25px;
    }
    
    .site-footer .social-link:last-child {
        margin-right: 0;
    }
    
    .site-footer .social-link svg,
    .site-footer .social-link img {
        width: 18px;
        height: 18px;
    }
}

/* Legacy Footer Navigation Styles (for backward compatibility) */
.footer-navigation {
    margin: 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-menu li:not(:last-child)::after {
    content: " | ";
    color: #4B4B4B;
    margin: 0 8px;
    font-weight: 400;
}

.footer-menu a {
    color: #353535;
    text-decoration: underline;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #4B4B4B;
    text-decoration: underline;
}

/* Main Navigation (match footer nav) */
.main-navigation {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.primary-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.primary-menu li:not(:last-child)::after {
    content: " | ";
    color: #4B4B4B;
    margin: 0 8px;
    font-weight: 400;
}

.primary-menu a {
    color: #353535;
    text-decoration: none;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.primary-menu a:hover {
    color: #353535;
    text-decoration: underline;
    background-color: transparent;
}

/* Navigation */
.post-navigation {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

.nav-next {
    text-align: right;
}

/* Pagination */
.pagination {
    margin: 3rem 0;
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    color: #353535;
    text-decoration: none;
}

.page-numbers:hover,
.page-numbers.current {
    text-decoration: underline;
}

/* Search Form */
.search-form {
    margin: 2rem 0;
}

.search-field {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
}

.search-submit {
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #353535;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    cursor: pointer;
}

.search-submit:hover {
    background: #4B4B4B;
}

/* 404 Page */
.error-404 {
    text-align: center;
    margin: 3rem 0;
}

.error-404 h1 {
    font-size: 30px;
    margin-bottom: 35px;
}

/* Archive Pages */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 30px;
    margin-bottom: 35px;
}

.archive-description {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    /* Category buttons mobile adjustments */
    .tripeak-category-filter {
        margin-bottom: 1.5rem;
    }
    
    .tripeak-category-buttons {
        gap: 8px;
    }
    
    .tripeak-category-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .site-logo .custom-logo {
        width: 50px;
        height: 50px;
    }
    
    .site-logo {
        margin-bottom: 12px;
    }
    
    .site-title,
    .site-title-heading {
        font-size: 24px;
    }
    
    .site-description {
        font-size: 14px;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
}

/* WordPress Latest Posts Block Styling */
.wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: none;
    padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li::before {
    content: "•";
    color: #353535;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
    background-color: #F2E39B;
    color: #353535;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a:hover {
    background-color: #F7DC6F;
    text-decoration: none;
}

/* WordPress Core Styles */
.aligncenter {
    text-align: center;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
}

.primary-menu a {
    color: #353535;
    text-decoration: none;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

.footer-menu a {
    color: #353535;
    text-decoration: none;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s ease, background-color 0.2s ease, text-decoration-color 0.2s ease;
    border-radius: 4px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    background-color: transparent;
    text-decoration: underline;
    text-decoration-color: #F2E39B;
    transition: none;
}

.footer-menu a:hover,
.footer-menu .current-menu-item > a,
.footer-menu .current_page_item > a {
    background-color: #F2E39B;
    color: #353535;
    text-decoration: none;
}

.nav-previous a,
.nav-next a {
    background-color: #F2E39B;
    color: #353535;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Roboto Mono', 'Courier', 'Helvetica', sans-serif;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.nav-previous a:hover,
.nav-next a:hover {
    background-color: #F7DC6F;
    color: #353535;
    text-decoration: none;
}


.wp-block-image figcaption {
    font-style: italic;
    text-align: left;
}

.wp-block-quote {
    border-left: 2px solid #F2E39B;
} 

/* WordPress Block Button Styles */
.wp-block-buttons .wp-block-button__link {
    font-size: 15px;
    margin-bottom: 15px;
    background-color: #F2E39B;
    color: #353535;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #F2E39B;
    transition: all 0.2s ease;
    display: inline-block;
}

.wp-block-buttons .wp-block-button__link:hover {
    background-color: #353535;
    color: #F2E39B;
    border-color: #353535;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 

/* Inline Code Styling */
code {
    background-color: #f8f9fa;
    color: #e83e8c;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Roboto Mono', 'Courier', monospace;
    font-size: 14px;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

/* Code Block Styling */
pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    margin: 20px 0;
}

pre code {
    background-color: transparent;
    color: #333;
    padding: 0;
    border: none;
    font-size: 14px;
    line-height: 1.5;
} 

/* Caption Alignment */
.wp-caption-text,
.wp-block-image figcaption,
.wp-block-embed figcaption,
figcaption,
.caption,
.wp-caption {
    text-align: left !important;
    font-style: italic !important;
} 
/* ========================================
   Breadcrumb Navigation Styles
   ======================================== */

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 4px 0;
}

.breadcrumb-link:hover {
    color: #353535;
    text-decoration: none;
}

.breadcrumb-link-current {
    color: #353535;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #d1d5db;
    font-weight: 400;
    user-select: none;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 16px;
        font-size: 0.85rem;
    }

    .breadcrumb-link {
        font-size: 0.85rem;
    }

    .breadcrumb-separator {
        font-size: 0.8rem;
    }
}
