    .tag-posts {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }

    .tag-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f8f9fa;
    }

    .tag-header h1 {
        color: #495057;
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
    }

    .post-count {
        color: #6c757d;
        font-size: 1.1rem;
    }

    .posts-timeline {
        position: relative;
    }

    .posts-timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e9ecef;
    }

    .timeline-post {
        margin-bottom: 1.5rem;
        position: relative;
    }

    .timeline-post::before {
        content: '';
        position: absolute;
        left: 23px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #28a745;
        border: 2px solid white;
        box-shadow: 0 0 0 2px #28a745;
        z-index: 1;
    }

    .post-content {
        margin-left: 60px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 1rem 1.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .post-content:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .post-date {
        color: #6c757d;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        min-width: 100px;
    }

    .post-title {
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.4;
        flex: 1;
    }

    .post-title a {
        color: #495057;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .post-title a:hover {
        color: #007bff;
    }

    @media (max-width: 768px) {
        .tag-posts {
            padding: 1rem;
        }

        .posts-timeline::before {
            left: 20px;
        }

        .timeline-post::before {
            left: 13px;
        }

        .post-content {
            margin-left: 40px;
            padding: 0.8rem 1rem;
            gap: 1rem;
        }

        .tag-header h1 {
            font-size: 2rem;
        }

        .post-title {
            font-size: 1.1rem;
        }

        .post-date {
            font-size: 0.85rem;
            min-width: 80px;
        }
    }

    @media (max-width: 480px) {
        .post-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .post-date {
            min-width: auto;
        }
    }