/* Blog Post Styling */

/* Blog Hero Section */
.blog-hero {
    padding: 6rem 0 4rem;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-gray);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.blog-date {
    color: var(--light-gray);
    background: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--dark-gray);
}

.blog-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.blog-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--pale-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--torch-amber);
    margin-bottom: 2rem;
    font-weight: 600;
}

.blog-authors {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-family: var(--font-sans);
}

.author {
    color: var(--light-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.collaborator {
    color: var(--torch-amber);
    font-size: 1rem;
    font-style: italic;
}

.blog-quote {
    background: var(--charcoal);
    border-left: 4px solid var(--torch-amber);
    padding: 2rem;
    margin: 0;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--box-shadow);
}

.blog-quote p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--pale-gold);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-quote cite {
    color: var(--torch-amber);
    font-family: var(--font-sans);
    font-weight: 600;
    font-style: normal;
}

/* Blog Content */
.blog-content {
    padding: 4rem 0;
    background: var(--charcoal);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-section {
    margin-bottom: 4rem;
}

.blog-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--pale-gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Tables */
.watchlist-table,
.positions-table,
.allocation-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-gray);
}

.watchlist-table table,
.positions-table table,
.allocation-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.watchlist-table th,
.positions-table th,
.allocation-table th {
    background: var(--charcoal);
    color: var(--pale-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--torch-amber);
}

.watchlist-table td,
.positions-table td,
.allocation-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--dark-gray);
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
}

.watchlist-table tr:hover,
.positions-table tr:hover,
.allocation-table tr:hover {
    background: rgba(250, 199, 67, 0.05);
}

.watchlist-table td:first-child,
.positions-table td:first-child,
.allocation-table td:first-child {
    font-weight: 600;
    color: var(--torch-amber);
    font-family: var(--font-mono);
}

/* Section Summaries */
.section-summary {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--box-shadow);
}

.section-summary p {
    margin: 0.5rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
}

.section-summary strong {
    color: var(--torch-amber);
}

