/* --- Activity Stream List Style --- */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 94, 0, 0.1);
    border-color: rgba(194, 94, 0, 0.2);
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-item:hover::before {
    opacity: 1;
}

.activity-date-badge {
    text-align: center;
    min-width: 80px;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    margin-right: 20px;
}

.activity-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.activity-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.activity-content {
    flex-grow: 1;
}

.activity-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.activity-item:hover .activity-title {
    color: var(--primary-color);
}

.activity-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.activity-item:hover .activity-arrow {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 15px;
    }

    .activity-date-badge {
        display: flex;
        align-items: baseline;
        gap: 8px;
        border-right: none;
        margin-bottom: 10px;
        padding-right: 0;
    }

    .activity-day {
        font-size: 1.2rem;
    }

    .activity-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
        margin: 0;
    }
}