﻿/* ── TIMELINE ── */
.jrytimeline-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .jrytimeline-heading::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #d5ccc0;
    }

.jrytimeline {
    position: relative;
    padding-left: 2.25rem;
}

    .jrytimeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 8px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #c0392b 0%, #e0c8b0 85%, transparent 100%);
    }

.jrytimeline-item {
    position: relative;
    margin-bottom: 1.75rem;
}

    .jrytimeline-item:last-child {
        margin-bottom: 0;
    }

.jrytimeline-dot {
    position: absolute;
    left: -2.25rem;
    top: 0.35rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #c0392b;
    z-index: 1;
}

    .jrytimeline-dot.milestone {
        background: #c0392b;
        border-color: #8b2318;
        box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
    }

    .jrytimeline-dot.waiting {
        background: #f39c12;
        border-color: #d68910;
        box-shadow: 0 0 0 3px rgba(243,156,18,0.15);
    }

    .jrytimeline-dot.stalled {
        background: #7f8c8d;
        border-color: #636e72;
        box-shadow: 0 0 0 3px rgba(127,140,141,0.15);
    }

.jrytimeline-meta {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.jrytimeline-date {
    font-weight: 700;
    font-size: 0.9rem;
    color: #c0392b;
    letter-spacing: 0.03em;
}

.jrytimeline-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
}

.tag-action {
    background: #d5f5e3;
    color: #1e8449;
}

.tag-progress {
    background: #d6eaf8;
    color: #1a5276;
}

.tag-approval {
    background: #fdebd0;
    color: #9a5c00;
}

.tag-setback {
    background: #fadbd8;
    color: #922b21;
}

.tag-waiting {
    background: #fef9e7;
    color: #7d6608;
    border: 1px solid #f9e79f;
}

.tag-stalled {
    background: #f2f3f4;
    color: #5d6d7e;
    border: 1px solid #d5d8dc;
}

.jrytimeline-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.jrytimeline-content p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #4a4540;
}

.jrytimeline-content .frustration-note {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.875rem;
    color: #922b21;
    padding-left: 0.85rem;
    border-left: 3px solid #e74c3c;
}

/* ── STALLED CALLOUT ── */
.stalled-callout {
    background: #1a1a1a;
    color: #f9f6f1;
    border-radius: 4px;
    padding: 2rem 2.25rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #f39c12;
}

    .stalled-callout::before {
        content: '⏳';
        font-size: 5rem;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.07;
        line-height: 1;
    }

    .stalled-callout h4 {
        font-size: 1.3rem;
        font-weight: 900;
        color: #f39c12;
        margin-bottom: 0.75rem;
        letter-spacing: 0.02em;
    }

    .stalled-callout p {
        font-size: 0.98rem;
        line-height: 1.8;
        color: #d5ccc0;
        /* max-width: 580px;*/
    }

    .stalled-callout .days-counter {
        /**/ display: inline-block;
        background: #c0392b;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 900;
        padding: 0.3rem 0.8rem;
        border-radius: 3px;
        margin: 0.75rem 0 0.5rem;
        letter-spacing: 0.03em;
    }

    .stalled-callout .cta-link {
        display: inline-block;
        margin-top: 1.25rem;
        background: #f39c12;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.6rem 1.4rem;
        border-radius: 3px;
        text-decoration: none;
        letter-spacing: 0.03em;
        transition: background 0.2s;
    }

        .stalled-callout .cta-link:hover {
            background: #d68910;
        }

/* ── STAT STRIP ── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #d5ccc0;
    border: 1px solid #d5ccc0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
@media (max-width: 995px) {
    .stat-strip {
        grid-template-columns: 1fr!important;
    }
}
.stat-cell {
    background: #fff;
    padding: 1.1rem 1.25rem;
    text-align: center;
}

    .stat-cell .stat-value {
        font-size: 1.7rem;
        font-weight: 900;
        color: #c0392b;
        display: block;
        line-height: 1.1;
    }

    .stat-cell .stat-label {
        font-size: 0.82rem;
        color: #c0392b; /*#7a6f63;*/
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-top: 0.25rem;
        display: block;
    }

/* ── NEWS LINK ── */
.news-reference {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0f4ff;
    border: 1px solid #c5d3f0;
    border-radius: 4px;
    padding: 0.85rem 1.1rem;
    margin-top: 0.6rem;
    text-decoration: none;
    transition: background 0.15s;
}

    .news-reference:hover {
        background: #e3eaff;
    }

    .news-reference .news-icon {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .news-reference .news-text {
        font-size: 0.875rem;
        color: #1a5276;
        line-height: 1.4;
    }

        .news-reference .news-text strong {
            display: block;
            font-weight: 600;
        }