/* Review List */
.review-list {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.review-list li {
    margin: 1rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
}

.review-list strong {
    color: var(--torch-amber);
}

.review-list a {
    color: var(--torch-amber);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.review-list a:hover {
    color: var(--pale-gold);
    border-bottom-color: var(--pale-gold);
}

/* Closing Reflection */
.closing-reflection {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.closing-quote {
    margin: 0;
    border: none;
    background: none;
    padding: 0;
}

.closing-quote p {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--pale-gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.closing-quote cite {
    color: var(--torch-amber);
    font-family: var(--font-sans);
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-authors {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-quote {
        padding: 1.5rem;
    }
    
    .blog-quote p {
        font-size: 1.1rem;
    }
    
    .watchlist-table,
    .positions-table,
    .allocation-table {
        font-size: 0.85rem;
    }
    
    .watchlist-table th,
    .positions-table th,
    .allocation-table th,
    .watchlist-table td,
    .positions-table td,
    .allocation-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .section-summary {
        padding: 1rem;
    }
    
    .review-list {
        padding: 1.5rem;
    }
    
    .closing-reflection {
        padding: 2rem;
    }
    
    .closing-quote p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .watchlist-table,
    .positions-table,
    .allocation-table {
        font-size: 0.8rem;
    }
    
    .watchlist-table th,
    .positions-table th,
    .allocation-table th,
    .watchlist-table td,
    .positions-table td,
    .allocation-table td {
        padding: 0.6rem 0.4rem;
    }
}

/* Additional Blog Styles for Claude Review */
.challenge-box {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.challenge-box h3 {
    font-family: var(--font-serif);
    color: var(--pale-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.challenge-box ul {
    list-style: none;
    padding: 0;
}

.challenge-box li {
    margin: 0.8rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.challenge-box strong {
    color: var(--torch-amber);
}

.allocation-breakdown {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.allocation-breakdown h3 {
    font-family: var(--font-serif);
    color: var(--pale-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--torch-amber);
    padding-bottom: 0.5rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-item {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid var(--dark-gray);
    align-items: center;
}

.position-item .symbol {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--torch-amber);
    font-size: 1rem;
}

.position-item .amount {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--pale-gold);
    font-size: 1rem;
}

.position-item .rationale {
    font-family: var(--font-sans);
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.analysis-card {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.analysis-card h3 {
    font-family: var(--font-serif);
    color: var(--pale-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.analysis-card ul {
    list-style: none;
    padding: 0;
}

.analysis-card li {
    margin: 0.8rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.analysis-card strong {
    color: var(--torch-amber);
}

.ryan-suggestions {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.ryan-suggestions h3 {
    font-family: var(--font-serif);
    color: var(--pale-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.ryan-suggestions ul {
    list-style: none;
    padding: 0;
}

.ryan-suggestions li {
    margin: 0.8rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.ryan-suggestions strong {
    color: var(--torch-amber);
}

.verdict-box {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fire-rating {
    font-size: 2rem;
}

.rating-text {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--torch-amber);
    font-size: 1.2rem;
}

.verdict-box p {
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 1rem 0;
}

.verdict-box strong {
    color: var(--pale-gold);
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.takeaway-item {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.takeaway-item h4 {
    font-family: var(--font-serif);
    color: var(--pale-gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.takeaway-item p {
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Additional styles for 50K Portfolio Finetuned Review */
.gap-analysis-table,
.allocation-table-final,
.tripwire-table,
.rhythm-table,
.rating-breakdown-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-gray);
}

.gap-analysis-table table,
.allocation-table-final table,
.tripwire-table table,
.rhythm-table table,
.rating-breakdown-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.gap-analysis-table th,
.allocation-table-final th,
.tripwire-table th,
.rhythm-table th,
.rating-breakdown-table th {
    background: var(--charcoal);
    color: var(--pale-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--torch-amber);
}

.gap-analysis-table td,
.allocation-table-final td,
.tripwire-table td,
.rhythm-table td,
.rating-breakdown-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--dark-gray);
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gap-analysis-table tr:hover,
.allocation-table-final tr:hover,
.tripwire-table tr:hover,
.rhythm-table tr:hover,
.rating-breakdown-table tr:hover {
    background: rgba(250, 199, 67, 0.05);
}

.total-row {
    background: var(--charcoal) !important;
    font-weight: 600;
}

.total-row td {
    color: var(--torch-amber);
    border-top: 2px solid var(--torch-amber);
}

.final-rating {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.final-rating h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--pale-gold);
    margin: 0;
}

.prometheus-commentary {
    background: var(--charcoal);
    border-left: 4px solid var(--torch-amber);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--box-shadow);
}

.prometheus-commentary p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--pale-gold);
    margin: 0;
    line-height: 1.6;
}

.action-plan {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.action-plan ol {
    margin: 0;
    padding-left: 1.5rem;
}

.action-plan li {
    margin: 1rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.action-plan strong {
    color: var(--torch-amber);
}

.action-plan a {
    color: var(--torch-amber);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.action-plan a:hover {
    color: var(--pale-gold);
    border-bottom-color: var(--pale-gold);
}

.resources-list {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

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

.resources-list li {
    margin: 1rem 0;
}

.resources-list a {
    color: var(--torch-amber);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.resources-list a:hover {
    color: var(--pale-gold);
    border-bottom-color: var(--pale-gold);
}

/* Tooltip styles matching plan.html implementation */
.tooltip-icon {
    display: inline-block;
    position: relative;
    cursor: help;
    font-weight: 700;
    font-size: 0.9em;
    color: #FAC743;
    margin-left: 4px;
    line-height: 1;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Soft amber glow on hover */
.tooltip-icon:hover,
.tooltip-icon:focus {
    color: #FBE9A1;
    text-shadow: 0 0 8px rgba(250, 199, 67, 0.8);
}

/* Tooltip bubble */
.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #FBE9A1;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.2;
    white-space: normal;
    min-width: 180px;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

/* Tooltip arrow */
.tooltip-icon::before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

/* Show on hover or focus */
.tooltip-icon:hover::after,
.tooltip-icon:focus::after,
.tooltip-icon:hover::before,
.tooltip-icon:focus::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

/* Mobile tooltip adjustments */
@media (max-width: 768px) {
    .tooltip-icon::after {
        min-width: 160px;
        max-width: 200px;
        font-size: 0.75rem;
    }
}

/* Additional styles for Tripwire System Review */
.tripwire-table,
.implementation-table,
.rhythm-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-gray);
}

.tripwire-table table,
.implementation-table table,
.rhythm-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.tripwire-table th,
.implementation-table th,
.rhythm-table th,
.tripwire-table td,
.implementation-table td,
.rhythm-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-gray);
}

.tripwire-table th,
.implementation-table th,
.rhythm-table th {
    background: var(--charcoal);
    color: var(--torch-amber);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tripwire-table td,
.implementation-table td,
.rhythm-table td {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tripwire-table tr:hover,
.implementation-table tr:hover,
.rhythm-table tr:hover {
    background: rgba(250, 199, 67, 0.05);
}

.logic-flow {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 2px solid var(--torch-amber);
}

.flow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.flow-card {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    position: relative;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(250, 199, 67, 0.2);
}

.flow-card .step-number {
    background: var(--torch-amber);
    color: var(--charcoal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(250, 199, 67, 0.3);
}

.flow-card .step-content h4 {
    color: var(--pale-gold);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.flow-card .step-content p {
    color: var(--light-gray);
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.flow-card .ai-recommender-button {
    margin-top: 1rem;
}

.flow-card .ai-recommender-button .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.flow-card .ai-recommender-button .btn-icon {
    font-size: 1rem;
}

.flow-card .ai-recommender-button .btn-text {
    font-weight: 600;
}

.prometheus-tip {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.prometheus-tip p {
    margin: 0.5rem 0;
    color: var(--light-gray);
}

.prometheus-tip em {
    color: var(--pale-gold);
    font-style: italic;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.principle-item {
    background: var(--dark-bg);
    border-left: 4px solid var(--torch-amber);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.principle-item p {
    margin: 0;
    color: var(--light-gray);
    font-style: italic;
    font-size: 1.1rem;
}

/* Fullscreen Checklist Section */
.checklist-section {
    padding: 0;
}

.checklist-fullscreen {
    background: var(--charcoal);
    padding: 3rem 0;
    margin: 2rem 0;
    border-top: 2px solid var(--torch-amber);
    border-bottom: 2px solid var(--torch-amber);
}

.checklist-fullscreen .checklist {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.checklist-fullscreen .checklist-item {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    margin-bottom: 1rem;
    padding: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.checklist-fullscreen .checklist-item:last-child {
    margin-bottom: 0;
}

.checklist-fullscreen .check-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.checklist-fullscreen .check-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid var(--dark-gray);
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: rgba(250, 199, 67, 0.05);
    border-color: var(--torch-amber);
    transform: translateY(-2px);
}

.check-icon {
    color: var(--torch-amber);
    font-size: 1.2rem;
    font-weight: bold;
}

.check-text {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Mobile responsive adjustments for tripwire review */
@media (max-width: 768px) {
    .tripwire-table,
    .implementation-table,
    .rhythm-table {
        font-size: 0.8rem;
    }
    
    .tripwire-table th,
    .implementation-table th,
    .rhythm-table th,
    .tripwire-table td,
    .implementation-table td,
    .rhythm-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .logic-flow {
        padding: 1rem;
    }
    
    .flow-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flow-card {
        padding: 1.5rem;
    }
    
    .flow-card .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .flow-card .step-content h4 {
        font-size: 1.1rem;
    }
    
    .flow-card .step-content p {
        font-size: 0.9rem;
    }
    
    .principle-item p {
        font-size: 1rem;
    }
    
    .checklist-fullscreen {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }
    
    .checklist-fullscreen .checklist-item {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .checklist-fullscreen .check-icon {
        font-size: 1.3rem;
        margin-right: 0.75rem;
    }
    
    .checklist-fullscreen .check-text {
        font-size: 1rem;
    }
    
    .checklist {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .checklist-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .check-icon {
        font-size: 1.5rem;
    }
    
    .check-text {
        font-size: 0.9rem;
    }
}

.blog-hero-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/2;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--torch-amber);
    object-fit: cover;
}

/* Additional styles for Stock Triggers Review */
.rule-value-table,
.framework-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-gray);
}

.rule-value-table table,
.framework-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.rule-value-table th,
.framework-table th,
.rule-value-table td,
.framework-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-gray);
}

.rule-value-table th,
.framework-table th {
    background: var(--charcoal);
    color: var(--torch-amber);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rule-value-table td,
.framework-table td {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.rule-value-table tr:hover,
.framework-table tr:hover {
    background: rgba(250, 199, 67, 0.05);
}

.star-rating {
    color: var(--torch-amber);
    font-size: 1.2rem;
    font-weight: bold;
}

.philosophy-quote {
    background: var(--dark-bg);
    border: 2px solid var(--torch-amber);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.philosophy-quote blockquote {
    margin: 0;
}

.philosophy-quote p {
    color: var(--pale-gold);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.philosophy-quote cite {
    color: var(--torch-amber);
    font-size: 1rem;
    font-weight: 600;
}

.philosophy-explanation {
    margin: 2rem 0;
}

.philosophy-explanation p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.philosophy-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 8px;
    border-left: 4px solid var(--torch-amber);
}

.point-icon {
    font-size: 1.5rem;
    color: var(--torch-amber);
    flex-shrink: 0;
}

.point-content h4 {
    color: var(--pale-gold);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 8px;
    border: 2px solid var(--torch-amber);
    transition: var(--transition-smooth);
}

.takeaway-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 199, 67, 0.15);
}

.takeaway-number {
    background: var(--torch-amber);
    color: var(--charcoal);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.takeaway-content h4 {
    color: var(--pale-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.takeaway-content p {
    color: var(--light-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile responsive adjustments for stock triggers review */
@media (max-width: 768px) {
    .rule-value-table,
    .framework-table {
        font-size: 0.8rem;
    }
    
    .rule-value-table th,
    .framework-table th,
    .rule-value-table td,
    .framework-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .philosophy-quote {
        padding: 1.5rem;
    }
    
    .philosophy-quote p {
        font-size: 1.1rem;
    }
    
    .philosophy-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .takeaways-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .takeaway-item {
        padding: 1rem;
    }
    
    .takeaway-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Additional styles for Trade Timing Framework Review */
.intent-table,
.days-table,
.time-table,
.order-types-table,
.buying-plan-table,
.reflection-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-gray);
}

.intent-table table,
.days-table table,
.time-table table,
.order-types-table table,
.buying-plan-table table,
.reflection-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.intent-table th,
.days-table th,
.time-table th,
.order-types-table th,
.buying-plan-table th,
.reflection-table th {
    background: var(--charcoal);
    color: var(--pale-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--torch-amber);
}

.intent-table td,
.days-table td,
.time-table td,
.order-types-table td,
.buying-plan-table td,
.reflection-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--dark-gray);
    color: var(--light-gray);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
}

.intent-table tr:hover,
.days-table tr:hover,
.time-table tr:hover,
.order-types-table tr:hover,
.buying-plan-table tr:hover,
.reflection-table tr:hover {
    background: rgba(250, 199, 67, 0.05);
}

.best-days,
.best-time {
    background: rgba(34, 197, 94, 0.1) !important;
}

.best-days td,
.best-time td {
    color: var(--pale-gold);
    font-weight: 600;
}

.reserve-row {
    background: var(--charcoal) !important;
    font-weight: 600;
}

.reserve-row td {
    color: var(--torch-amber);
    border-top: 2px solid var(--torch-amber);
}

.prometheus-principle,
.best-window,
.example-box,
.prometheus-tip {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

.prometheus-principle p,
.best-window p,
.example-box p,
.prometheus-tip p {
    margin: 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.prometheus-principle strong,
.best-window strong,
.example-box strong,
.prometheus-tip strong {
    color: var(--torch-amber);
}

.checklist {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--torch-amber);
    box-shadow: var(--box-shadow);
}

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

.checklist li {
    margin: 1rem 0;
    color: var(--light-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 1.1rem;
}

.checklist a {
    color: var(--torch-amber);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.checklist a:hover {
    color: var(--pale-gold);
    border-bottom-color: var(--pale-gold);
}

/* Responsive adjustments for timing framework tables */
@media (max-width: 768px) {
    .intent-table,
    .days-table,
    .time-table,
    .order-types-table,
    .buying-plan-table,
    .reflection-table {
        font-size: 0.85rem;
    }
    
    .intent-table th,
    .days-table th,
    .time-table th,
    .order-types-table th,
    .buying-plan-table th,
    .reflection-table th,
    .intent-table td,
    .days-table td,
    .time-table td,
    .order-types-table td,
    .buying-plan-table td,
    .reflection-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .prometheus-principle,
    .best-window,
    .example-box,
    .prometheus-tip {
        padding: 1rem;
    }
    
    .checklist {
        padding: 1.5rem;
    }
    
    .checklist li {
        font-size: 1rem;
    }
}
